File: /home/vmasmheia229/backups/mysql/db148287_1clk_wordpress_y1nEcTWOyPWnFxKT.sql
-- MySQL dump 10.13 Distrib 5.6.32-78.1, for debian-linux-gnu (x86_64)
--
-- Host: localhost Database: db148287_1clk_wordpress_y1nEcTWOyPWnFxKT
-- ------------------------------------------------------
-- Server version 5.6.32-78.1
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8 */;
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
/*!40103 SET TIME_ZONE='+00:00' */;
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
--
-- Current Database: `db148287_1clk_wordpress_y1nEcTWOyPWnFxKT`
--
CREATE DATABASE /*!32312 IF NOT EXISTS*/ `db148287_1clk_wordpress_y1nEcTWOyPWnFxKT` /*!40100 DEFAULT CHARACTER SET latin1 */;
USE `db148287_1clk_wordpress_y1nEcTWOyPWnFxKT`;
--
-- Table structure for table `smrc_actionscheduler_actions`
--
DROP TABLE IF EXISTS `smrc_actionscheduler_actions`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `smrc_actionscheduler_actions` (
`action_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`hook` varchar(191) COLLATE utf8mb4_unicode_520_ci NOT NULL,
`status` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL,
`scheduled_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`scheduled_date_local` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`args` varchar(191) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
`schedule` longtext COLLATE utf8mb4_unicode_520_ci,
`group_id` bigint(20) unsigned NOT NULL DEFAULT '0',
`attempts` int(11) NOT NULL DEFAULT '0',
`last_attempt_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`last_attempt_local` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`claim_id` bigint(20) unsigned NOT NULL DEFAULT '0',
`extended_args` varchar(8000) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
PRIMARY KEY (`action_id`),
KEY `hook` (`hook`),
KEY `status` (`status`),
KEY `scheduled_date_gmt` (`scheduled_date_gmt`),
KEY `args` (`args`),
KEY `group_id` (`group_id`),
KEY `last_attempt_gmt` (`last_attempt_gmt`),
KEY `claim_id` (`claim_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `smrc_actionscheduler_actions`
--
--
-- Table structure for table `smrc_actionscheduler_claims`
--
DROP TABLE IF EXISTS `smrc_actionscheduler_claims`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `smrc_actionscheduler_claims` (
`claim_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`date_created_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
PRIMARY KEY (`claim_id`),
KEY `date_created_gmt` (`date_created_gmt`)
) ENGINE=InnoDB AUTO_INCREMENT=3041 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `smrc_actionscheduler_claims`
--
--
-- Table structure for table `smrc_actionscheduler_groups`
--
DROP TABLE IF EXISTS `smrc_actionscheduler_groups`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `smrc_actionscheduler_groups` (
`group_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`slug` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL,
PRIMARY KEY (`group_id`),
KEY `slug` (`slug`(191))
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `smrc_actionscheduler_groups`
--
INSERT INTO `smrc_actionscheduler_groups` VALUES (1,'action-scheduler-migration');
--
-- Table structure for table `smrc_actionscheduler_logs`
--
DROP TABLE IF EXISTS `smrc_actionscheduler_logs`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `smrc_actionscheduler_logs` (
`log_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`action_id` bigint(20) unsigned NOT NULL,
`message` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
`log_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`log_date_local` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
PRIMARY KEY (`log_id`),
KEY `action_id` (`action_id`),
KEY `log_date_gmt` (`log_date_gmt`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `smrc_actionscheduler_logs`
--
--
-- Table structure for table `smrc_commentmeta`
--
DROP TABLE IF EXISTS `smrc_commentmeta`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `smrc_commentmeta` (
`meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`comment_id` bigint(20) unsigned NOT NULL DEFAULT '0',
`meta_key` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
`meta_value` longtext COLLATE utf8mb4_unicode_520_ci,
PRIMARY KEY (`meta_id`),
KEY `comment_id` (`comment_id`),
KEY `meta_key` (`meta_key`(191))
) ENGINE=InnoDB AUTO_INCREMENT=196 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `smrc_commentmeta`
--
INSERT INTO `smrc_commentmeta` VALUES (1,5,'akismet_error','1370610085');
INSERT INTO `smrc_commentmeta` VALUES (2,5,'akismet_history','a:4:{s:4:\"time\";d:1370610085.324597;s:7:\"message\";s:92:\"Akismet was unable to check this comment (response: ), will automatically retry again later.\";s:5:\"event\";s:11:\"check-error\";s:4:\"user\";s:0:\"\";}');
INSERT INTO `smrc_commentmeta` VALUES (3,5,'akismet_as_submitted','a:64:{s:15:\"comment_post_ID\";i:37;s:14:\"comment_author\";s:6:\"Stuart\";s:20:\"comment_author_email\";s:20:\"stuart@woothemes.com\";s:18:\"comment_author_url\";N;s:15:\"comment_content\";s:65:\"This will go great with my Hoodie that I ordered a few weeks ago.\";s:12:\"comment_type\";s:0:\"\";s:14:\"comment_parent\";i:0;s:7:\"user_ID\";i:0;s:7:\"user_ip\";s:13:\"82.32.109.140\";s:10:\"user_agent\";s:72:\"Mozilla/5.0 (Windows NT 6.1; WOW64; rv:21.0) Gecko/20100101 Firefox/21.0\";s:8:\"referrer\";s:59:\"http://demo2.woothemes.com/woocommerce/product/happy-ninja/\";s:4:\"blog\";s:38:\"http://demo2.woothemes.com/woocommerce\";s:9:\"blog_lang\";s:5:\"en_US\";s:12:\"blog_charset\";s:5:\"UTF-8\";s:9:\"permalink\";s:59:\"http://demo2.woothemes.com/woocommerce/product/happy-ninja/\";s:21:\"akismet_comment_nonce\";s:6:\"passed\";s:11:\"POST_author\";s:6:\"Stuart\";s:10:\"POST_email\";s:20:\"stuart@woothemes.com\";s:11:\"POST_rating\";s:1:\"5\";s:12:\"POST_comment\";s:65:\"This will go great with my Hoodie that I ordered a few weeks ago.\";s:7:\"POST__n\";s:10:\"2145d644a3\";s:21:\"POST__wp_http_referer\";s:33:\"/woocommerce/product/happy-ninja/\";s:11:\"POST_submit\";s:13:\"Submit Review\";s:20:\"POST_comment_post_ID\";s:2:\"37\";s:19:\"POST_comment_parent\";s:1:\"0\";s:26:\"POST_akismet_comment_nonce\";s:10:\"7da2a7b2b2\";s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:33:\"/woocommerce/wp-comments-post.php\";s:15:\"REDIRECT_IS_WPE\";s:1:\"1\";s:27:\"REDIRECT_WPE_CAN_WRITE_DISK\";s:1:\"0\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:6:\"IS_WPE\";s:1:\"1\";s:18:\"WPE_CAN_WRITE_DISK\";s:1:\"0\";s:9:\"HTTP_HOST\";s:19:\"demo2.woothemes.com\";s:13:\"HTTP_X_LB_KEY\";s:8:\"woodemo2\";s:13:\"HTTP_X_IS_BOT\";s:1:\"0\";s:15:\"HTTP_USER_AGENT\";s:72:\"Mozilla/5.0 (Windows NT 6.1; WOW64; rv:21.0) Gecko/20100101 Firefox/21.0\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:12:\"HTTP_REFERER\";s:59:\"http://demo2.woothemes.com/woocommerce/product/happy-ninja/\";s:11:\"HTTP_COOKIE\";s:0:\"\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:14:\"CONTENT_LENGTH\";s:3:\"288\";s:4:\"PATH\";s:28:\"/usr/local/bin:/usr/bin:/bin\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SERVER_NAME\";s:19:\"demo2.woothemes.com\";s:11:\"SERVER_ADDR\";s:9:\"127.0.0.1\";s:11:\"SERVER_PORT\";s:2:\"80\";s:11:\"REMOTE_ADDR\";s:13:\"82.32.109.140\";s:13:\"DOCUMENT_ROOT\";s:26:\"/nas/wp/www/sites/woodemo2\";s:12:\"SERVER_ADMIN\";s:18:\"[no address given]\";s:15:\"SCRIPT_FILENAME\";s:47:\"/nas/wp/www/sites/woodemo2/wp-comments-post.php\";s:11:\"REMOTE_PORT\";s:5:\"40272\";s:12:\"REDIRECT_URL\";s:33:\"/woocommerce/wp-comments-post.php\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.0\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:12:\"QUERY_STRING\";s:0:\"\";s:11:\"SCRIPT_NAME\";s:21:\"/wp-comments-post.php\";s:8:\"PHP_SELF\";s:21:\"/wp-comments-post.php\";s:12:\"REQUEST_TIME\";s:10:\"1370610085\";s:25:\"comment_post_modified_gmt\";s:19:\"2013-06-07 11:14:15\";}');
INSERT INTO `smrc_commentmeta` VALUES (4,5,'rating','5');
INSERT INTO `smrc_commentmeta` VALUES (5,5,'akismet_history','a:4:{s:4:\"time\";d:1370611525.104844;s:7:\"message\";s:46:\"wooteam changed the comment status to approved\";s:5:\"event\";s:15:\"status-approved\";s:4:\"user\";s:7:\"wooteam\";}');
INSERT INTO `smrc_commentmeta` VALUES (6,6,'akismet_error','1370620193');
INSERT INTO `smrc_commentmeta` VALUES (7,6,'akismet_history','a:4:{s:4:\"time\";d:1370620193.986452;s:7:\"message\";s:92:\"Akismet was unable to check this comment (response: ), will automatically retry again later.\";s:5:\"event\";s:11:\"check-error\";s:4:\"user\";s:0:\"\";}');
INSERT INTO `smrc_commentmeta` VALUES (8,6,'akismet_as_submitted','a:66:{s:15:\"comment_post_ID\";i:37;s:14:\"comment_author\";s:5:\"Maria\";s:20:\"comment_author_email\";s:19:\"maria@woothemes.com\";s:18:\"comment_author_url\";N;s:15:\"comment_content\";s:56:\"Love this shirt! The ninja near and dear to my heart. <3\";s:12:\"comment_type\";s:0:\"\";s:14:\"comment_parent\";i:0;s:7:\"user_ID\";i:0;s:7:\"user_ip\";s:13:\"24.225.103.32\";s:10:\"user_agent\";s:120:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/27.0.1453.110 Safari/537.36\";s:8:\"referrer\";s:59:\"http://demo2.woothemes.com/woocommerce/product/happy-ninja/\";s:4:\"blog\";s:38:\"http://demo2.woothemes.com/woocommerce\";s:9:\"blog_lang\";s:5:\"en_US\";s:12:\"blog_charset\";s:5:\"UTF-8\";s:9:\"permalink\";s:59:\"http://demo2.woothemes.com/woocommerce/product/happy-ninja/\";s:21:\"akismet_comment_nonce\";s:6:\"passed\";s:11:\"POST_author\";s:5:\"Maria\";s:10:\"POST_email\";s:19:\"maria@woothemes.com\";s:11:\"POST_rating\";s:1:\"5\";s:12:\"POST_comment\";s:56:\"Love this shirt! The ninja near and dear to my heart. <3\";s:7:\"POST__n\";s:10:\"2145d644a3\";s:21:\"POST__wp_http_referer\";s:33:\"/woocommerce/product/happy-ninja/\";s:11:\"POST_submit\";s:13:\"Submit Review\";s:20:\"POST_comment_post_ID\";s:2:\"37\";s:19:\"POST_comment_parent\";s:1:\"0\";s:26:\"POST_akismet_comment_nonce\";s:10:\"7da2a7b2b2\";s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:33:\"/woocommerce/wp-comments-post.php\";s:15:\"REDIRECT_IS_WPE\";s:1:\"1\";s:27:\"REDIRECT_WPE_CAN_WRITE_DISK\";s:1:\"0\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:6:\"IS_WPE\";s:1:\"1\";s:18:\"WPE_CAN_WRITE_DISK\";s:1:\"0\";s:9:\"HTTP_HOST\";s:19:\"demo2.woothemes.com\";s:13:\"HTTP_X_LB_KEY\";s:8:\"woodemo2\";s:13:\"HTTP_X_IS_BOT\";s:1:\"0\";s:15:\"HTTP_USER_AGENT\";s:120:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/27.0.1453.110 Safari/537.36\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:14:\"CONTENT_LENGTH\";s:3:\"281\";s:18:\"HTTP_CACHE_CONTROL\";s:9:\"max-age=0\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:11:\"HTTP_ORIGIN\";s:26:\"http://demo2.woothemes.com\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:12:\"HTTP_REFERER\";s:59:\"http://demo2.woothemes.com/woocommerce/product/happy-ninja/\";s:20:\"HTTP_ACCEPT_ENCODING\";s:17:\"gzip,deflate,sdch\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.8\";s:11:\"HTTP_COOKIE\";s:0:\"\";s:4:\"PATH\";s:28:\"/usr/local/bin:/usr/bin:/bin\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SERVER_NAME\";s:19:\"demo2.woothemes.com\";s:11:\"SERVER_ADDR\";s:9:\"127.0.0.1\";s:11:\"SERVER_PORT\";s:2:\"80\";s:11:\"REMOTE_ADDR\";s:13:\"24.225.103.32\";s:13:\"DOCUMENT_ROOT\";s:26:\"/nas/wp/www/sites/woodemo2\";s:12:\"SERVER_ADMIN\";s:18:\"[no address given]\";s:15:\"SCRIPT_FILENAME\";s:47:\"/nas/wp/www/sites/woodemo2/wp-comments-post.php\";s:11:\"REMOTE_PORT\";s:5:\"24107\";s:12:\"REDIRECT_URL\";s:33:\"/woocommerce/wp-comments-post.php\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.0\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:12:\"QUERY_STRING\";s:0:\"\";s:11:\"SCRIPT_NAME\";s:21:\"/wp-comments-post.php\";s:8:\"PHP_SELF\";s:21:\"/wp-comments-post.php\";s:12:\"REQUEST_TIME\";s:10:\"1370620193\";s:25:\"comment_post_modified_gmt\";s:19:\"2013-06-07 11:14:15\";}');
INSERT INTO `smrc_commentmeta` VALUES (9,6,'rating','5');
INSERT INTO `smrc_commentmeta` VALUES (10,6,'akismet_history','a:4:{s:4:\"time\";d:1370620633.956314;s:7:\"message\";s:46:\"wooteam changed the comment status to approved\";s:5:\"event\";s:15:\"status-approved\";s:4:\"user\";s:7:\"wooteam\";}');
INSERT INTO `smrc_commentmeta` VALUES (11,7,'akismet_error','1370610209');
INSERT INTO `smrc_commentmeta` VALUES (12,7,'akismet_history','a:4:{s:4:\"time\";d:1370610209.978949;s:7:\"message\";s:92:\"Akismet was unable to check this comment (response: ), will automatically retry again later.\";s:5:\"event\";s:11:\"check-error\";s:4:\"user\";s:0:\"\";}');
INSERT INTO `smrc_commentmeta` VALUES (13,7,'akismet_as_submitted','a:64:{s:15:\"comment_post_ID\";i:40;s:14:\"comment_author\";s:6:\"Stuart\";s:20:\"comment_author_email\";s:20:\"stuart@woothemes.com\";s:18:\"comment_author_url\";N;s:15:\"comment_content\";s:108:\"Another great quality product that anyone who see\'s me wearing has asked where to purchase one of their own.\";s:12:\"comment_type\";s:0:\"\";s:14:\"comment_parent\";i:0;s:7:\"user_ID\";i:0;s:7:\"user_ip\";s:13:\"82.32.109.140\";s:10:\"user_agent\";s:72:\"Mozilla/5.0 (Windows NT 6.1; WOW64; rv:21.0) Gecko/20100101 Firefox/21.0\";s:8:\"referrer\";s:64:\"http://demo2.woothemes.com/woocommerce/product/ship-your-idea-2/\";s:4:\"blog\";s:38:\"http://demo2.woothemes.com/woocommerce\";s:9:\"blog_lang\";s:5:\"en_US\";s:12:\"blog_charset\";s:5:\"UTF-8\";s:9:\"permalink\";s:64:\"http://demo2.woothemes.com/woocommerce/product/ship-your-idea-2/\";s:21:\"akismet_comment_nonce\";s:6:\"passed\";s:11:\"POST_author\";s:6:\"Stuart\";s:10:\"POST_email\";s:20:\"stuart@woothemes.com\";s:11:\"POST_rating\";s:1:\"4\";s:12:\"POST_comment\";s:108:\"Another great quality product that anyone who see\'s me wearing has asked where to purchase one of their own.\";s:7:\"POST__n\";s:10:\"2145d644a3\";s:21:\"POST__wp_http_referer\";s:38:\"/woocommerce/product/ship-your-idea-2/\";s:11:\"POST_submit\";s:13:\"Submit Review\";s:20:\"POST_comment_post_ID\";s:2:\"40\";s:19:\"POST_comment_parent\";s:1:\"0\";s:26:\"POST_akismet_comment_nonce\";s:10:\"3493e6658d\";s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:33:\"/woocommerce/wp-comments-post.php\";s:15:\"REDIRECT_IS_WPE\";s:1:\"1\";s:27:\"REDIRECT_WPE_CAN_WRITE_DISK\";s:1:\"0\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:6:\"IS_WPE\";s:1:\"1\";s:18:\"WPE_CAN_WRITE_DISK\";s:1:\"0\";s:9:\"HTTP_HOST\";s:19:\"demo2.woothemes.com\";s:13:\"HTTP_X_LB_KEY\";s:8:\"woodemo2\";s:13:\"HTTP_X_IS_BOT\";s:1:\"0\";s:15:\"HTTP_USER_AGENT\";s:72:\"Mozilla/5.0 (Windows NT 6.1; WOW64; rv:21.0) Gecko/20100101 Firefox/21.0\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:12:\"HTTP_REFERER\";s:64:\"http://demo2.woothemes.com/woocommerce/product/ship-your-idea-2/\";s:11:\"HTTP_COOKIE\";s:0:\"\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:14:\"CONTENT_LENGTH\";s:3:\"338\";s:4:\"PATH\";s:28:\"/usr/local/bin:/usr/bin:/bin\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SERVER_NAME\";s:19:\"demo2.woothemes.com\";s:11:\"SERVER_ADDR\";s:9:\"127.0.0.1\";s:11:\"SERVER_PORT\";s:2:\"80\";s:11:\"REMOTE_ADDR\";s:13:\"82.32.109.140\";s:13:\"DOCUMENT_ROOT\";s:26:\"/nas/wp/www/sites/woodemo2\";s:12:\"SERVER_ADMIN\";s:18:\"[no address given]\";s:15:\"SCRIPT_FILENAME\";s:47:\"/nas/wp/www/sites/woodemo2/wp-comments-post.php\";s:11:\"REMOTE_PORT\";s:5:\"41743\";s:12:\"REDIRECT_URL\";s:33:\"/woocommerce/wp-comments-post.php\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.0\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:12:\"QUERY_STRING\";s:0:\"\";s:11:\"SCRIPT_NAME\";s:21:\"/wp-comments-post.php\";s:8:\"PHP_SELF\";s:21:\"/wp-comments-post.php\";s:12:\"REQUEST_TIME\";s:10:\"1370610209\";s:25:\"comment_post_modified_gmt\";s:19:\"2013-06-07 11:18:57\";}');
INSERT INTO `smrc_commentmeta` VALUES (14,7,'rating','4');
INSERT INTO `smrc_commentmeta` VALUES (15,7,'akismet_history','a:4:{s:4:\"time\";d:1370611527.799383;s:7:\"message\";s:46:\"wooteam changed the comment status to approved\";s:5:\"event\";s:15:\"status-approved\";s:4:\"user\";s:7:\"wooteam\";}');
INSERT INTO `smrc_commentmeta` VALUES (16,8,'akismet_error','1370611492');
INSERT INTO `smrc_commentmeta` VALUES (17,8,'akismet_history','a:4:{s:4:\"time\";d:1370611492.654342;s:7:\"message\";s:92:\"Akismet was unable to check this comment (response: ), will automatically retry again later.\";s:5:\"event\";s:11:\"check-error\";s:4:\"user\";s:0:\"\";}');
INSERT INTO `smrc_commentmeta` VALUES (18,8,'akismet_as_submitted','a:66:{s:15:\"comment_post_ID\";i:40;s:14:\"comment_author\";s:4:\"Ryan\";s:20:\"comment_author_email\";s:18:\"ryan@woothemes.com\";s:18:\"comment_author_url\";N;s:15:\"comment_content\";s:168:\"This hoodie gets me lots of looks while out in public, I got the blue one and it\'s awesome. Not sure if people are looking at my hoodie only, or also at my rocking bod.\";s:12:\"comment_type\";s:0:\"\";s:14:\"comment_parent\";i:0;s:7:\"user_ID\";i:0;s:7:\"user_ip\";s:14:\"99.153.225.252\";s:10:\"user_agent\";s:120:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/27.0.1453.110 Safari/537.36\";s:8:\"referrer\";s:64:\"http://demo2.woothemes.com/woocommerce/product/ship-your-idea-2/\";s:4:\"blog\";s:38:\"http://demo2.woothemes.com/woocommerce\";s:9:\"blog_lang\";s:5:\"en_US\";s:12:\"blog_charset\";s:5:\"UTF-8\";s:9:\"permalink\";s:64:\"http://demo2.woothemes.com/woocommerce/product/ship-your-idea-2/\";s:21:\"akismet_comment_nonce\";s:6:\"passed\";s:11:\"POST_author\";s:4:\"Ryan\";s:10:\"POST_email\";s:18:\"ryan@woothemes.com\";s:11:\"POST_rating\";s:1:\"5\";s:12:\"POST_comment\";s:168:\"This hoodie gets me lots of looks while out in public, I got the blue one and it\'s awesome. Not sure if people are looking at my hoodie only, or also at my rocking bod.\";s:7:\"POST__n\";s:10:\"2145d644a3\";s:21:\"POST__wp_http_referer\";s:38:\"/woocommerce/product/ship-your-idea-2/\";s:11:\"POST_submit\";s:13:\"Submit Review\";s:20:\"POST_comment_post_ID\";s:2:\"40\";s:19:\"POST_comment_parent\";s:1:\"0\";s:26:\"POST_akismet_comment_nonce\";s:10:\"3493e6658d\";s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:33:\"/woocommerce/wp-comments-post.php\";s:15:\"REDIRECT_IS_WPE\";s:1:\"1\";s:27:\"REDIRECT_WPE_CAN_WRITE_DISK\";s:1:\"0\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:6:\"IS_WPE\";s:1:\"1\";s:18:\"WPE_CAN_WRITE_DISK\";s:1:\"0\";s:9:\"HTTP_HOST\";s:19:\"demo2.woothemes.com\";s:13:\"HTTP_X_LB_KEY\";s:8:\"woodemo2\";s:13:\"HTTP_X_IS_BOT\";s:1:\"0\";s:15:\"HTTP_USER_AGENT\";s:120:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/27.0.1453.110 Safari/537.36\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:14:\"CONTENT_LENGTH\";s:3:\"398\";s:18:\"HTTP_CACHE_CONTROL\";s:9:\"max-age=0\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:11:\"HTTP_ORIGIN\";s:26:\"http://demo2.woothemes.com\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:12:\"HTTP_REFERER\";s:64:\"http://demo2.woothemes.com/woocommerce/product/ship-your-idea-2/\";s:20:\"HTTP_ACCEPT_ENCODING\";s:17:\"gzip,deflate,sdch\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.8\";s:11:\"HTTP_COOKIE\";s:0:\"\";s:4:\"PATH\";s:28:\"/usr/local/bin:/usr/bin:/bin\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SERVER_NAME\";s:19:\"demo2.woothemes.com\";s:11:\"SERVER_ADDR\";s:9:\"127.0.0.1\";s:11:\"SERVER_PORT\";s:2:\"80\";s:11:\"REMOTE_ADDR\";s:14:\"99.153.225.252\";s:13:\"DOCUMENT_ROOT\";s:26:\"/nas/wp/www/sites/woodemo2\";s:12:\"SERVER_ADMIN\";s:18:\"[no address given]\";s:15:\"SCRIPT_FILENAME\";s:47:\"/nas/wp/www/sites/woodemo2/wp-comments-post.php\";s:11:\"REMOTE_PORT\";s:5:\"54935\";s:12:\"REDIRECT_URL\";s:33:\"/woocommerce/wp-comments-post.php\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.0\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:12:\"QUERY_STRING\";s:0:\"\";s:11:\"SCRIPT_NAME\";s:21:\"/wp-comments-post.php\";s:8:\"PHP_SELF\";s:21:\"/wp-comments-post.php\";s:12:\"REQUEST_TIME\";s:10:\"1370611492\";s:25:\"comment_post_modified_gmt\";s:19:\"2013-06-07 11:18:57\";}');
INSERT INTO `smrc_commentmeta` VALUES (19,8,'rating','5');
INSERT INTO `smrc_commentmeta` VALUES (20,8,'akismet_history','a:4:{s:4:\"time\";d:1370611529.772049;s:7:\"message\";s:46:\"wooteam changed the comment status to approved\";s:5:\"event\";s:15:\"status-approved\";s:4:\"user\";s:7:\"wooteam\";}');
INSERT INTO `smrc_commentmeta` VALUES (21,9,'akismet_error','1370620411');
INSERT INTO `smrc_commentmeta` VALUES (22,9,'akismet_history','a:4:{s:4:\"time\";d:1370620411.144583;s:7:\"message\";s:92:\"Akismet was unable to check this comment (response: ), will automatically retry again later.\";s:5:\"event\";s:11:\"check-error\";s:4:\"user\";s:0:\"\";}');
INSERT INTO `smrc_commentmeta` VALUES (23,9,'akismet_as_submitted','a:66:{s:15:\"comment_post_ID\";i:40;s:14:\"comment_author\";s:5:\"Maria\";s:20:\"comment_author_email\";s:19:\"maria@woothemes.com\";s:18:\"comment_author_url\";N;s:15:\"comment_content\";s:8:\"Ship it!\";s:12:\"comment_type\";s:0:\"\";s:14:\"comment_parent\";i:0;s:7:\"user_ID\";i:0;s:7:\"user_ip\";s:13:\"24.225.103.32\";s:10:\"user_agent\";s:120:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/27.0.1453.110 Safari/537.36\";s:8:\"referrer\";s:64:\"http://demo2.woothemes.com/woocommerce/product/ship-your-idea-2/\";s:4:\"blog\";s:38:\"http://demo2.woothemes.com/woocommerce\";s:9:\"blog_lang\";s:5:\"en_US\";s:12:\"blog_charset\";s:5:\"UTF-8\";s:9:\"permalink\";s:64:\"http://demo2.woothemes.com/woocommerce/product/ship-your-idea-2/\";s:21:\"akismet_comment_nonce\";s:6:\"passed\";s:11:\"POST_author\";s:5:\"Maria\";s:10:\"POST_email\";s:19:\"maria@woothemes.com\";s:11:\"POST_rating\";s:1:\"3\";s:12:\"POST_comment\";s:8:\"Ship it!\";s:7:\"POST__n\";s:10:\"2145d644a3\";s:21:\"POST__wp_http_referer\";s:38:\"/woocommerce/product/ship-your-idea-2/\";s:11:\"POST_submit\";s:13:\"Submit Review\";s:20:\"POST_comment_post_ID\";s:2:\"40\";s:19:\"POST_comment_parent\";s:1:\"0\";s:26:\"POST_akismet_comment_nonce\";s:10:\"3493e6658d\";s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:33:\"/woocommerce/wp-comments-post.php\";s:15:\"REDIRECT_IS_WPE\";s:1:\"1\";s:27:\"REDIRECT_WPE_CAN_WRITE_DISK\";s:1:\"0\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:6:\"IS_WPE\";s:1:\"1\";s:18:\"WPE_CAN_WRITE_DISK\";s:1:\"0\";s:9:\"HTTP_HOST\";s:19:\"demo2.woothemes.com\";s:13:\"HTTP_X_LB_KEY\";s:8:\"woodemo2\";s:13:\"HTTP_X_IS_BOT\";s:1:\"0\";s:15:\"HTTP_USER_AGENT\";s:120:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/27.0.1453.110 Safari/537.36\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:14:\"CONTENT_LENGTH\";s:3:\"236\";s:18:\"HTTP_CACHE_CONTROL\";s:9:\"max-age=0\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:11:\"HTTP_ORIGIN\";s:26:\"http://demo2.woothemes.com\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:12:\"HTTP_REFERER\";s:64:\"http://demo2.woothemes.com/woocommerce/product/ship-your-idea-2/\";s:20:\"HTTP_ACCEPT_ENCODING\";s:17:\"gzip,deflate,sdch\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.8\";s:11:\"HTTP_COOKIE\";s:0:\"\";s:4:\"PATH\";s:28:\"/usr/local/bin:/usr/bin:/bin\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SERVER_NAME\";s:19:\"demo2.woothemes.com\";s:11:\"SERVER_ADDR\";s:9:\"127.0.0.1\";s:11:\"SERVER_PORT\";s:2:\"80\";s:11:\"REMOTE_ADDR\";s:13:\"24.225.103.32\";s:13:\"DOCUMENT_ROOT\";s:26:\"/nas/wp/www/sites/woodemo2\";s:12:\"SERVER_ADMIN\";s:18:\"[no address given]\";s:15:\"SCRIPT_FILENAME\";s:47:\"/nas/wp/www/sites/woodemo2/wp-comments-post.php\";s:11:\"REMOTE_PORT\";s:5:\"27030\";s:12:\"REDIRECT_URL\";s:33:\"/woocommerce/wp-comments-post.php\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.0\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:12:\"QUERY_STRING\";s:0:\"\";s:11:\"SCRIPT_NAME\";s:21:\"/wp-comments-post.php\";s:8:\"PHP_SELF\";s:21:\"/wp-comments-post.php\";s:12:\"REQUEST_TIME\";s:10:\"1370620411\";s:25:\"comment_post_modified_gmt\";s:19:\"2013-06-07 11:18:57\";}');
INSERT INTO `smrc_commentmeta` VALUES (24,9,'rating','3');
INSERT INTO `smrc_commentmeta` VALUES (25,9,'akismet_history','a:4:{s:4:\"time\";d:1370620633.938152;s:7:\"message\";s:46:\"wooteam changed the comment status to approved\";s:5:\"event\";s:15:\"status-approved\";s:4:\"user\";s:7:\"wooteam\";}');
INSERT INTO `smrc_commentmeta` VALUES (26,10,'akismet_error','1370606072');
INSERT INTO `smrc_commentmeta` VALUES (27,10,'akismet_history','a:4:{s:4:\"time\";d:1370606072.711755;s:7:\"message\";s:92:\"Akismet was unable to check this comment (response: ), will automatically retry again later.\";s:5:\"event\";s:11:\"check-error\";s:4:\"user\";s:0:\"\";}');
INSERT INTO `smrc_commentmeta` VALUES (28,10,'akismet_as_submitted','a:67:{s:15:\"comment_post_ID\";i:31;s:14:\"comment_author\";s:12:\"Cobus Bester\";s:20:\"comment_author_email\";s:18:\"bester.c@gmail.com\";s:18:\"comment_author_url\";N;s:15:\"comment_content\";s:76:\"The ninja silhouette is one of my favorite designs. This is a great product.\";s:12:\"comment_type\";s:0:\"\";s:14:\"comment_parent\";i:0;s:7:\"user_ID\";i:0;s:7:\"user_ip\";s:13:\"196.215.9.147\";s:10:\"user_agent\";s:119:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.31 (KHTML, like Gecko) Chrome/26.0.1410.65 Safari/537.31\";s:8:\"referrer\";s:64:\"http://demo2.woothemes.com/woocommerce/product/ninja-silhouette/\";s:4:\"blog\";s:38:\"http://demo2.woothemes.com/woocommerce\";s:9:\"blog_lang\";s:5:\"en_US\";s:12:\"blog_charset\";s:5:\"UTF-8\";s:9:\"permalink\";s:64:\"http://demo2.woothemes.com/woocommerce/product/ninja-silhouette/\";s:21:\"akismet_comment_nonce\";s:6:\"passed\";s:11:\"POST_author\";s:12:\"Cobus Bester\";s:10:\"POST_email\";s:18:\"bester.c@gmail.com\";s:11:\"POST_rating\";s:1:\"5\";s:12:\"POST_comment\";s:76:\"The ninja silhouette is one of my favorite designs. This is a great product.\";s:7:\"POST__n\";s:10:\"a80bd2f042\";s:21:\"POST__wp_http_referer\";s:38:\"/woocommerce/product/ninja-silhouette/\";s:11:\"POST_submit\";s:13:\"Submit Review\";s:20:\"POST_comment_post_ID\";s:2:\"31\";s:19:\"POST_comment_parent\";s:1:\"0\";s:26:\"POST_akismet_comment_nonce\";s:10:\"a0acab20c6\";s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:33:\"/woocommerce/wp-comments-post.php\";s:15:\"REDIRECT_IS_WPE\";s:1:\"1\";s:27:\"REDIRECT_WPE_CAN_WRITE_DISK\";s:1:\"0\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:6:\"IS_WPE\";s:1:\"1\";s:18:\"WPE_CAN_WRITE_DISK\";s:1:\"0\";s:9:\"HTTP_HOST\";s:19:\"demo2.woothemes.com\";s:13:\"HTTP_X_LB_KEY\";s:8:\"woodemo2\";s:13:\"HTTP_X_IS_BOT\";s:1:\"0\";s:15:\"HTTP_USER_AGENT\";s:119:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.31 (KHTML, like Gecko) Chrome/26.0.1410.65 Safari/537.31\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:14:\"CONTENT_LENGTH\";s:3:\"308\";s:18:\"HTTP_CACHE_CONTROL\";s:9:\"max-age=0\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:11:\"HTTP_ORIGIN\";s:26:\"http://demo2.woothemes.com\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:12:\"HTTP_REFERER\";s:64:\"http://demo2.woothemes.com/woocommerce/product/ninja-silhouette/\";s:20:\"HTTP_ACCEPT_ENCODING\";s:17:\"gzip,deflate,sdch\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.8\";s:19:\"HTTP_ACCEPT_CHARSET\";s:30:\"ISO-8859-1,utf-8;q=0.7,*;q=0.3\";s:11:\"HTTP_COOKIE\";s:0:\"\";s:4:\"PATH\";s:28:\"/usr/local/bin:/usr/bin:/bin\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SERVER_NAME\";s:19:\"demo2.woothemes.com\";s:11:\"SERVER_ADDR\";s:9:\"127.0.0.1\";s:11:\"SERVER_PORT\";s:2:\"80\";s:11:\"REMOTE_ADDR\";s:13:\"196.215.9.147\";s:13:\"DOCUMENT_ROOT\";s:26:\"/nas/wp/www/sites/woodemo2\";s:12:\"SERVER_ADMIN\";s:18:\"[no address given]\";s:15:\"SCRIPT_FILENAME\";s:47:\"/nas/wp/www/sites/woodemo2/wp-comments-post.php\";s:11:\"REMOTE_PORT\";s:5:\"55289\";s:12:\"REDIRECT_URL\";s:33:\"/woocommerce/wp-comments-post.php\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.0\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:12:\"QUERY_STRING\";s:0:\"\";s:11:\"SCRIPT_NAME\";s:21:\"/wp-comments-post.php\";s:8:\"PHP_SELF\";s:21:\"/wp-comments-post.php\";s:12:\"REQUEST_TIME\";s:10:\"1370606072\";s:25:\"comment_post_modified_gmt\";s:19:\"2013-06-07 11:15:05\";}');
INSERT INTO `smrc_commentmeta` VALUES (29,10,'rating','5');
INSERT INTO `smrc_commentmeta` VALUES (30,10,'akismet_history','a:4:{s:4:\"time\";d:1370607931.630702;s:7:\"message\";s:46:\"wooteam changed the comment status to approved\";s:5:\"event\";s:15:\"status-approved\";s:4:\"user\";s:7:\"wooteam\";}');
INSERT INTO `smrc_commentmeta` VALUES (31,11,'akismet_error','1370606279');
INSERT INTO `smrc_commentmeta` VALUES (32,11,'akismet_history','a:4:{s:4:\"time\";d:1370606279.836288;s:7:\"message\";s:92:\"Akismet was unable to check this comment (response: ), will automatically retry again later.\";s:5:\"event\";s:11:\"check-error\";s:4:\"user\";s:0:\"\";}');
INSERT INTO `smrc_commentmeta` VALUES (33,11,'akismet_as_submitted','a:67:{s:15:\"comment_post_ID\";i:47;s:14:\"comment_author\";s:12:\"Cobus Bester\";s:20:\"comment_author_email\";s:18:\"bester.c@gmail.com\";s:18:\"comment_author_url\";N;s:15:\"comment_content\";s:71:\"This hoodie is great for those chilly winter days. I love the WooNinja!\";s:12:\"comment_type\";s:0:\"\";s:14:\"comment_parent\";i:0;s:7:\"user_ID\";i:0;s:7:\"user_ip\";s:13:\"196.215.9.147\";s:10:\"user_agent\";s:119:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.31 (KHTML, like Gecko) Chrome/26.0.1410.65 Safari/537.31\";s:8:\"referrer\";s:59:\"http://demo2.woothemes.com/woocommerce/product/woo-ninja-2/\";s:4:\"blog\";s:38:\"http://demo2.woothemes.com/woocommerce\";s:9:\"blog_lang\";s:5:\"en_US\";s:12:\"blog_charset\";s:5:\"UTF-8\";s:9:\"permalink\";s:59:\"http://demo2.woothemes.com/woocommerce/product/woo-ninja-2/\";s:21:\"akismet_comment_nonce\";s:6:\"passed\";s:11:\"POST_author\";s:12:\"Cobus Bester\";s:10:\"POST_email\";s:18:\"bester.c@gmail.com\";s:11:\"POST_rating\";s:1:\"5\";s:12:\"POST_comment\";s:71:\"This hoodie is great for those chilly winter days. I love the WooNinja!\";s:7:\"POST__n\";s:10:\"a80bd2f042\";s:21:\"POST__wp_http_referer\";s:33:\"/woocommerce/product/woo-ninja-2/\";s:11:\"POST_submit\";s:13:\"Submit Review\";s:20:\"POST_comment_post_ID\";s:2:\"47\";s:19:\"POST_comment_parent\";s:1:\"0\";s:26:\"POST_akismet_comment_nonce\";s:10:\"38d66a284b\";s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:33:\"/woocommerce/wp-comments-post.php\";s:15:\"REDIRECT_IS_WPE\";s:1:\"1\";s:27:\"REDIRECT_WPE_CAN_WRITE_DISK\";s:1:\"0\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:6:\"IS_WPE\";s:1:\"1\";s:18:\"WPE_CAN_WRITE_DISK\";s:1:\"0\";s:9:\"HTTP_HOST\";s:19:\"demo2.woothemes.com\";s:13:\"HTTP_X_LB_KEY\";s:8:\"woodemo2\";s:13:\"HTTP_X_IS_BOT\";s:1:\"0\";s:15:\"HTTP_USER_AGENT\";s:119:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.31 (KHTML, like Gecko) Chrome/26.0.1410.65 Safari/537.31\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:14:\"CONTENT_LENGTH\";s:3:\"300\";s:18:\"HTTP_CACHE_CONTROL\";s:9:\"max-age=0\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:11:\"HTTP_ORIGIN\";s:26:\"http://demo2.woothemes.com\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:12:\"HTTP_REFERER\";s:59:\"http://demo2.woothemes.com/woocommerce/product/woo-ninja-2/\";s:20:\"HTTP_ACCEPT_ENCODING\";s:17:\"gzip,deflate,sdch\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.8\";s:19:\"HTTP_ACCEPT_CHARSET\";s:30:\"ISO-8859-1,utf-8;q=0.7,*;q=0.3\";s:11:\"HTTP_COOKIE\";s:0:\"\";s:4:\"PATH\";s:28:\"/usr/local/bin:/usr/bin:/bin\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SERVER_NAME\";s:19:\"demo2.woothemes.com\";s:11:\"SERVER_ADDR\";s:9:\"127.0.0.1\";s:11:\"SERVER_PORT\";s:2:\"80\";s:11:\"REMOTE_ADDR\";s:13:\"196.215.9.147\";s:13:\"DOCUMENT_ROOT\";s:26:\"/nas/wp/www/sites/woodemo2\";s:12:\"SERVER_ADMIN\";s:18:\"[no address given]\";s:15:\"SCRIPT_FILENAME\";s:47:\"/nas/wp/www/sites/woodemo2/wp-comments-post.php\";s:11:\"REMOTE_PORT\";s:5:\"58209\";s:12:\"REDIRECT_URL\";s:33:\"/woocommerce/wp-comments-post.php\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.0\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:12:\"QUERY_STRING\";s:0:\"\";s:11:\"SCRIPT_NAME\";s:21:\"/wp-comments-post.php\";s:8:\"PHP_SELF\";s:21:\"/wp-comments-post.php\";s:12:\"REQUEST_TIME\";s:10:\"1370606279\";s:25:\"comment_post_modified_gmt\";s:19:\"2013-06-07 11:18:45\";}');
INSERT INTO `smrc_commentmeta` VALUES (34,11,'rating','5');
INSERT INTO `smrc_commentmeta` VALUES (35,11,'akismet_history','a:4:{s:4:\"time\";d:1370607944.781112;s:7:\"message\";s:46:\"wooteam changed the comment status to approved\";s:5:\"event\";s:15:\"status-approved\";s:4:\"user\";s:7:\"wooteam\";}');
INSERT INTO `smrc_commentmeta` VALUES (36,12,'akismet_error','1370620393');
INSERT INTO `smrc_commentmeta` VALUES (37,12,'akismet_history','a:4:{s:4:\"time\";d:1370620393.674126;s:7:\"message\";s:92:\"Akismet was unable to check this comment (response: ), will automatically retry again later.\";s:5:\"event\";s:11:\"check-error\";s:4:\"user\";s:0:\"\";}');
INSERT INTO `smrc_commentmeta` VALUES (38,12,'akismet_as_submitted','a:66:{s:15:\"comment_post_ID\";i:47;s:14:\"comment_author\";s:5:\"Maria\";s:20:\"comment_author_email\";s:19:\"maria@woothemes.com\";s:18:\"comment_author_url\";N;s:15:\"comment_content\";s:40:\"Perfect for the lady Ninja in your life!\";s:12:\"comment_type\";s:0:\"\";s:14:\"comment_parent\";i:0;s:7:\"user_ID\";i:0;s:7:\"user_ip\";s:13:\"24.225.103.32\";s:10:\"user_agent\";s:120:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/27.0.1453.110 Safari/537.36\";s:8:\"referrer\";s:59:\"http://demo2.woothemes.com/woocommerce/product/woo-ninja-2/\";s:4:\"blog\";s:38:\"http://demo2.woothemes.com/woocommerce\";s:9:\"blog_lang\";s:5:\"en_US\";s:12:\"blog_charset\";s:5:\"UTF-8\";s:9:\"permalink\";s:59:\"http://demo2.woothemes.com/woocommerce/product/woo-ninja-2/\";s:21:\"akismet_comment_nonce\";s:6:\"passed\";s:11:\"POST_author\";s:5:\"Maria\";s:10:\"POST_email\";s:19:\"maria@woothemes.com\";s:11:\"POST_rating\";s:1:\"4\";s:12:\"POST_comment\";s:40:\"Perfect for the lady Ninja in your life!\";s:7:\"POST__n\";s:10:\"2145d644a3\";s:21:\"POST__wp_http_referer\";s:33:\"/woocommerce/product/woo-ninja-2/\";s:11:\"POST_submit\";s:13:\"Submit Review\";s:20:\"POST_comment_post_ID\";s:2:\"47\";s:19:\"POST_comment_parent\";s:1:\"0\";s:26:\"POST_akismet_comment_nonce\";s:10:\"ade950552e\";s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:33:\"/woocommerce/wp-comments-post.php\";s:15:\"REDIRECT_IS_WPE\";s:1:\"1\";s:27:\"REDIRECT_WPE_CAN_WRITE_DISK\";s:1:\"0\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:6:\"IS_WPE\";s:1:\"1\";s:18:\"WPE_CAN_WRITE_DISK\";s:1:\"0\";s:9:\"HTTP_HOST\";s:19:\"demo2.woothemes.com\";s:13:\"HTTP_X_LB_KEY\";s:8:\"woodemo2\";s:13:\"HTTP_X_IS_BOT\";s:1:\"0\";s:15:\"HTTP_USER_AGENT\";s:120:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/27.0.1453.110 Safari/537.36\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:14:\"CONTENT_LENGTH\";s:3:\"263\";s:18:\"HTTP_CACHE_CONTROL\";s:9:\"max-age=0\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:11:\"HTTP_ORIGIN\";s:26:\"http://demo2.woothemes.com\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:12:\"HTTP_REFERER\";s:59:\"http://demo2.woothemes.com/woocommerce/product/woo-ninja-2/\";s:20:\"HTTP_ACCEPT_ENCODING\";s:17:\"gzip,deflate,sdch\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.8\";s:11:\"HTTP_COOKIE\";s:0:\"\";s:4:\"PATH\";s:28:\"/usr/local/bin:/usr/bin:/bin\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SERVER_NAME\";s:19:\"demo2.woothemes.com\";s:11:\"SERVER_ADDR\";s:9:\"127.0.0.1\";s:11:\"SERVER_PORT\";s:2:\"80\";s:11:\"REMOTE_ADDR\";s:13:\"24.225.103.32\";s:13:\"DOCUMENT_ROOT\";s:26:\"/nas/wp/www/sites/woodemo2\";s:12:\"SERVER_ADMIN\";s:18:\"[no address given]\";s:15:\"SCRIPT_FILENAME\";s:47:\"/nas/wp/www/sites/woodemo2/wp-comments-post.php\";s:11:\"REMOTE_PORT\";s:5:\"26829\";s:12:\"REDIRECT_URL\";s:33:\"/woocommerce/wp-comments-post.php\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.0\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:12:\"QUERY_STRING\";s:0:\"\";s:11:\"SCRIPT_NAME\";s:21:\"/wp-comments-post.php\";s:8:\"PHP_SELF\";s:21:\"/wp-comments-post.php\";s:12:\"REQUEST_TIME\";s:10:\"1370620393\";s:25:\"comment_post_modified_gmt\";s:19:\"2013-06-07 11:18:45\";}');
INSERT INTO `smrc_commentmeta` VALUES (39,12,'rating','4');
INSERT INTO `smrc_commentmeta` VALUES (40,12,'akismet_history','a:4:{s:4:\"time\";d:1370620633.942543;s:7:\"message\";s:46:\"wooteam changed the comment status to approved\";s:5:\"event\";s:15:\"status-approved\";s:4:\"user\";s:7:\"wooteam\";}');
INSERT INTO `smrc_commentmeta` VALUES (41,13,'akismet_error','1370606091');
INSERT INTO `smrc_commentmeta` VALUES (42,13,'akismet_history','a:4:{s:4:\"time\";d:1370606091.757982;s:7:\"message\";s:92:\"Akismet was unable to check this comment (response: ), will automatically retry again later.\";s:5:\"event\";s:11:\"check-error\";s:4:\"user\";s:0:\"\";}');
INSERT INTO `smrc_commentmeta` VALUES (43,13,'akismet_as_submitted','a:64:{s:15:\"comment_post_ID\";i:53;s:14:\"comment_author\";s:6:\"Andrew\";s:20:\"comment_author_email\";s:25:\"andrew@chromeorange.co.uk\";s:18:\"comment_author_url\";N;s:15:\"comment_content\";s:149:\"I bought this thinking it was a nice green colour, apparently it GREY! I\'m colour blind so I don\'t care but my girlfriend says grey makes me look fat\";s:12:\"comment_type\";s:0:\"\";s:14:\"comment_parent\";i:0;s:7:\"user_ID\";i:0;s:7:\"user_ip\";s:13:\"86.19.152.140\";s:10:\"user_agent\";s:81:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:21.0) Gecko/20100101 Firefox/21.0\";s:8:\"referrer\";s:61:\"http://demo2.woothemes.com/woocommerce/product/happy-ninja-2/\";s:4:\"blog\";s:38:\"http://demo2.woothemes.com/woocommerce\";s:9:\"blog_lang\";s:5:\"en_US\";s:12:\"blog_charset\";s:5:\"UTF-8\";s:9:\"permalink\";s:61:\"http://demo2.woothemes.com/woocommerce/product/happy-ninja-2/\";s:21:\"akismet_comment_nonce\";s:6:\"passed\";s:11:\"POST_author\";s:6:\"Andrew\";s:10:\"POST_email\";s:25:\"andrew@chromeorange.co.uk\";s:11:\"POST_rating\";s:1:\"1\";s:12:\"POST_comment\";s:149:\"I bought this thinking it was a nice green colour, apparently it GREY! I\'m colour blind so I don\'t care but my girlfriend says grey makes me look fat\";s:7:\"POST__n\";s:10:\"a80bd2f042\";s:21:\"POST__wp_http_referer\";s:35:\"/woocommerce/product/happy-ninja-2/\";s:11:\"POST_submit\";s:13:\"Submit Review\";s:20:\"POST_comment_post_ID\";s:2:\"53\";s:19:\"POST_comment_parent\";s:1:\"0\";s:26:\"POST_akismet_comment_nonce\";s:10:\"d96b507062\";s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:33:\"/woocommerce/wp-comments-post.php\";s:15:\"REDIRECT_IS_WPE\";s:1:\"1\";s:27:\"REDIRECT_WPE_CAN_WRITE_DISK\";s:1:\"0\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:6:\"IS_WPE\";s:1:\"1\";s:18:\"WPE_CAN_WRITE_DISK\";s:1:\"0\";s:9:\"HTTP_HOST\";s:19:\"demo2.woothemes.com\";s:13:\"HTTP_X_LB_KEY\";s:8:\"woodemo2\";s:13:\"HTTP_X_IS_BOT\";s:1:\"0\";s:15:\"HTTP_USER_AGENT\";s:81:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:21.0) Gecko/20100101 Firefox/21.0\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:12:\"HTTP_REFERER\";s:61:\"http://demo2.woothemes.com/woocommerce/product/happy-ninja-2/\";s:11:\"HTTP_COOKIE\";s:0:\"\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:14:\"CONTENT_LENGTH\";s:3:\"387\";s:4:\"PATH\";s:28:\"/usr/local/bin:/usr/bin:/bin\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SERVER_NAME\";s:19:\"demo2.woothemes.com\";s:11:\"SERVER_ADDR\";s:9:\"127.0.0.1\";s:11:\"SERVER_PORT\";s:2:\"80\";s:11:\"REMOTE_ADDR\";s:13:\"86.19.152.140\";s:13:\"DOCUMENT_ROOT\";s:26:\"/nas/wp/www/sites/woodemo2\";s:12:\"SERVER_ADMIN\";s:18:\"[no address given]\";s:15:\"SCRIPT_FILENAME\";s:47:\"/nas/wp/www/sites/woodemo2/wp-comments-post.php\";s:11:\"REMOTE_PORT\";s:5:\"55431\";s:12:\"REDIRECT_URL\";s:33:\"/woocommerce/wp-comments-post.php\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.0\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:12:\"QUERY_STRING\";s:0:\"\";s:11:\"SCRIPT_NAME\";s:21:\"/wp-comments-post.php\";s:8:\"PHP_SELF\";s:21:\"/wp-comments-post.php\";s:12:\"REQUEST_TIME\";s:10:\"1370606091\";s:25:\"comment_post_modified_gmt\";s:19:\"2013-06-07 11:17:38\";}');
INSERT INTO `smrc_commentmeta` VALUES (44,13,'rating','1');
INSERT INTO `smrc_commentmeta` VALUES (45,13,'akismet_history','a:4:{s:4:\"time\";d:1370607932.608081;s:7:\"message\";s:46:\"wooteam changed the comment status to approved\";s:5:\"event\";s:15:\"status-approved\";s:4:\"user\";s:7:\"wooteam\";}');
INSERT INTO `smrc_commentmeta` VALUES (46,14,'akismet_error','1370620222');
INSERT INTO `smrc_commentmeta` VALUES (47,14,'akismet_history','a:4:{s:4:\"time\";d:1370620222.192421;s:7:\"message\";s:92:\"Akismet was unable to check this comment (response: ), will automatically retry again later.\";s:5:\"event\";s:11:\"check-error\";s:4:\"user\";s:0:\"\";}');
INSERT INTO `smrc_commentmeta` VALUES (48,14,'akismet_as_submitted','a:66:{s:15:\"comment_post_ID\";i:53;s:14:\"comment_author\";s:5:\"Maria\";s:20:\"comment_author_email\";s:19:\"maria@woothemes.com\";s:18:\"comment_author_url\";N;s:15:\"comment_content\";s:122:\"I love grey hoodies! This is perfect with my grey Ninja shirt, when I get cold I throw this on and I can still be a Ninja.\";s:12:\"comment_type\";s:0:\"\";s:14:\"comment_parent\";i:0;s:7:\"user_ID\";i:0;s:7:\"user_ip\";s:13:\"24.225.103.32\";s:10:\"user_agent\";s:120:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/27.0.1453.110 Safari/537.36\";s:8:\"referrer\";s:61:\"http://demo2.woothemes.com/woocommerce/product/happy-ninja-2/\";s:4:\"blog\";s:38:\"http://demo2.woothemes.com/woocommerce\";s:9:\"blog_lang\";s:5:\"en_US\";s:12:\"blog_charset\";s:5:\"UTF-8\";s:9:\"permalink\";s:61:\"http://demo2.woothemes.com/woocommerce/product/happy-ninja-2/\";s:21:\"akismet_comment_nonce\";s:6:\"passed\";s:11:\"POST_author\";s:5:\"Maria\";s:10:\"POST_email\";s:19:\"maria@woothemes.com\";s:11:\"POST_rating\";s:1:\"5\";s:12:\"POST_comment\";s:123:\"I love grey hoodies! This is perfect with my grey Ninja shirt, when I get cold I throw this on and I can still be a Ninja. \";s:7:\"POST__n\";s:10:\"2145d644a3\";s:21:\"POST__wp_http_referer\";s:35:\"/woocommerce/product/happy-ninja-2/\";s:11:\"POST_submit\";s:13:\"Submit Review\";s:20:\"POST_comment_post_ID\";s:2:\"53\";s:19:\"POST_comment_parent\";s:1:\"0\";s:26:\"POST_akismet_comment_nonce\";s:10:\"7c862b3966\";s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:33:\"/woocommerce/wp-comments-post.php\";s:15:\"REDIRECT_IS_WPE\";s:1:\"1\";s:27:\"REDIRECT_WPE_CAN_WRITE_DISK\";s:1:\"0\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:6:\"IS_WPE\";s:1:\"1\";s:18:\"WPE_CAN_WRITE_DISK\";s:1:\"0\";s:9:\"HTTP_HOST\";s:19:\"demo2.woothemes.com\";s:13:\"HTTP_X_LB_KEY\";s:8:\"woodemo2\";s:13:\"HTTP_X_IS_BOT\";s:1:\"0\";s:15:\"HTTP_USER_AGENT\";s:120:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/27.0.1453.110 Safari/537.36\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:14:\"CONTENT_LENGTH\";s:3:\"350\";s:18:\"HTTP_CACHE_CONTROL\";s:9:\"max-age=0\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:11:\"HTTP_ORIGIN\";s:26:\"http://demo2.woothemes.com\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:12:\"HTTP_REFERER\";s:61:\"http://demo2.woothemes.com/woocommerce/product/happy-ninja-2/\";s:20:\"HTTP_ACCEPT_ENCODING\";s:17:\"gzip,deflate,sdch\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.8\";s:11:\"HTTP_COOKIE\";s:0:\"\";s:4:\"PATH\";s:28:\"/usr/local/bin:/usr/bin:/bin\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SERVER_NAME\";s:19:\"demo2.woothemes.com\";s:11:\"SERVER_ADDR\";s:9:\"127.0.0.1\";s:11:\"SERVER_PORT\";s:2:\"80\";s:11:\"REMOTE_ADDR\";s:13:\"24.225.103.32\";s:13:\"DOCUMENT_ROOT\";s:26:\"/nas/wp/www/sites/woodemo2\";s:12:\"SERVER_ADMIN\";s:18:\"[no address given]\";s:15:\"SCRIPT_FILENAME\";s:47:\"/nas/wp/www/sites/woodemo2/wp-comments-post.php\";s:11:\"REMOTE_PORT\";s:5:\"24514\";s:12:\"REDIRECT_URL\";s:33:\"/woocommerce/wp-comments-post.php\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.0\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:12:\"QUERY_STRING\";s:0:\"\";s:11:\"SCRIPT_NAME\";s:21:\"/wp-comments-post.php\";s:8:\"PHP_SELF\";s:21:\"/wp-comments-post.php\";s:12:\"REQUEST_TIME\";s:10:\"1370620222\";s:25:\"comment_post_modified_gmt\";s:19:\"2013-06-07 11:17:38\";}');
INSERT INTO `smrc_commentmeta` VALUES (49,14,'rating','5');
INSERT INTO `smrc_commentmeta` VALUES (50,14,'akismet_history','a:4:{s:4:\"time\";d:1370620633.951542;s:7:\"message\";s:46:\"wooteam changed the comment status to approved\";s:5:\"event\";s:15:\"status-approved\";s:4:\"user\";s:7:\"wooteam\";}');
INSERT INTO `smrc_commentmeta` VALUES (51,15,'akismet_error','1370605945');
INSERT INTO `smrc_commentmeta` VALUES (52,15,'akismet_history','a:4:{s:4:\"time\";d:1370605945.892751;s:7:\"message\";s:92:\"Akismet was unable to check this comment (response: ), will automatically retry again later.\";s:5:\"event\";s:11:\"check-error\";s:4:\"user\";s:0:\"\";}');
INSERT INTO `smrc_commentmeta` VALUES (53,15,'akismet_as_submitted','a:67:{s:15:\"comment_post_ID\";i:70;s:14:\"comment_author\";s:12:\"Cobus Bester\";s:20:\"comment_author_email\";s:18:\"bester.c@gmail.com\";s:18:\"comment_author_url\";N;s:15:\"comment_content\";s:86:\"Really happy with this print. The colors are great, and the paper quality is good too.\";s:12:\"comment_type\";s:0:\"\";s:14:\"comment_parent\";i:0;s:7:\"user_ID\";i:0;s:7:\"user_ip\";s:13:\"196.215.9.147\";s:10:\"user_agent\";s:119:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.31 (KHTML, like Gecko) Chrome/26.0.1410.65 Safari/537.31\";s:8:\"referrer\";s:60:\"http://demo2.woothemes.com/woocommerce/product/flying-ninja/\";s:4:\"blog\";s:38:\"http://demo2.woothemes.com/woocommerce\";s:9:\"blog_lang\";s:5:\"en_US\";s:12:\"blog_charset\";s:5:\"UTF-8\";s:9:\"permalink\";s:60:\"http://demo2.woothemes.com/woocommerce/product/flying-ninja/\";s:21:\"akismet_comment_nonce\";s:6:\"passed\";s:11:\"POST_author\";s:12:\"Cobus Bester\";s:10:\"POST_email\";s:18:\"bester.c@gmail.com\";s:11:\"POST_rating\";s:1:\"4\";s:12:\"POST_comment\";s:86:\"Really happy with this print. The colors are great, and the paper quality is good too.\";s:7:\"POST__n\";s:10:\"a80bd2f042\";s:21:\"POST__wp_http_referer\";s:34:\"/woocommerce/product/flying-ninja/\";s:11:\"POST_submit\";s:13:\"Submit Review\";s:20:\"POST_comment_post_ID\";s:2:\"70\";s:19:\"POST_comment_parent\";s:1:\"0\";s:26:\"POST_akismet_comment_nonce\";s:10:\"09a0ca91cf\";s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:33:\"/woocommerce/wp-comments-post.php\";s:15:\"REDIRECT_IS_WPE\";s:1:\"1\";s:27:\"REDIRECT_WPE_CAN_WRITE_DISK\";s:1:\"0\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:6:\"IS_WPE\";s:1:\"1\";s:18:\"WPE_CAN_WRITE_DISK\";s:1:\"0\";s:9:\"HTTP_HOST\";s:19:\"demo2.woothemes.com\";s:13:\"HTTP_X_LB_KEY\";s:8:\"woodemo2\";s:13:\"HTTP_X_IS_BOT\";s:1:\"0\";s:15:\"HTTP_USER_AGENT\";s:119:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.31 (KHTML, like Gecko) Chrome/26.0.1410.65 Safari/537.31\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:14:\"CONTENT_LENGTH\";s:3:\"316\";s:18:\"HTTP_CACHE_CONTROL\";s:9:\"max-age=0\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:11:\"HTTP_ORIGIN\";s:26:\"http://demo2.woothemes.com\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:12:\"HTTP_REFERER\";s:60:\"http://demo2.woothemes.com/woocommerce/product/flying-ninja/\";s:20:\"HTTP_ACCEPT_ENCODING\";s:17:\"gzip,deflate,sdch\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.8\";s:19:\"HTTP_ACCEPT_CHARSET\";s:30:\"ISO-8859-1,utf-8;q=0.7,*;q=0.3\";s:11:\"HTTP_COOKIE\";s:0:\"\";s:4:\"PATH\";s:28:\"/usr/local/bin:/usr/bin:/bin\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SERVER_NAME\";s:19:\"demo2.woothemes.com\";s:11:\"SERVER_ADDR\";s:9:\"127.0.0.1\";s:11:\"SERVER_PORT\";s:2:\"80\";s:11:\"REMOTE_ADDR\";s:13:\"196.215.9.147\";s:13:\"DOCUMENT_ROOT\";s:26:\"/nas/wp/www/sites/woodemo2\";s:12:\"SERVER_ADMIN\";s:18:\"[no address given]\";s:15:\"SCRIPT_FILENAME\";s:47:\"/nas/wp/www/sites/woodemo2/wp-comments-post.php\";s:11:\"REMOTE_PORT\";s:5:\"53744\";s:12:\"REDIRECT_URL\";s:33:\"/woocommerce/wp-comments-post.php\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.0\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:12:\"QUERY_STRING\";s:0:\"\";s:11:\"SCRIPT_NAME\";s:21:\"/wp-comments-post.php\";s:8:\"PHP_SELF\";s:21:\"/wp-comments-post.php\";s:12:\"REQUEST_TIME\";s:10:\"1370605945\";s:25:\"comment_post_modified_gmt\";s:19:\"2013-06-07 11:25:12\";}');
INSERT INTO `smrc_commentmeta` VALUES (54,15,'rating','4');
INSERT INTO `smrc_commentmeta` VALUES (55,15,'akismet_history','a:4:{s:4:\"time\";d:1370607928.424078;s:7:\"message\";s:46:\"wooteam changed the comment status to approved\";s:5:\"event\";s:15:\"status-approved\";s:4:\"user\";s:7:\"wooteam\";}');
INSERT INTO `smrc_commentmeta` VALUES (56,16,'akismet_error','1370606196');
INSERT INTO `smrc_commentmeta` VALUES (57,16,'akismet_history','a:4:{s:4:\"time\";d:1370606196.096725;s:7:\"message\";s:92:\"Akismet was unable to check this comment (response: ), will automatically retry again later.\";s:5:\"event\";s:11:\"check-error\";s:4:\"user\";s:0:\"\";}');
INSERT INTO `smrc_commentmeta` VALUES (58,16,'akismet_as_submitted','a:64:{s:15:\"comment_post_ID\";i:70;s:14:\"comment_author\";s:6:\"Andrew\";s:20:\"comment_author_email\";s:25:\"andrew@chromeorange.co.uk\";s:18:\"comment_author_url\";N;s:15:\"comment_content\";s:136:\"You only get the picture, not the person holding it, something they don\'t mention in the description, now I\'ve got to find my own person\";s:12:\"comment_type\";s:0:\"\";s:14:\"comment_parent\";i:0;s:7:\"user_ID\";i:0;s:7:\"user_ip\";s:13:\"86.19.152.140\";s:10:\"user_agent\";s:81:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:21.0) Gecko/20100101 Firefox/21.0\";s:8:\"referrer\";s:60:\"http://demo2.woothemes.com/woocommerce/product/flying-ninja/\";s:4:\"blog\";s:38:\"http://demo2.woothemes.com/woocommerce\";s:9:\"blog_lang\";s:5:\"en_US\";s:12:\"blog_charset\";s:5:\"UTF-8\";s:9:\"permalink\";s:60:\"http://demo2.woothemes.com/woocommerce/product/flying-ninja/\";s:21:\"akismet_comment_nonce\";s:6:\"passed\";s:11:\"POST_author\";s:6:\"Andrew\";s:10:\"POST_email\";s:25:\"andrew@chromeorange.co.uk\";s:11:\"POST_rating\";s:1:\"3\";s:12:\"POST_comment\";s:136:\"You only get the picture, not the person holding it, something they don\'t mention in the description, now I\'ve got to find my own person\";s:7:\"POST__n\";s:10:\"a80bd2f042\";s:21:\"POST__wp_http_referer\";s:34:\"/woocommerce/product/flying-ninja/\";s:11:\"POST_submit\";s:13:\"Submit Review\";s:20:\"POST_comment_post_ID\";s:2:\"70\";s:19:\"POST_comment_parent\";s:1:\"0\";s:26:\"POST_akismet_comment_nonce\";s:10:\"09a0ca91cf\";s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:33:\"/woocommerce/wp-comments-post.php\";s:15:\"REDIRECT_IS_WPE\";s:1:\"1\";s:27:\"REDIRECT_WPE_CAN_WRITE_DISK\";s:1:\"0\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:6:\"IS_WPE\";s:1:\"1\";s:18:\"WPE_CAN_WRITE_DISK\";s:1:\"0\";s:9:\"HTTP_HOST\";s:19:\"demo2.woothemes.com\";s:13:\"HTTP_X_LB_KEY\";s:8:\"woodemo2\";s:13:\"HTTP_X_IS_BOT\";s:1:\"0\";s:15:\"HTTP_USER_AGENT\";s:81:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:21.0) Gecko/20100101 Firefox/21.0\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:12:\"HTTP_REFERER\";s:60:\"http://demo2.woothemes.com/woocommerce/product/flying-ninja/\";s:11:\"HTTP_COOKIE\";s:0:\"\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:14:\"CONTENT_LENGTH\";s:3:\"375\";s:4:\"PATH\";s:28:\"/usr/local/bin:/usr/bin:/bin\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SERVER_NAME\";s:19:\"demo2.woothemes.com\";s:11:\"SERVER_ADDR\";s:9:\"127.0.0.1\";s:11:\"SERVER_PORT\";s:2:\"80\";s:11:\"REMOTE_ADDR\";s:13:\"86.19.152.140\";s:13:\"DOCUMENT_ROOT\";s:26:\"/nas/wp/www/sites/woodemo2\";s:12:\"SERVER_ADMIN\";s:18:\"[no address given]\";s:15:\"SCRIPT_FILENAME\";s:47:\"/nas/wp/www/sites/woodemo2/wp-comments-post.php\";s:11:\"REMOTE_PORT\";s:5:\"56980\";s:12:\"REDIRECT_URL\";s:33:\"/woocommerce/wp-comments-post.php\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.0\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:12:\"QUERY_STRING\";s:0:\"\";s:11:\"SCRIPT_NAME\";s:21:\"/wp-comments-post.php\";s:8:\"PHP_SELF\";s:21:\"/wp-comments-post.php\";s:12:\"REQUEST_TIME\";s:10:\"1370606196\";s:25:\"comment_post_modified_gmt\";s:19:\"2013-06-07 11:25:12\";}');
INSERT INTO `smrc_commentmeta` VALUES (59,16,'rating','3');
INSERT INTO `smrc_commentmeta` VALUES (60,16,'akismet_history','a:4:{s:4:\"time\";d:1370607938.782277;s:7:\"message\";s:46:\"wooteam changed the comment status to approved\";s:5:\"event\";s:15:\"status-approved\";s:4:\"user\";s:7:\"wooteam\";}');
INSERT INTO `smrc_commentmeta` VALUES (61,17,'akismet_error','1370607565');
INSERT INTO `smrc_commentmeta` VALUES (62,17,'akismet_history','a:4:{s:4:\"time\";d:1370607565.857836;s:7:\"message\";s:92:\"Akismet was unable to check this comment (response: ), will automatically retry again later.\";s:5:\"event\";s:11:\"check-error\";s:4:\"user\";s:0:\"\";}');
INSERT INTO `smrc_commentmeta` VALUES (63,17,'akismet_as_submitted','a:66:{s:15:\"comment_post_ID\";i:70;s:14:\"comment_author\";s:11:\"Coen Jacobs\";s:20:\"comment_author_email\";s:18:\"coen@woothemes.com\";s:18:\"comment_author_url\";N;s:15:\"comment_content\";s:60:\"This is my favorite poster. In fact, I\'ve ordered 5 of them!\";s:12:\"comment_type\";s:0:\"\";s:14:\"comment_parent\";i:0;s:7:\"user_ID\";i:0;s:7:\"user_ip\";s:12:\"84.39.28.254\";s:10:\"user_agent\";s:120:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/27.0.1453.110 Safari/537.36\";s:8:\"referrer\";s:60:\"http://demo2.woothemes.com/woocommerce/product/flying-ninja/\";s:4:\"blog\";s:38:\"http://demo2.woothemes.com/woocommerce\";s:9:\"blog_lang\";s:5:\"en_US\";s:12:\"blog_charset\";s:5:\"UTF-8\";s:9:\"permalink\";s:60:\"http://demo2.woothemes.com/woocommerce/product/flying-ninja/\";s:21:\"akismet_comment_nonce\";s:6:\"passed\";s:11:\"POST_author\";s:11:\"Coen Jacobs\";s:10:\"POST_email\";s:18:\"coen@woothemes.com\";s:11:\"POST_rating\";s:1:\"5\";s:12:\"POST_comment\";s:60:\"This is my favorite poster. In fact, I\'ve ordered 5 of them!\";s:7:\"POST__n\";s:10:\"2145d644a3\";s:21:\"POST__wp_http_referer\";s:34:\"/woocommerce/product/flying-ninja/\";s:11:\"POST_submit\";s:13:\"Submit Review\";s:20:\"POST_comment_post_ID\";s:2:\"70\";s:19:\"POST_comment_parent\";s:1:\"0\";s:26:\"POST_akismet_comment_nonce\";s:10:\"a0ccbdfa0d\";s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:33:\"/woocommerce/wp-comments-post.php\";s:15:\"REDIRECT_IS_WPE\";s:1:\"1\";s:27:\"REDIRECT_WPE_CAN_WRITE_DISK\";s:1:\"0\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:6:\"IS_WPE\";s:1:\"1\";s:18:\"WPE_CAN_WRITE_DISK\";s:1:\"0\";s:9:\"HTTP_HOST\";s:19:\"demo2.woothemes.com\";s:13:\"HTTP_X_LB_KEY\";s:8:\"woodemo2\";s:13:\"HTTP_X_IS_BOT\";s:1:\"0\";s:15:\"HTTP_USER_AGENT\";s:120:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/27.0.1453.110 Safari/537.36\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:14:\"CONTENT_LENGTH\";s:3:\"293\";s:18:\"HTTP_CACHE_CONTROL\";s:9:\"max-age=0\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:11:\"HTTP_ORIGIN\";s:26:\"http://demo2.woothemes.com\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:12:\"HTTP_REFERER\";s:60:\"http://demo2.woothemes.com/woocommerce/product/flying-ninja/\";s:20:\"HTTP_ACCEPT_ENCODING\";s:17:\"gzip,deflate,sdch\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:23:\"en-US,en;q=0.8,nl;q=0.6\";s:11:\"HTTP_COOKIE\";s:0:\"\";s:4:\"PATH\";s:28:\"/usr/local/bin:/usr/bin:/bin\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SERVER_NAME\";s:19:\"demo2.woothemes.com\";s:11:\"SERVER_ADDR\";s:9:\"127.0.0.1\";s:11:\"SERVER_PORT\";s:2:\"80\";s:11:\"REMOTE_ADDR\";s:12:\"84.39.28.254\";s:13:\"DOCUMENT_ROOT\";s:26:\"/nas/wp/www/sites/woodemo2\";s:12:\"SERVER_ADMIN\";s:18:\"[no address given]\";s:15:\"SCRIPT_FILENAME\";s:47:\"/nas/wp/www/sites/woodemo2/wp-comments-post.php\";s:11:\"REMOTE_PORT\";s:4:\"8391\";s:12:\"REDIRECT_URL\";s:33:\"/woocommerce/wp-comments-post.php\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.0\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:12:\"QUERY_STRING\";s:0:\"\";s:11:\"SCRIPT_NAME\";s:21:\"/wp-comments-post.php\";s:8:\"PHP_SELF\";s:21:\"/wp-comments-post.php\";s:12:\"REQUEST_TIME\";s:10:\"1370607565\";s:25:\"comment_post_modified_gmt\";s:19:\"2013-06-07 11:25:12\";}');
INSERT INTO `smrc_commentmeta` VALUES (64,17,'rating','5');
INSERT INTO `smrc_commentmeta` VALUES (65,17,'akismet_history','a:4:{s:4:\"time\";d:1370607952.254287;s:7:\"message\";s:46:\"wooteam changed the comment status to approved\";s:5:\"event\";s:15:\"status-approved\";s:4:\"user\";s:7:\"wooteam\";}');
INSERT INTO `smrc_commentmeta` VALUES (66,18,'akismet_error','1370609989');
INSERT INTO `smrc_commentmeta` VALUES (67,18,'akismet_history','a:4:{s:4:\"time\";d:1370609989.935115;s:7:\"message\";s:92:\"Akismet was unable to check this comment (response: ), will automatically retry again later.\";s:5:\"event\";s:11:\"check-error\";s:4:\"user\";s:0:\"\";}');
INSERT INTO `smrc_commentmeta` VALUES (68,18,'akismet_as_submitted','a:64:{s:15:\"comment_post_ID\";i:70;s:14:\"comment_author\";s:6:\"Stuart\";s:20:\"comment_author_email\";s:20:\"stuart@woothemes.com\";s:18:\"comment_author_url\";N;s:15:\"comment_content\";s:79:\"This is a fantastic quality print and is happily hanging framed on my wall now.\";s:12:\"comment_type\";s:0:\"\";s:14:\"comment_parent\";i:0;s:7:\"user_ID\";i:0;s:7:\"user_ip\";s:13:\"82.32.109.140\";s:10:\"user_agent\";s:72:\"Mozilla/5.0 (Windows NT 6.1; WOW64; rv:21.0) Gecko/20100101 Firefox/21.0\";s:8:\"referrer\";s:60:\"http://demo2.woothemes.com/woocommerce/product/flying-ninja/\";s:4:\"blog\";s:38:\"http://demo2.woothemes.com/woocommerce\";s:9:\"blog_lang\";s:5:\"en_US\";s:12:\"blog_charset\";s:5:\"UTF-8\";s:9:\"permalink\";s:60:\"http://demo2.woothemes.com/woocommerce/product/flying-ninja/\";s:21:\"akismet_comment_nonce\";s:6:\"passed\";s:11:\"POST_author\";s:6:\"Stuart\";s:10:\"POST_email\";s:20:\"stuart@woothemes.com\";s:11:\"POST_rating\";s:1:\"4\";s:12:\"POST_comment\";s:79:\"This is a fantastic quality print and is happily hanging framed on my wall now.\";s:7:\"POST__n\";s:10:\"2145d644a3\";s:21:\"POST__wp_http_referer\";s:34:\"/woocommerce/product/flying-ninja/\";s:11:\"POST_submit\";s:13:\"Submit Review\";s:20:\"POST_comment_post_ID\";s:2:\"70\";s:19:\"POST_comment_parent\";s:1:\"0\";s:26:\"POST_akismet_comment_nonce\";s:10:\"a0ccbdfa0d\";s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:33:\"/woocommerce/wp-comments-post.php\";s:15:\"REDIRECT_IS_WPE\";s:1:\"1\";s:27:\"REDIRECT_WPE_CAN_WRITE_DISK\";s:1:\"0\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:6:\"IS_WPE\";s:1:\"1\";s:18:\"WPE_CAN_WRITE_DISK\";s:1:\"0\";s:9:\"HTTP_HOST\";s:19:\"demo2.woothemes.com\";s:13:\"HTTP_X_LB_KEY\";s:8:\"woodemo2\";s:13:\"HTTP_X_IS_BOT\";s:1:\"0\";s:15:\"HTTP_USER_AGENT\";s:72:\"Mozilla/5.0 (Windows NT 6.1; WOW64; rv:21.0) Gecko/20100101 Firefox/21.0\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:12:\"HTTP_REFERER\";s:60:\"http://demo2.woothemes.com/woocommerce/product/flying-ninja/\";s:11:\"HTTP_COOKIE\";s:0:\"\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:14:\"CONTENT_LENGTH\";s:3:\"303\";s:4:\"PATH\";s:28:\"/usr/local/bin:/usr/bin:/bin\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SERVER_NAME\";s:19:\"demo2.woothemes.com\";s:11:\"SERVER_ADDR\";s:9:\"127.0.0.1\";s:11:\"SERVER_PORT\";s:2:\"80\";s:11:\"REMOTE_ADDR\";s:13:\"82.32.109.140\";s:13:\"DOCUMENT_ROOT\";s:26:\"/nas/wp/www/sites/woodemo2\";s:12:\"SERVER_ADMIN\";s:18:\"[no address given]\";s:15:\"SCRIPT_FILENAME\";s:47:\"/nas/wp/www/sites/woodemo2/wp-comments-post.php\";s:11:\"REMOTE_PORT\";s:5:\"39257\";s:12:\"REDIRECT_URL\";s:33:\"/woocommerce/wp-comments-post.php\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.0\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:12:\"QUERY_STRING\";s:0:\"\";s:11:\"SCRIPT_NAME\";s:21:\"/wp-comments-post.php\";s:8:\"PHP_SELF\";s:21:\"/wp-comments-post.php\";s:12:\"REQUEST_TIME\";s:10:\"1370609989\";s:25:\"comment_post_modified_gmt\";s:19:\"2013-06-07 11:25:12\";}');
INSERT INTO `smrc_commentmeta` VALUES (69,18,'rating','4');
INSERT INTO `smrc_commentmeta` VALUES (70,18,'akismet_history','a:4:{s:4:\"time\";d:1370611523.616741;s:7:\"message\";s:46:\"wooteam changed the comment status to approved\";s:5:\"event\";s:15:\"status-approved\";s:4:\"user\";s:7:\"wooteam\";}');
INSERT INTO `smrc_commentmeta` VALUES (71,19,'akismet_error','1370606673');
INSERT INTO `smrc_commentmeta` VALUES (72,19,'akismet_history','a:4:{s:4:\"time\";d:1370606673.593414;s:7:\"message\";s:92:\"Akismet was unable to check this comment (response: ), will automatically retry again later.\";s:5:\"event\";s:11:\"check-error\";s:4:\"user\";s:0:\"\";}');
INSERT INTO `smrc_commentmeta` VALUES (73,19,'akismet_as_submitted','a:66:{s:15:\"comment_post_ID\";i:60;s:14:\"comment_author\";s:6:\"Magnus\";s:20:\"comment_author_email\";s:20:\"magnus@woothemes.com\";s:18:\"comment_author_url\";N;s:15:\"comment_content\";s:34:\"I like the logo but not the color.\";s:12:\"comment_type\";s:0:\"\";s:14:\"comment_parent\";i:0;s:7:\"user_ID\";i:0;s:7:\"user_ip\";s:13:\"79.161.106.35\";s:10:\"user_agent\";s:119:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/27.0.1453.93 Safari/537.36\";s:8:\"referrer\";s:58:\"http://demo2.woothemes.com/woocommerce/product/woo-logo-2/\";s:4:\"blog\";s:38:\"http://demo2.woothemes.com/woocommerce\";s:9:\"blog_lang\";s:5:\"en_US\";s:12:\"blog_charset\";s:5:\"UTF-8\";s:9:\"permalink\";s:58:\"http://demo2.woothemes.com/woocommerce/product/woo-logo-2/\";s:21:\"akismet_comment_nonce\";s:6:\"passed\";s:11:\"POST_author\";s:6:\"Magnus\";s:10:\"POST_email\";s:20:\"magnus@woothemes.com\";s:11:\"POST_rating\";s:1:\"3\";s:12:\"POST_comment\";s:35:\"I like the logo but not the color. \";s:7:\"POST__n\";s:10:\"2145d644a3\";s:21:\"POST__wp_http_referer\";s:32:\"/woocommerce/product/woo-logo-2/\";s:11:\"POST_submit\";s:13:\"Submit Review\";s:20:\"POST_comment_post_ID\";s:2:\"60\";s:19:\"POST_comment_parent\";s:1:\"0\";s:26:\"POST_akismet_comment_nonce\";s:10:\"71dc771f00\";s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:33:\"/woocommerce/wp-comments-post.php\";s:15:\"REDIRECT_IS_WPE\";s:1:\"1\";s:27:\"REDIRECT_WPE_CAN_WRITE_DISK\";s:1:\"0\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:6:\"IS_WPE\";s:1:\"1\";s:18:\"WPE_CAN_WRITE_DISK\";s:1:\"0\";s:9:\"HTTP_HOST\";s:19:\"demo2.woothemes.com\";s:13:\"HTTP_X_LB_KEY\";s:8:\"woodemo2\";s:13:\"HTTP_X_IS_BOT\";s:1:\"0\";s:15:\"HTTP_USER_AGENT\";s:119:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/27.0.1453.93 Safari/537.36\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:14:\"CONTENT_LENGTH\";s:3:\"257\";s:18:\"HTTP_CACHE_CONTROL\";s:9:\"max-age=0\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:11:\"HTTP_ORIGIN\";s:26:\"http://demo2.woothemes.com\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:12:\"HTTP_REFERER\";s:58:\"http://demo2.woothemes.com/woocommerce/product/woo-logo-2/\";s:20:\"HTTP_ACCEPT_ENCODING\";s:17:\"gzip,deflate,sdch\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.8\";s:11:\"HTTP_COOKIE\";s:0:\"\";s:4:\"PATH\";s:28:\"/usr/local/bin:/usr/bin:/bin\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SERVER_NAME\";s:19:\"demo2.woothemes.com\";s:11:\"SERVER_ADDR\";s:9:\"127.0.0.1\";s:11:\"SERVER_PORT\";s:2:\"80\";s:11:\"REMOTE_ADDR\";s:13:\"79.161.106.35\";s:13:\"DOCUMENT_ROOT\";s:26:\"/nas/wp/www/sites/woodemo2\";s:12:\"SERVER_ADMIN\";s:18:\"[no address given]\";s:15:\"SCRIPT_FILENAME\";s:47:\"/nas/wp/www/sites/woodemo2/wp-comments-post.php\";s:11:\"REMOTE_PORT\";s:5:\"62521\";s:12:\"REDIRECT_URL\";s:33:\"/woocommerce/wp-comments-post.php\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.0\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:12:\"QUERY_STRING\";s:0:\"\";s:11:\"SCRIPT_NAME\";s:21:\"/wp-comments-post.php\";s:8:\"PHP_SELF\";s:21:\"/wp-comments-post.php\";s:12:\"REQUEST_TIME\";s:10:\"1370606673\";s:25:\"comment_post_modified_gmt\";s:19:\"2013-06-07 11:18:08\";}');
INSERT INTO `smrc_commentmeta` VALUES (74,19,'rating','3');
INSERT INTO `smrc_commentmeta` VALUES (75,19,'akismet_history','a:4:{s:4:\"time\";d:1370607949.191369;s:7:\"message\";s:46:\"wooteam changed the comment status to approved\";s:5:\"event\";s:15:\"status-approved\";s:4:\"user\";s:7:\"wooteam\";}');
INSERT INTO `smrc_commentmeta` VALUES (76,20,'akismet_error','1370620465');
INSERT INTO `smrc_commentmeta` VALUES (77,20,'akismet_history','a:4:{s:4:\"time\";d:1370620465.893468;s:7:\"message\";s:92:\"Akismet was unable to check this comment (response: ), will automatically retry again later.\";s:5:\"event\";s:11:\"check-error\";s:4:\"user\";s:0:\"\";}');
INSERT INTO `smrc_commentmeta` VALUES (78,20,'akismet_as_submitted','a:66:{s:15:\"comment_post_ID\";i:60;s:14:\"comment_author\";s:5:\"Maria\";s:20:\"comment_author_email\";s:19:\"maria@woothemes.com\";s:18:\"comment_author_url\";N;s:15:\"comment_content\";s:29:\"Three letters, one word: WOO!\";s:12:\"comment_type\";s:0:\"\";s:14:\"comment_parent\";i:0;s:7:\"user_ID\";i:0;s:7:\"user_ip\";s:13:\"24.225.103.32\";s:10:\"user_agent\";s:120:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/27.0.1453.110 Safari/537.36\";s:8:\"referrer\";s:58:\"http://demo2.woothemes.com/woocommerce/product/woo-logo-2/\";s:4:\"blog\";s:38:\"http://demo2.woothemes.com/woocommerce\";s:9:\"blog_lang\";s:5:\"en_US\";s:12:\"blog_charset\";s:5:\"UTF-8\";s:9:\"permalink\";s:58:\"http://demo2.woothemes.com/woocommerce/product/woo-logo-2/\";s:21:\"akismet_comment_nonce\";s:6:\"passed\";s:11:\"POST_author\";s:5:\"Maria\";s:10:\"POST_email\";s:19:\"maria@woothemes.com\";s:11:\"POST_rating\";s:1:\"5\";s:12:\"POST_comment\";s:29:\"Three letters, one word: WOO!\";s:7:\"POST__n\";s:10:\"2145d644a3\";s:21:\"POST__wp_http_referer\";s:32:\"/woocommerce/product/woo-logo-2/\";s:11:\"POST_submit\";s:13:\"Submit Review\";s:20:\"POST_comment_post_ID\";s:2:\"60\";s:19:\"POST_comment_parent\";s:1:\"0\";s:26:\"POST_akismet_comment_nonce\";s:10:\"71dc771f00\";s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:33:\"/woocommerce/wp-comments-post.php\";s:15:\"REDIRECT_IS_WPE\";s:1:\"1\";s:27:\"REDIRECT_WPE_CAN_WRITE_DISK\";s:1:\"0\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:6:\"IS_WPE\";s:1:\"1\";s:18:\"WPE_CAN_WRITE_DISK\";s:1:\"0\";s:9:\"HTTP_HOST\";s:19:\"demo2.woothemes.com\";s:13:\"HTTP_X_LB_KEY\";s:8:\"woodemo2\";s:13:\"HTTP_X_IS_BOT\";s:1:\"0\";s:15:\"HTTP_USER_AGENT\";s:120:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/27.0.1453.110 Safari/537.36\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:14:\"CONTENT_LENGTH\";s:3:\"255\";s:18:\"HTTP_CACHE_CONTROL\";s:9:\"max-age=0\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:11:\"HTTP_ORIGIN\";s:26:\"http://demo2.woothemes.com\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:12:\"HTTP_REFERER\";s:58:\"http://demo2.woothemes.com/woocommerce/product/woo-logo-2/\";s:20:\"HTTP_ACCEPT_ENCODING\";s:17:\"gzip,deflate,sdch\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.8\";s:11:\"HTTP_COOKIE\";s:0:\"\";s:4:\"PATH\";s:28:\"/usr/local/bin:/usr/bin:/bin\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SERVER_NAME\";s:19:\"demo2.woothemes.com\";s:11:\"SERVER_ADDR\";s:9:\"127.0.0.1\";s:11:\"SERVER_PORT\";s:2:\"80\";s:11:\"REMOTE_ADDR\";s:13:\"24.225.103.32\";s:13:\"DOCUMENT_ROOT\";s:26:\"/nas/wp/www/sites/woodemo2\";s:12:\"SERVER_ADMIN\";s:18:\"[no address given]\";s:15:\"SCRIPT_FILENAME\";s:47:\"/nas/wp/www/sites/woodemo2/wp-comments-post.php\";s:11:\"REMOTE_PORT\";s:5:\"27597\";s:12:\"REDIRECT_URL\";s:33:\"/woocommerce/wp-comments-post.php\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.0\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:12:\"QUERY_STRING\";s:0:\"\";s:11:\"SCRIPT_NAME\";s:21:\"/wp-comments-post.php\";s:8:\"PHP_SELF\";s:21:\"/wp-comments-post.php\";s:12:\"REQUEST_TIME\";s:10:\"1370620465\";s:25:\"comment_post_modified_gmt\";s:19:\"2013-06-07 11:18:08\";}');
INSERT INTO `smrc_commentmeta` VALUES (79,20,'rating','5');
INSERT INTO `smrc_commentmeta` VALUES (80,20,'akismet_history','a:4:{s:4:\"time\";d:1370620633.927926;s:7:\"message\";s:46:\"wooteam changed the comment status to approved\";s:5:\"event\";s:15:\"status-approved\";s:4:\"user\";s:7:\"wooteam\";}');
INSERT INTO `smrc_commentmeta` VALUES (81,21,'akismet_error','1370607293');
INSERT INTO `smrc_commentmeta` VALUES (82,21,'akismet_history','a:4:{s:4:\"time\";d:1370607293.934872;s:7:\"message\";s:92:\"Akismet was unable to check this comment (response: ), will automatically retry again later.\";s:5:\"event\";s:11:\"check-error\";s:4:\"user\";s:7:\"student\";}');
INSERT INTO `smrc_commentmeta` VALUES (83,21,'akismet_as_submitted','a:65:{s:15:\"comment_post_ID\";i:56;s:14:\"comment_author\";s:7:\"student\";s:20:\"comment_author_email\";s:21:\"student@woothemes.com\";s:18:\"comment_author_url\";s:0:\"\";s:15:\"comment_content\";s:27:\"Perfect Hoodie for a Ninja!\";s:12:\"comment_type\";s:0:\"\";s:14:\"comment_parent\";i:0;s:7:\"user_ID\";i:600;s:7:\"user_ip\";s:13:\"196.215.9.147\";s:10:\"user_agent\";s:119:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/27.0.1453.93 Safari/537.36\";s:8:\"referrer\";s:66:\"http://demo2.woothemes.com/woocommerce/product/ninja-silhouette-2/\";s:4:\"blog\";s:38:\"http://demo2.woothemes.com/woocommerce\";s:9:\"blog_lang\";s:5:\"en_US\";s:12:\"blog_charset\";s:5:\"UTF-8\";s:9:\"permalink\";s:66:\"http://demo2.woothemes.com/woocommerce/product/ninja-silhouette-2/\";s:9:\"user_role\";s:0:\"\";s:21:\"akismet_comment_nonce\";s:6:\"passed\";s:11:\"POST_rating\";s:1:\"5\";s:12:\"POST_comment\";s:27:\"Perfect Hoodie for a Ninja!\";s:7:\"POST__n\";s:10:\"b7bb36a5b7\";s:21:\"POST__wp_http_referer\";s:40:\"/woocommerce/product/ninja-silhouette-2/\";s:11:\"POST_submit\";s:13:\"Submit Review\";s:20:\"POST_comment_post_ID\";s:2:\"56\";s:19:\"POST_comment_parent\";s:1:\"0\";s:26:\"POST_akismet_comment_nonce\";s:10:\"83a5efa213\";s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:33:\"/woocommerce/wp-comments-post.php\";s:15:\"REDIRECT_IS_WPE\";s:1:\"1\";s:27:\"REDIRECT_WPE_CAN_WRITE_DISK\";s:1:\"0\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:6:\"IS_WPE\";s:1:\"1\";s:18:\"WPE_CAN_WRITE_DISK\";s:1:\"0\";s:9:\"HTTP_HOST\";s:19:\"demo2.woothemes.com\";s:13:\"HTTP_X_LB_KEY\";s:8:\"woodemo2\";s:13:\"HTTP_X_IS_BOT\";s:1:\"0\";s:15:\"HTTP_USER_AGENT\";s:119:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/27.0.1453.93 Safari/537.36\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:14:\"CONTENT_LENGTH\";s:3:\"216\";s:18:\"HTTP_CACHE_CONTROL\";s:9:\"max-age=0\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:11:\"HTTP_ORIGIN\";s:26:\"http://demo2.woothemes.com\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:12:\"HTTP_REFERER\";s:66:\"http://demo2.woothemes.com/woocommerce/product/ninja-silhouette-2/\";s:20:\"HTTP_ACCEPT_ENCODING\";s:17:\"gzip,deflate,sdch\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.8\";s:11:\"HTTP_COOKIE\";s:0:\"\";s:4:\"PATH\";s:28:\"/usr/local/bin:/usr/bin:/bin\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SERVER_NAME\";s:19:\"demo2.woothemes.com\";s:11:\"SERVER_ADDR\";s:9:\"127.0.0.1\";s:11:\"SERVER_PORT\";s:2:\"80\";s:11:\"REMOTE_ADDR\";s:13:\"196.215.9.147\";s:13:\"DOCUMENT_ROOT\";s:26:\"/nas/wp/www/sites/woodemo2\";s:12:\"SERVER_ADMIN\";s:18:\"[no address given]\";s:15:\"SCRIPT_FILENAME\";s:47:\"/nas/wp/www/sites/woodemo2/wp-comments-post.php\";s:11:\"REMOTE_PORT\";s:4:\"4903\";s:12:\"REDIRECT_URL\";s:33:\"/woocommerce/wp-comments-post.php\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.0\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:12:\"QUERY_STRING\";s:0:\"\";s:11:\"SCRIPT_NAME\";s:21:\"/wp-comments-post.php\";s:8:\"PHP_SELF\";s:21:\"/wp-comments-post.php\";s:12:\"REQUEST_TIME\";s:10:\"1370607293\";s:25:\"comment_post_modified_gmt\";s:19:\"2013-06-07 11:18:23\";}');
INSERT INTO `smrc_commentmeta` VALUES (84,21,'rating','5');
INSERT INTO `smrc_commentmeta` VALUES (85,21,'akismet_history','a:4:{s:4:\"time\";d:1370607950.284208;s:7:\"message\";s:46:\"wooteam changed the comment status to approved\";s:5:\"event\";s:15:\"status-approved\";s:4:\"user\";s:7:\"wooteam\";}');
INSERT INTO `smrc_commentmeta` VALUES (86,22,'akismet_error','1370607656');
INSERT INTO `smrc_commentmeta` VALUES (87,22,'akismet_history','a:4:{s:4:\"time\";d:1370607656.262073;s:7:\"message\";s:92:\"Akismet was unable to check this comment (response: ), will automatically retry again later.\";s:5:\"event\";s:11:\"check-error\";s:4:\"user\";s:0:\"\";}');
INSERT INTO `smrc_commentmeta` VALUES (88,22,'akismet_as_submitted','a:66:{s:15:\"comment_post_ID\";i:56;s:14:\"comment_author\";s:11:\"Coen Jacobs\";s:20:\"comment_author_email\";s:18:\"coen@woothemes.com\";s:18:\"comment_author_url\";N;s:15:\"comment_content\";s:56:\"I have lots of hoodies, but none is as cool as this one!\";s:12:\"comment_type\";s:0:\"\";s:14:\"comment_parent\";i:0;s:7:\"user_ID\";i:0;s:7:\"user_ip\";s:12:\"84.39.28.254\";s:10:\"user_agent\";s:120:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/27.0.1453.110 Safari/537.36\";s:8:\"referrer\";s:66:\"http://demo2.woothemes.com/woocommerce/product/ninja-silhouette-2/\";s:4:\"blog\";s:38:\"http://demo2.woothemes.com/woocommerce\";s:9:\"blog_lang\";s:5:\"en_US\";s:12:\"blog_charset\";s:5:\"UTF-8\";s:9:\"permalink\";s:66:\"http://demo2.woothemes.com/woocommerce/product/ninja-silhouette-2/\";s:21:\"akismet_comment_nonce\";s:6:\"passed\";s:11:\"POST_author\";s:11:\"Coen Jacobs\";s:10:\"POST_email\";s:18:\"coen@woothemes.com\";s:11:\"POST_rating\";s:1:\"5\";s:12:\"POST_comment\";s:56:\"I have lots of hoodies, but none is as cool as this one!\";s:7:\"POST__n\";s:10:\"2145d644a3\";s:21:\"POST__wp_http_referer\";s:40:\"/woocommerce/product/ninja-silhouette-2/\";s:11:\"POST_submit\";s:13:\"Submit Review\";s:20:\"POST_comment_post_ID\";s:2:\"56\";s:19:\"POST_comment_parent\";s:1:\"0\";s:26:\"POST_akismet_comment_nonce\";s:10:\"96525c59f8\";s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:33:\"/woocommerce/wp-comments-post.php\";s:15:\"REDIRECT_IS_WPE\";s:1:\"1\";s:27:\"REDIRECT_WPE_CAN_WRITE_DISK\";s:1:\"0\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:6:\"IS_WPE\";s:1:\"1\";s:18:\"WPE_CAN_WRITE_DISK\";s:1:\"0\";s:9:\"HTTP_HOST\";s:19:\"demo2.woothemes.com\";s:13:\"HTTP_X_LB_KEY\";s:8:\"woodemo2\";s:13:\"HTTP_X_IS_BOT\";s:1:\"0\";s:15:\"HTTP_USER_AGENT\";s:120:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/27.0.1453.110 Safari/537.36\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:14:\"CONTENT_LENGTH\";s:3:\"293\";s:18:\"HTTP_CACHE_CONTROL\";s:9:\"max-age=0\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:11:\"HTTP_ORIGIN\";s:26:\"http://demo2.woothemes.com\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:12:\"HTTP_REFERER\";s:66:\"http://demo2.woothemes.com/woocommerce/product/ninja-silhouette-2/\";s:20:\"HTTP_ACCEPT_ENCODING\";s:17:\"gzip,deflate,sdch\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:23:\"en-US,en;q=0.8,nl;q=0.6\";s:11:\"HTTP_COOKIE\";s:0:\"\";s:4:\"PATH\";s:28:\"/usr/local/bin:/usr/bin:/bin\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SERVER_NAME\";s:19:\"demo2.woothemes.com\";s:11:\"SERVER_ADDR\";s:9:\"127.0.0.1\";s:11:\"SERVER_PORT\";s:2:\"80\";s:11:\"REMOTE_ADDR\";s:12:\"84.39.28.254\";s:13:\"DOCUMENT_ROOT\";s:26:\"/nas/wp/www/sites/woodemo2\";s:12:\"SERVER_ADMIN\";s:18:\"[no address given]\";s:15:\"SCRIPT_FILENAME\";s:47:\"/nas/wp/www/sites/woodemo2/wp-comments-post.php\";s:11:\"REMOTE_PORT\";s:4:\"9614\";s:12:\"REDIRECT_URL\";s:33:\"/woocommerce/wp-comments-post.php\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.0\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:12:\"QUERY_STRING\";s:0:\"\";s:11:\"SCRIPT_NAME\";s:21:\"/wp-comments-post.php\";s:8:\"PHP_SELF\";s:21:\"/wp-comments-post.php\";s:12:\"REQUEST_TIME\";s:10:\"1370607656\";s:25:\"comment_post_modified_gmt\";s:19:\"2013-06-07 11:18:23\";}');
INSERT INTO `smrc_commentmeta` VALUES (89,22,'rating','5');
INSERT INTO `smrc_commentmeta` VALUES (90,22,'akismet_history','a:4:{s:4:\"time\";d:1370607953.41726;s:7:\"message\";s:46:\"wooteam changed the comment status to approved\";s:5:\"event\";s:15:\"status-approved\";s:4:\"user\";s:7:\"wooteam\";}');
INSERT INTO `smrc_commentmeta` VALUES (91,23,'akismet_error','1370608902');
INSERT INTO `smrc_commentmeta` VALUES (92,23,'akismet_history','a:4:{s:4:\"time\";d:1370608902.768413;s:7:\"message\";s:92:\"Akismet was unable to check this comment (response: ), will automatically retry again later.\";s:5:\"event\";s:11:\"check-error\";s:4:\"user\";s:0:\"\";}');
INSERT INTO `smrc_commentmeta` VALUES (93,23,'akismet_as_submitted','a:66:{s:15:\"comment_post_ID\";i:56;s:14:\"comment_author\";s:3:\"Dan\";s:20:\"comment_author_email\";s:17:\"dan@woothemes.com\";s:18:\"comment_author_url\";N;s:15:\"comment_content\";s:97:\"I love hoodies, and ninjas, so what could be better than a ninja hoodie? Not much, if you ask me!\";s:12:\"comment_type\";s:0:\"\";s:14:\"comment_parent\";i:0;s:7:\"user_ID\";i:0;s:7:\"user_ip\";s:13:\"188.221.1.167\";s:10:\"user_agent\";s:120:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/27.0.1453.110 Safari/537.36\";s:8:\"referrer\";s:66:\"http://demo2.woothemes.com/woocommerce/product/ninja-silhouette-2/\";s:4:\"blog\";s:38:\"http://demo2.woothemes.com/woocommerce\";s:9:\"blog_lang\";s:5:\"en_US\";s:12:\"blog_charset\";s:5:\"UTF-8\";s:9:\"permalink\";s:66:\"http://demo2.woothemes.com/woocommerce/product/ninja-silhouette-2/\";s:21:\"akismet_comment_nonce\";s:6:\"passed\";s:11:\"POST_author\";s:3:\"Dan\";s:10:\"POST_email\";s:17:\"dan@woothemes.com\";s:11:\"POST_rating\";s:1:\"4\";s:12:\"POST_comment\";s:97:\"I love hoodies, and ninjas, so what could be better than a ninja hoodie? Not much, if you ask me!\";s:7:\"POST__n\";s:10:\"2145d644a3\";s:21:\"POST__wp_http_referer\";s:40:\"/woocommerce/product/ninja-silhouette-2/\";s:11:\"POST_submit\";s:13:\"Submit Review\";s:20:\"POST_comment_post_ID\";s:2:\"56\";s:19:\"POST_comment_parent\";s:1:\"0\";s:26:\"POST_akismet_comment_nonce\";s:10:\"96525c59f8\";s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:33:\"/woocommerce/wp-comments-post.php\";s:15:\"REDIRECT_IS_WPE\";s:1:\"1\";s:27:\"REDIRECT_WPE_CAN_WRITE_DISK\";s:1:\"0\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:6:\"IS_WPE\";s:1:\"1\";s:18:\"WPE_CAN_WRITE_DISK\";s:1:\"0\";s:9:\"HTTP_HOST\";s:19:\"demo2.woothemes.com\";s:13:\"HTTP_X_LB_KEY\";s:8:\"woodemo2\";s:13:\"HTTP_X_IS_BOT\";s:1:\"0\";s:15:\"HTTP_USER_AGENT\";s:120:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/27.0.1453.110 Safari/537.36\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:14:\"CONTENT_LENGTH\";s:3:\"331\";s:18:\"HTTP_CACHE_CONTROL\";s:9:\"max-age=0\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:11:\"HTTP_ORIGIN\";s:26:\"http://demo2.woothemes.com\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:12:\"HTTP_REFERER\";s:66:\"http://demo2.woothemes.com/woocommerce/product/ninja-silhouette-2/\";s:20:\"HTTP_ACCEPT_ENCODING\";s:17:\"gzip,deflate,sdch\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.8\";s:11:\"HTTP_COOKIE\";s:0:\"\";s:4:\"PATH\";s:28:\"/usr/local/bin:/usr/bin:/bin\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SERVER_NAME\";s:19:\"demo2.woothemes.com\";s:11:\"SERVER_ADDR\";s:9:\"127.0.0.1\";s:11:\"SERVER_PORT\";s:2:\"80\";s:11:\"REMOTE_ADDR\";s:13:\"188.221.1.167\";s:13:\"DOCUMENT_ROOT\";s:26:\"/nas/wp/www/sites/woodemo2\";s:12:\"SERVER_ADMIN\";s:18:\"[no address given]\";s:15:\"SCRIPT_FILENAME\";s:47:\"/nas/wp/www/sites/woodemo2/wp-comments-post.php\";s:11:\"REMOTE_PORT\";s:5:\"24701\";s:12:\"REDIRECT_URL\";s:33:\"/woocommerce/wp-comments-post.php\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.0\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:12:\"QUERY_STRING\";s:0:\"\";s:11:\"SCRIPT_NAME\";s:21:\"/wp-comments-post.php\";s:8:\"PHP_SELF\";s:21:\"/wp-comments-post.php\";s:12:\"REQUEST_TIME\";s:10:\"1370608902\";s:25:\"comment_post_modified_gmt\";s:19:\"2013-06-07 11:18:23\";}');
INSERT INTO `smrc_commentmeta` VALUES (94,23,'rating','4');
INSERT INTO `smrc_commentmeta` VALUES (95,23,'akismet_history','a:4:{s:4:\"time\";d:1370609037.499927;s:7:\"message\";s:46:\"wooteam changed the comment status to approved\";s:5:\"event\";s:15:\"status-approved\";s:4:\"user\";s:7:\"wooteam\";}');
INSERT INTO `smrc_commentmeta` VALUES (96,24,'akismet_error','1370611600');
INSERT INTO `smrc_commentmeta` VALUES (97,24,'akismet_history','a:4:{s:4:\"time\";d:1370611600.578697;s:7:\"message\";s:92:\"Akismet was unable to check this comment (response: ), will automatically retry again later.\";s:5:\"event\";s:11:\"check-error\";s:4:\"user\";s:0:\"\";}');
INSERT INTO `smrc_commentmeta` VALUES (98,24,'akismet_as_submitted','a:66:{s:15:\"comment_post_ID\";i:56;s:14:\"comment_author\";s:4:\"Ryan\";s:20:\"comment_author_email\";s:18:\"ryan@woothemes.com\";s:18:\"comment_author_url\";N;s:15:\"comment_content\";s:123:\"This is the most bombastic hoodie in this shop, it\'s soft and has the sly WooThemes ninja on it. Why wouldn\'t you buy this?\";s:12:\"comment_type\";s:0:\"\";s:14:\"comment_parent\";i:0;s:7:\"user_ID\";i:0;s:7:\"user_ip\";s:14:\"99.153.225.252\";s:10:\"user_agent\";s:120:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/27.0.1453.110 Safari/537.36\";s:8:\"referrer\";s:66:\"http://demo2.woothemes.com/woocommerce/product/ninja-silhouette-2/\";s:4:\"blog\";s:38:\"http://demo2.woothemes.com/woocommerce\";s:9:\"blog_lang\";s:5:\"en_US\";s:12:\"blog_charset\";s:5:\"UTF-8\";s:9:\"permalink\";s:66:\"http://demo2.woothemes.com/woocommerce/product/ninja-silhouette-2/\";s:21:\"akismet_comment_nonce\";s:6:\"passed\";s:11:\"POST_author\";s:4:\"Ryan\";s:10:\"POST_email\";s:18:\"ryan@woothemes.com\";s:11:\"POST_rating\";s:1:\"5\";s:12:\"POST_comment\";s:123:\"This is the most bombastic hoodie in this shop, it\'s soft and has the sly WooThemes ninja on it. Why wouldn\'t you buy this?\";s:7:\"POST__n\";s:10:\"2145d644a3\";s:21:\"POST__wp_http_referer\";s:40:\"/woocommerce/product/ninja-silhouette-2/\";s:11:\"POST_submit\";s:13:\"Submit Review\";s:20:\"POST_comment_post_ID\";s:2:\"56\";s:19:\"POST_comment_parent\";s:1:\"0\";s:26:\"POST_akismet_comment_nonce\";s:10:\"96525c59f8\";s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:33:\"/woocommerce/wp-comments-post.php\";s:15:\"REDIRECT_IS_WPE\";s:1:\"1\";s:27:\"REDIRECT_WPE_CAN_WRITE_DISK\";s:1:\"0\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:6:\"IS_WPE\";s:1:\"1\";s:18:\"WPE_CAN_WRITE_DISK\";s:1:\"0\";s:9:\"HTTP_HOST\";s:19:\"demo2.woothemes.com\";s:13:\"HTTP_X_LB_KEY\";s:8:\"woodemo2\";s:13:\"HTTP_X_IS_BOT\";s:1:\"0\";s:15:\"HTTP_USER_AGENT\";s:120:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/27.0.1453.110 Safari/537.36\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:14:\"CONTENT_LENGTH\";s:3:\"357\";s:18:\"HTTP_CACHE_CONTROL\";s:9:\"max-age=0\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:11:\"HTTP_ORIGIN\";s:26:\"http://demo2.woothemes.com\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:12:\"HTTP_REFERER\";s:66:\"http://demo2.woothemes.com/woocommerce/product/ninja-silhouette-2/\";s:20:\"HTTP_ACCEPT_ENCODING\";s:17:\"gzip,deflate,sdch\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.8\";s:11:\"HTTP_COOKIE\";s:0:\"\";s:4:\"PATH\";s:28:\"/usr/local/bin:/usr/bin:/bin\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SERVER_NAME\";s:19:\"demo2.woothemes.com\";s:11:\"SERVER_ADDR\";s:9:\"127.0.0.1\";s:11:\"SERVER_PORT\";s:2:\"80\";s:11:\"REMOTE_ADDR\";s:14:\"99.153.225.252\";s:13:\"DOCUMENT_ROOT\";s:26:\"/nas/wp/www/sites/woodemo2\";s:12:\"SERVER_ADMIN\";s:18:\"[no address given]\";s:15:\"SCRIPT_FILENAME\";s:47:\"/nas/wp/www/sites/woodemo2/wp-comments-post.php\";s:11:\"REMOTE_PORT\";s:5:\"56439\";s:12:\"REDIRECT_URL\";s:33:\"/woocommerce/wp-comments-post.php\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.0\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:12:\"QUERY_STRING\";s:0:\"\";s:11:\"SCRIPT_NAME\";s:21:\"/wp-comments-post.php\";s:8:\"PHP_SELF\";s:21:\"/wp-comments-post.php\";s:12:\"REQUEST_TIME\";s:10:\"1370611600\";s:25:\"comment_post_modified_gmt\";s:19:\"2013-06-07 11:18:23\";}');
INSERT INTO `smrc_commentmeta` VALUES (99,24,'rating','5');
INSERT INTO `smrc_commentmeta` VALUES (100,24,'akismet_history','a:4:{s:4:\"time\";d:1370612306.399141;s:7:\"message\";s:46:\"wooteam changed the comment status to approved\";s:5:\"event\";s:15:\"status-approved\";s:4:\"user\";s:7:\"wooteam\";}');
INSERT INTO `smrc_commentmeta` VALUES (101,25,'akismet_error','1370620436');
INSERT INTO `smrc_commentmeta` VALUES (102,25,'akismet_history','a:4:{s:4:\"time\";d:1370620436.973054;s:7:\"message\";s:92:\"Akismet was unable to check this comment (response: ), will automatically retry again later.\";s:5:\"event\";s:11:\"check-error\";s:4:\"user\";s:0:\"\";}');
INSERT INTO `smrc_commentmeta` VALUES (103,25,'akismet_as_submitted','a:66:{s:15:\"comment_post_ID\";i:56;s:14:\"comment_author\";s:5:\"Maria\";s:20:\"comment_author_email\";s:19:\"maria@woothemes.com\";s:18:\"comment_author_url\";N;s:15:\"comment_content\";s:67:\"This only gets 1 star because I don\'t have this yet. I want it now!\";s:12:\"comment_type\";s:0:\"\";s:14:\"comment_parent\";i:0;s:7:\"user_ID\";i:0;s:7:\"user_ip\";s:13:\"24.225.103.32\";s:10:\"user_agent\";s:120:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/27.0.1453.110 Safari/537.36\";s:8:\"referrer\";s:66:\"http://demo2.woothemes.com/woocommerce/product/ninja-silhouette-2/\";s:4:\"blog\";s:38:\"http://demo2.woothemes.com/woocommerce\";s:9:\"blog_lang\";s:5:\"en_US\";s:12:\"blog_charset\";s:5:\"UTF-8\";s:9:\"permalink\";s:66:\"http://demo2.woothemes.com/woocommerce/product/ninja-silhouette-2/\";s:21:\"akismet_comment_nonce\";s:6:\"passed\";s:11:\"POST_author\";s:5:\"Maria\";s:10:\"POST_email\";s:19:\"maria@woothemes.com\";s:11:\"POST_rating\";s:1:\"1\";s:12:\"POST_comment\";s:68:\"This only gets 1 star because I don\'t have this yet. I want it now! \";s:7:\"POST__n\";s:10:\"2145d644a3\";s:21:\"POST__wp_http_referer\";s:40:\"/woocommerce/product/ninja-silhouette-2/\";s:11:\"POST_submit\";s:13:\"Submit Review\";s:20:\"POST_comment_post_ID\";s:2:\"56\";s:19:\"POST_comment_parent\";s:1:\"0\";s:26:\"POST_akismet_comment_nonce\";s:10:\"96525c59f8\";s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:33:\"/woocommerce/wp-comments-post.php\";s:15:\"REDIRECT_IS_WPE\";s:1:\"1\";s:27:\"REDIRECT_WPE_CAN_WRITE_DISK\";s:1:\"0\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:6:\"IS_WPE\";s:1:\"1\";s:18:\"WPE_CAN_WRITE_DISK\";s:1:\"0\";s:9:\"HTTP_HOST\";s:19:\"demo2.woothemes.com\";s:13:\"HTTP_X_LB_KEY\";s:8:\"woodemo2\";s:13:\"HTTP_X_IS_BOT\";s:1:\"0\";s:15:\"HTTP_USER_AGENT\";s:120:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/27.0.1453.110 Safari/537.36\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:14:\"CONTENT_LENGTH\";s:3:\"300\";s:18:\"HTTP_CACHE_CONTROL\";s:9:\"max-age=0\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:11:\"HTTP_ORIGIN\";s:26:\"http://demo2.woothemes.com\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:12:\"HTTP_REFERER\";s:66:\"http://demo2.woothemes.com/woocommerce/product/ninja-silhouette-2/\";s:20:\"HTTP_ACCEPT_ENCODING\";s:17:\"gzip,deflate,sdch\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.8\";s:11:\"HTTP_COOKIE\";s:0:\"\";s:4:\"PATH\";s:28:\"/usr/local/bin:/usr/bin:/bin\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SERVER_NAME\";s:19:\"demo2.woothemes.com\";s:11:\"SERVER_ADDR\";s:9:\"127.0.0.1\";s:11:\"SERVER_PORT\";s:2:\"80\";s:11:\"REMOTE_ADDR\";s:13:\"24.225.103.32\";s:13:\"DOCUMENT_ROOT\";s:26:\"/nas/wp/www/sites/woodemo2\";s:12:\"SERVER_ADMIN\";s:18:\"[no address given]\";s:15:\"SCRIPT_FILENAME\";s:47:\"/nas/wp/www/sites/woodemo2/wp-comments-post.php\";s:11:\"REMOTE_PORT\";s:5:\"27338\";s:12:\"REDIRECT_URL\";s:33:\"/woocommerce/wp-comments-post.php\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.0\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:12:\"QUERY_STRING\";s:0:\"\";s:11:\"SCRIPT_NAME\";s:21:\"/wp-comments-post.php\";s:8:\"PHP_SELF\";s:21:\"/wp-comments-post.php\";s:12:\"REQUEST_TIME\";s:10:\"1370620436\";s:25:\"comment_post_modified_gmt\";s:19:\"2013-06-07 11:18:23\";}');
INSERT INTO `smrc_commentmeta` VALUES (104,25,'rating','1');
INSERT INTO `smrc_commentmeta` VALUES (105,25,'akismet_history','a:4:{s:4:\"time\";d:1370620633.932438;s:7:\"message\";s:46:\"wooteam changed the comment status to approved\";s:5:\"event\";s:15:\"status-approved\";s:4:\"user\";s:7:\"wooteam\";}');
INSERT INTO `smrc_commentmeta` VALUES (106,26,'akismet_error','1370605393');
INSERT INTO `smrc_commentmeta` VALUES (107,26,'akismet_history','a:4:{s:4:\"time\";d:1370605393.680457;s:7:\"message\";s:92:\"Akismet was unable to check this comment (response: ), will automatically retry again later.\";s:5:\"event\";s:11:\"check-error\";s:4:\"user\";s:0:\"\";}');
INSERT INTO `smrc_commentmeta` VALUES (108,26,'akismet_as_submitted','a:66:{s:15:\"comment_post_ID\";i:22;s:14:\"comment_author\";s:12:\"James Koster\";s:20:\"comment_author_email\";s:23:\"james@jameskoster.co.uk\";s:18:\"comment_author_url\";N;s:15:\"comment_content\";s:53:\"Nice T-shirt, I got one in black. Goes with anything!\";s:12:\"comment_type\";s:0:\"\";s:14:\"comment_parent\";i:0;s:7:\"user_ID\";i:0;s:7:\"user_ip\";s:13:\"86.146.141.82\";s:10:\"user_agent\";s:120:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/27.0.1453.110 Safari/537.36\";s:8:\"referrer\";s:62:\"http://demo2.woothemes.com/woocommerce/product/ship-your-idea/\";s:4:\"blog\";s:38:\"http://demo2.woothemes.com/woocommerce\";s:9:\"blog_lang\";s:5:\"en_US\";s:12:\"blog_charset\";s:5:\"UTF-8\";s:9:\"permalink\";s:62:\"http://demo2.woothemes.com/woocommerce/product/ship-your-idea/\";s:21:\"akismet_comment_nonce\";s:6:\"passed\";s:11:\"POST_author\";s:12:\"James Koster\";s:10:\"POST_email\";s:23:\"james@jameskoster.co.uk\";s:11:\"POST_rating\";s:1:\"4\";s:12:\"POST_comment\";s:53:\"Nice T-shirt, I got one in black. Goes with anything!\";s:7:\"POST__n\";s:10:\"a80bd2f042\";s:21:\"POST__wp_http_referer\";s:36:\"/woocommerce/product/ship-your-idea/\";s:11:\"POST_submit\";s:13:\"Submit Review\";s:20:\"POST_comment_post_ID\";s:2:\"22\";s:19:\"POST_comment_parent\";s:1:\"0\";s:26:\"POST_akismet_comment_nonce\";s:10:\"19b2b0163a\";s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:33:\"/woocommerce/wp-comments-post.php\";s:15:\"REDIRECT_IS_WPE\";s:1:\"1\";s:27:\"REDIRECT_WPE_CAN_WRITE_DISK\";s:1:\"0\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:6:\"IS_WPE\";s:1:\"1\";s:18:\"WPE_CAN_WRITE_DISK\";s:1:\"0\";s:9:\"HTTP_HOST\";s:19:\"demo2.woothemes.com\";s:13:\"HTTP_X_LB_KEY\";s:8:\"woodemo2\";s:13:\"HTTP_X_IS_BOT\";s:1:\"0\";s:15:\"HTTP_USER_AGENT\";s:120:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/27.0.1453.110 Safari/537.36\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:14:\"CONTENT_LENGTH\";s:3:\"292\";s:18:\"HTTP_CACHE_CONTROL\";s:9:\"max-age=0\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:11:\"HTTP_ORIGIN\";s:26:\"http://demo2.woothemes.com\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:12:\"HTTP_REFERER\";s:62:\"http://demo2.woothemes.com/woocommerce/product/ship-your-idea/\";s:20:\"HTTP_ACCEPT_ENCODING\";s:17:\"gzip,deflate,sdch\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.8\";s:11:\"HTTP_COOKIE\";s:0:\"\";s:4:\"PATH\";s:28:\"/usr/local/bin:/usr/bin:/bin\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SERVER_NAME\";s:19:\"demo2.woothemes.com\";s:11:\"SERVER_ADDR\";s:9:\"127.0.0.1\";s:11:\"SERVER_PORT\";s:2:\"80\";s:11:\"REMOTE_ADDR\";s:13:\"86.146.141.82\";s:13:\"DOCUMENT_ROOT\";s:26:\"/nas/wp/www/sites/woodemo2\";s:12:\"SERVER_ADMIN\";s:18:\"[no address given]\";s:15:\"SCRIPT_FILENAME\";s:47:\"/nas/wp/www/sites/woodemo2/wp-comments-post.php\";s:11:\"REMOTE_PORT\";s:5:\"47178\";s:12:\"REDIRECT_URL\";s:33:\"/woocommerce/wp-comments-post.php\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.0\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:12:\"QUERY_STRING\";s:0:\"\";s:11:\"SCRIPT_NAME\";s:21:\"/wp-comments-post.php\";s:8:\"PHP_SELF\";s:21:\"/wp-comments-post.php\";s:12:\"REQUEST_TIME\";s:10:\"1370605393\";s:25:\"comment_post_modified_gmt\";s:19:\"2013-06-07 11:14:41\";}');
INSERT INTO `smrc_commentmeta` VALUES (109,26,'rating','4');
INSERT INTO `smrc_commentmeta` VALUES (110,26,'akismet_history','a:4:{s:4:\"time\";d:1370605641.806462;s:7:\"message\";s:46:\"wooteam changed the comment status to approved\";s:5:\"event\";s:15:\"status-approved\";s:4:\"user\";s:7:\"wooteam\";}');
INSERT INTO `smrc_commentmeta` VALUES (111,27,'akismet_error','1370606115');
INSERT INTO `smrc_commentmeta` VALUES (112,27,'akismet_history','a:4:{s:4:\"time\";d:1370606115.261732;s:7:\"message\";s:92:\"Akismet was unable to check this comment (response: ), will automatically retry again later.\";s:5:\"event\";s:11:\"check-error\";s:4:\"user\";s:0:\"\";}');
INSERT INTO `smrc_commentmeta` VALUES (113,27,'akismet_as_submitted','a:67:{s:15:\"comment_post_ID\";i:22;s:14:\"comment_author\";s:12:\"Cobus Bester\";s:20:\"comment_author_email\";s:18:\"bester.c@gmail.com\";s:18:\"comment_author_url\";N;s:15:\"comment_content\";s:47:\"Very comfortable shirt, and I love the graphic!\";s:12:\"comment_type\";s:0:\"\";s:14:\"comment_parent\";i:0;s:7:\"user_ID\";i:0;s:7:\"user_ip\";s:13:\"196.215.9.147\";s:10:\"user_agent\";s:119:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.31 (KHTML, like Gecko) Chrome/26.0.1410.65 Safari/537.31\";s:8:\"referrer\";s:62:\"http://demo2.woothemes.com/woocommerce/product/ship-your-idea/\";s:4:\"blog\";s:38:\"http://demo2.woothemes.com/woocommerce\";s:9:\"blog_lang\";s:5:\"en_US\";s:12:\"blog_charset\";s:5:\"UTF-8\";s:9:\"permalink\";s:62:\"http://demo2.woothemes.com/woocommerce/product/ship-your-idea/\";s:21:\"akismet_comment_nonce\";s:6:\"passed\";s:11:\"POST_author\";s:12:\"Cobus Bester\";s:10:\"POST_email\";s:18:\"bester.c@gmail.com\";s:11:\"POST_rating\";s:1:\"4\";s:12:\"POST_comment\";s:47:\"Very comfortable shirt, and I love the graphic!\";s:7:\"POST__n\";s:10:\"a80bd2f042\";s:21:\"POST__wp_http_referer\";s:36:\"/woocommerce/product/ship-your-idea/\";s:11:\"POST_submit\";s:13:\"Submit Review\";s:20:\"POST_comment_post_ID\";s:2:\"22\";s:19:\"POST_comment_parent\";s:1:\"0\";s:26:\"POST_akismet_comment_nonce\";s:10:\"19b2b0163a\";s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:33:\"/woocommerce/wp-comments-post.php\";s:15:\"REDIRECT_IS_WPE\";s:1:\"1\";s:27:\"REDIRECT_WPE_CAN_WRITE_DISK\";s:1:\"0\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:6:\"IS_WPE\";s:1:\"1\";s:18:\"WPE_CAN_WRITE_DISK\";s:1:\"0\";s:9:\"HTTP_HOST\";s:19:\"demo2.woothemes.com\";s:13:\"HTTP_X_LB_KEY\";s:8:\"woodemo2\";s:13:\"HTTP_X_IS_BOT\";s:1:\"0\";s:15:\"HTTP_USER_AGENT\";s:119:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.31 (KHTML, like Gecko) Chrome/26.0.1410.65 Safari/537.31\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:14:\"CONTENT_LENGTH\";s:3:\"281\";s:18:\"HTTP_CACHE_CONTROL\";s:9:\"max-age=0\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:11:\"HTTP_ORIGIN\";s:26:\"http://demo2.woothemes.com\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:12:\"HTTP_REFERER\";s:62:\"http://demo2.woothemes.com/woocommerce/product/ship-your-idea/\";s:20:\"HTTP_ACCEPT_ENCODING\";s:17:\"gzip,deflate,sdch\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.8\";s:19:\"HTTP_ACCEPT_CHARSET\";s:30:\"ISO-8859-1,utf-8;q=0.7,*;q=0.3\";s:11:\"HTTP_COOKIE\";s:0:\"\";s:4:\"PATH\";s:28:\"/usr/local/bin:/usr/bin:/bin\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SERVER_NAME\";s:19:\"demo2.woothemes.com\";s:11:\"SERVER_ADDR\";s:9:\"127.0.0.1\";s:11:\"SERVER_PORT\";s:2:\"80\";s:11:\"REMOTE_ADDR\";s:13:\"196.215.9.147\";s:13:\"DOCUMENT_ROOT\";s:26:\"/nas/wp/www/sites/woodemo2\";s:12:\"SERVER_ADMIN\";s:18:\"[no address given]\";s:15:\"SCRIPT_FILENAME\";s:47:\"/nas/wp/www/sites/woodemo2/wp-comments-post.php\";s:11:\"REMOTE_PORT\";s:5:\"55879\";s:12:\"REDIRECT_URL\";s:33:\"/woocommerce/wp-comments-post.php\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.0\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:12:\"QUERY_STRING\";s:0:\"\";s:11:\"SCRIPT_NAME\";s:21:\"/wp-comments-post.php\";s:8:\"PHP_SELF\";s:21:\"/wp-comments-post.php\";s:12:\"REQUEST_TIME\";s:10:\"1370606115\";s:25:\"comment_post_modified_gmt\";s:19:\"2013-06-07 11:14:41\";}');
INSERT INTO `smrc_commentmeta` VALUES (114,27,'rating','4');
INSERT INTO `smrc_commentmeta` VALUES (115,27,'akismet_history','a:4:{s:4:\"time\";d:1370607935.632025;s:7:\"message\";s:46:\"wooteam changed the comment status to approved\";s:5:\"event\";s:15:\"status-approved\";s:4:\"user\";s:7:\"wooteam\";}');
INSERT INTO `smrc_commentmeta` VALUES (116,28,'akismet_error','1370610134');
INSERT INTO `smrc_commentmeta` VALUES (117,28,'akismet_history','a:4:{s:4:\"time\";d:1370610134.20179;s:7:\"message\";s:92:\"Akismet was unable to check this comment (response: ), will automatically retry again later.\";s:5:\"event\";s:11:\"check-error\";s:4:\"user\";s:0:\"\";}');
INSERT INTO `smrc_commentmeta` VALUES (118,28,'akismet_as_submitted','a:64:{s:15:\"comment_post_ID\";i:22;s:14:\"comment_author\";s:6:\"Stuart\";s:20:\"comment_author_email\";s:20:\"stuart@woothemes.com\";s:18:\"comment_author_url\";N;s:15:\"comment_content\";s:54:\"Great T-shirt quality, Great Design and Great Service.\";s:12:\"comment_type\";s:0:\"\";s:14:\"comment_parent\";i:0;s:7:\"user_ID\";i:0;s:7:\"user_ip\";s:13:\"82.32.109.140\";s:10:\"user_agent\";s:72:\"Mozilla/5.0 (Windows NT 6.1; WOW64; rv:21.0) Gecko/20100101 Firefox/21.0\";s:8:\"referrer\";s:62:\"http://demo2.woothemes.com/woocommerce/product/ship-your-idea/\";s:4:\"blog\";s:38:\"http://demo2.woothemes.com/woocommerce\";s:9:\"blog_lang\";s:5:\"en_US\";s:12:\"blog_charset\";s:5:\"UTF-8\";s:9:\"permalink\";s:62:\"http://demo2.woothemes.com/woocommerce/product/ship-your-idea/\";s:21:\"akismet_comment_nonce\";s:6:\"passed\";s:11:\"POST_author\";s:6:\"Stuart\";s:10:\"POST_email\";s:20:\"stuart@woothemes.com\";s:11:\"POST_rating\";s:1:\"5\";s:12:\"POST_comment\";s:54:\"Great T-shirt quality, Great Design and Great Service.\";s:7:\"POST__n\";s:10:\"2145d644a3\";s:21:\"POST__wp_http_referer\";s:36:\"/woocommerce/product/ship-your-idea/\";s:11:\"POST_submit\";s:13:\"Submit Review\";s:20:\"POST_comment_post_ID\";s:2:\"22\";s:19:\"POST_comment_parent\";s:1:\"0\";s:26:\"POST_akismet_comment_nonce\";s:10:\"0ad3ed6bac\";s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:33:\"/woocommerce/wp-comments-post.php\";s:15:\"REDIRECT_IS_WPE\";s:1:\"1\";s:27:\"REDIRECT_WPE_CAN_WRITE_DISK\";s:1:\"0\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:6:\"IS_WPE\";s:1:\"1\";s:18:\"WPE_CAN_WRITE_DISK\";s:1:\"0\";s:9:\"HTTP_HOST\";s:19:\"demo2.woothemes.com\";s:13:\"HTTP_X_LB_KEY\";s:8:\"woodemo2\";s:13:\"HTTP_X_IS_BOT\";s:1:\"0\";s:15:\"HTTP_USER_AGENT\";s:72:\"Mozilla/5.0 (Windows NT 6.1; WOW64; rv:21.0) Gecko/20100101 Firefox/21.0\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:12:\"HTTP_REFERER\";s:62:\"http://demo2.woothemes.com/woocommerce/product/ship-your-idea/\";s:11:\"HTTP_COOKIE\";s:0:\"\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:14:\"CONTENT_LENGTH\";s:3:\"282\";s:4:\"PATH\";s:28:\"/usr/local/bin:/usr/bin:/bin\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SERVER_NAME\";s:19:\"demo2.woothemes.com\";s:11:\"SERVER_ADDR\";s:9:\"127.0.0.1\";s:11:\"SERVER_PORT\";s:2:\"80\";s:11:\"REMOTE_ADDR\";s:13:\"82.32.109.140\";s:13:\"DOCUMENT_ROOT\";s:26:\"/nas/wp/www/sites/woodemo2\";s:12:\"SERVER_ADMIN\";s:18:\"[no address given]\";s:15:\"SCRIPT_FILENAME\";s:47:\"/nas/wp/www/sites/woodemo2/wp-comments-post.php\";s:11:\"REMOTE_PORT\";s:5:\"40932\";s:12:\"REDIRECT_URL\";s:33:\"/woocommerce/wp-comments-post.php\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.0\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:12:\"QUERY_STRING\";s:0:\"\";s:11:\"SCRIPT_NAME\";s:21:\"/wp-comments-post.php\";s:8:\"PHP_SELF\";s:21:\"/wp-comments-post.php\";s:12:\"REQUEST_TIME\";s:10:\"1370610134\";s:25:\"comment_post_modified_gmt\";s:19:\"2013-06-07 11:14:41\";}');
INSERT INTO `smrc_commentmeta` VALUES (119,28,'rating','5');
INSERT INTO `smrc_commentmeta` VALUES (120,28,'akismet_history','a:4:{s:4:\"time\";d:1370611526.547484;s:7:\"message\";s:46:\"wooteam changed the comment status to approved\";s:5:\"event\";s:15:\"status-approved\";s:4:\"user\";s:7:\"wooteam\";}');
INSERT INTO `smrc_commentmeta` VALUES (121,29,'akismet_error','1370605612');
INSERT INTO `smrc_commentmeta` VALUES (122,29,'akismet_history','a:4:{s:4:\"time\";d:1370605612.873901;s:7:\"message\";s:92:\"Akismet was unable to check this comment (response: ), will automatically retry again later.\";s:5:\"event\";s:11:\"check-error\";s:4:\"user\";s:0:\"\";}');
INSERT INTO `smrc_commentmeta` VALUES (123,29,'akismet_as_submitted','a:66:{s:15:\"comment_post_ID\";i:50;s:14:\"comment_author\";s:12:\"James Koster\";s:20:\"comment_author_email\";s:23:\"james@jameskoster.co.uk\";s:18:\"comment_author_url\";N;s:15:\"comment_content\";s:103:\"Perfect when you\'re waiting for the next batch of Woo Goodies to be released. Patient Ninja is Patient.\";s:12:\"comment_type\";s:0:\"\";s:14:\"comment_parent\";i:0;s:7:\"user_ID\";i:0;s:7:\"user_ip\";s:13:\"86.146.141.82\";s:10:\"user_agent\";s:120:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/27.0.1453.110 Safari/537.36\";s:8:\"referrer\";s:61:\"http://demo2.woothemes.com/woocommerce/product/patient-ninja/\";s:4:\"blog\";s:38:\"http://demo2.woothemes.com/woocommerce\";s:9:\"blog_lang\";s:5:\"en_US\";s:12:\"blog_charset\";s:5:\"UTF-8\";s:9:\"permalink\";s:61:\"http://demo2.woothemes.com/woocommerce/product/patient-ninja/\";s:21:\"akismet_comment_nonce\";s:6:\"passed\";s:11:\"POST_author\";s:12:\"James Koster\";s:10:\"POST_email\";s:23:\"james@jameskoster.co.uk\";s:11:\"POST_rating\";s:1:\"4\";s:12:\"POST_comment\";s:103:\"Perfect when you\'re waiting for the next batch of Woo Goodies to be released. Patient Ninja is Patient.\";s:7:\"POST__n\";s:10:\"a80bd2f042\";s:21:\"POST__wp_http_referer\";s:35:\"/woocommerce/product/patient-ninja/\";s:11:\"POST_submit\";s:13:\"Submit Review\";s:20:\"POST_comment_post_ID\";s:2:\"50\";s:19:\"POST_comment_parent\";s:1:\"0\";s:26:\"POST_akismet_comment_nonce\";s:10:\"ad4e7e1f00\";s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:33:\"/woocommerce/wp-comments-post.php\";s:15:\"REDIRECT_IS_WPE\";s:1:\"1\";s:27:\"REDIRECT_WPE_CAN_WRITE_DISK\";s:1:\"0\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:6:\"IS_WPE\";s:1:\"1\";s:18:\"WPE_CAN_WRITE_DISK\";s:1:\"0\";s:9:\"HTTP_HOST\";s:19:\"demo2.woothemes.com\";s:13:\"HTTP_X_LB_KEY\";s:8:\"woodemo2\";s:13:\"HTTP_X_IS_BOT\";s:1:\"0\";s:15:\"HTTP_USER_AGENT\";s:120:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/27.0.1453.110 Safari/537.36\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:14:\"CONTENT_LENGTH\";s:3:\"339\";s:18:\"HTTP_CACHE_CONTROL\";s:9:\"max-age=0\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:11:\"HTTP_ORIGIN\";s:26:\"http://demo2.woothemes.com\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:12:\"HTTP_REFERER\";s:61:\"http://demo2.woothemes.com/woocommerce/product/patient-ninja/\";s:20:\"HTTP_ACCEPT_ENCODING\";s:17:\"gzip,deflate,sdch\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.8\";s:11:\"HTTP_COOKIE\";s:0:\"\";s:4:\"PATH\";s:28:\"/usr/local/bin:/usr/bin:/bin\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SERVER_NAME\";s:19:\"demo2.woothemes.com\";s:11:\"SERVER_ADDR\";s:9:\"127.0.0.1\";s:11:\"SERVER_PORT\";s:2:\"80\";s:11:\"REMOTE_ADDR\";s:13:\"86.146.141.82\";s:13:\"DOCUMENT_ROOT\";s:26:\"/nas/wp/www/sites/woodemo2\";s:12:\"SERVER_ADMIN\";s:18:\"[no address given]\";s:15:\"SCRIPT_FILENAME\";s:47:\"/nas/wp/www/sites/woodemo2/wp-comments-post.php\";s:11:\"REMOTE_PORT\";s:5:\"49636\";s:12:\"REDIRECT_URL\";s:33:\"/woocommerce/wp-comments-post.php\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.0\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:12:\"QUERY_STRING\";s:0:\"\";s:11:\"SCRIPT_NAME\";s:21:\"/wp-comments-post.php\";s:8:\"PHP_SELF\";s:21:\"/wp-comments-post.php\";s:12:\"REQUEST_TIME\";s:10:\"1370605612\";s:25:\"comment_post_modified_gmt\";s:19:\"2013-06-07 11:17:10\";}');
INSERT INTO `smrc_commentmeta` VALUES (124,29,'rating','4');
INSERT INTO `smrc_commentmeta` VALUES (125,29,'akismet_history','a:4:{s:4:\"time\";d:1370605643.714943;s:7:\"message\";s:46:\"wooteam changed the comment status to approved\";s:5:\"event\";s:15:\"status-approved\";s:4:\"user\";s:7:\"wooteam\";}');
INSERT INTO `smrc_commentmeta` VALUES (126,30,'akismet_error','1370605993');
INSERT INTO `smrc_commentmeta` VALUES (127,30,'akismet_history','a:4:{s:4:\"time\";d:1370605993.459981;s:7:\"message\";s:92:\"Akismet was unable to check this comment (response: ), will automatically retry again later.\";s:5:\"event\";s:11:\"check-error\";s:4:\"user\";s:0:\"\";}');
INSERT INTO `smrc_commentmeta` VALUES (128,30,'akismet_as_submitted','a:67:{s:15:\"comment_post_ID\";i:50;s:14:\"comment_author\";s:12:\"Cobus Bester\";s:20:\"comment_author_email\";s:18:\"bester.c@gmail.com\";s:18:\"comment_author_url\";N;s:15:\"comment_content\";s:46:\"The most comfortable hoodie I have ever owned!\";s:12:\"comment_type\";s:0:\"\";s:14:\"comment_parent\";i:0;s:7:\"user_ID\";i:0;s:7:\"user_ip\";s:13:\"196.215.9.147\";s:10:\"user_agent\";s:119:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.31 (KHTML, like Gecko) Chrome/26.0.1410.65 Safari/537.31\";s:8:\"referrer\";s:61:\"http://demo2.woothemes.com/woocommerce/product/patient-ninja/\";s:4:\"blog\";s:38:\"http://demo2.woothemes.com/woocommerce\";s:9:\"blog_lang\";s:5:\"en_US\";s:12:\"blog_charset\";s:5:\"UTF-8\";s:9:\"permalink\";s:61:\"http://demo2.woothemes.com/woocommerce/product/patient-ninja/\";s:21:\"akismet_comment_nonce\";s:6:\"passed\";s:11:\"POST_author\";s:12:\"Cobus Bester\";s:10:\"POST_email\";s:18:\"bester.c@gmail.com\";s:11:\"POST_rating\";s:1:\"5\";s:12:\"POST_comment\";s:46:\"The most comfortable hoodie I have ever owned!\";s:7:\"POST__n\";s:10:\"a80bd2f042\";s:21:\"POST__wp_http_referer\";s:35:\"/woocommerce/product/patient-ninja/\";s:11:\"POST_submit\";s:13:\"Submit Review\";s:20:\"POST_comment_post_ID\";s:2:\"50\";s:19:\"POST_comment_parent\";s:1:\"0\";s:26:\"POST_akismet_comment_nonce\";s:10:\"ad4e7e1f00\";s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:33:\"/woocommerce/wp-comments-post.php\";s:15:\"REDIRECT_IS_WPE\";s:1:\"1\";s:27:\"REDIRECT_WPE_CAN_WRITE_DISK\";s:1:\"0\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:6:\"IS_WPE\";s:1:\"1\";s:18:\"WPE_CAN_WRITE_DISK\";s:1:\"0\";s:9:\"HTTP_HOST\";s:19:\"demo2.woothemes.com\";s:13:\"HTTP_X_LB_KEY\";s:8:\"woodemo2\";s:13:\"HTTP_X_IS_BOT\";s:1:\"0\";s:15:\"HTTP_USER_AGENT\";s:119:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.31 (KHTML, like Gecko) Chrome/26.0.1410.65 Safari/537.31\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:14:\"CONTENT_LENGTH\";s:3:\"277\";s:18:\"HTTP_CACHE_CONTROL\";s:9:\"max-age=0\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:11:\"HTTP_ORIGIN\";s:26:\"http://demo2.woothemes.com\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:12:\"HTTP_REFERER\";s:61:\"http://demo2.woothemes.com/woocommerce/product/patient-ninja/\";s:20:\"HTTP_ACCEPT_ENCODING\";s:17:\"gzip,deflate,sdch\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.8\";s:19:\"HTTP_ACCEPT_CHARSET\";s:30:\"ISO-8859-1,utf-8;q=0.7,*;q=0.3\";s:11:\"HTTP_COOKIE\";s:0:\"\";s:4:\"PATH\";s:28:\"/usr/local/bin:/usr/bin:/bin\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SERVER_NAME\";s:19:\"demo2.woothemes.com\";s:11:\"SERVER_ADDR\";s:9:\"127.0.0.1\";s:11:\"SERVER_PORT\";s:2:\"80\";s:11:\"REMOTE_ADDR\";s:13:\"196.215.9.147\";s:13:\"DOCUMENT_ROOT\";s:26:\"/nas/wp/www/sites/woodemo2\";s:12:\"SERVER_ADMIN\";s:18:\"[no address given]\";s:15:\"SCRIPT_FILENAME\";s:47:\"/nas/wp/www/sites/woodemo2/wp-comments-post.php\";s:11:\"REMOTE_PORT\";s:5:\"54451\";s:12:\"REDIRECT_URL\";s:33:\"/woocommerce/wp-comments-post.php\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.0\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:12:\"QUERY_STRING\";s:0:\"\";s:11:\"SCRIPT_NAME\";s:21:\"/wp-comments-post.php\";s:8:\"PHP_SELF\";s:21:\"/wp-comments-post.php\";s:12:\"REQUEST_TIME\";s:10:\"1370605993\";s:25:\"comment_post_modified_gmt\";s:19:\"2013-06-07 11:17:10\";}');
INSERT INTO `smrc_commentmeta` VALUES (129,30,'rating','5');
INSERT INTO `smrc_commentmeta` VALUES (130,30,'akismet_history','a:4:{s:4:\"time\";d:1370607929.392715;s:7:\"message\";s:46:\"wooteam changed the comment status to approved\";s:5:\"event\";s:15:\"status-approved\";s:4:\"user\";s:7:\"wooteam\";}');
INSERT INTO `smrc_commentmeta` VALUES (131,31,'akismet_error','1370606643');
INSERT INTO `smrc_commentmeta` VALUES (132,31,'akismet_history','a:4:{s:4:\"time\";d:1370606643.435741;s:7:\"message\";s:92:\"Akismet was unable to check this comment (response: ), will automatically retry again later.\";s:5:\"event\";s:11:\"check-error\";s:4:\"user\";s:0:\"\";}');
INSERT INTO `smrc_commentmeta` VALUES (133,31,'akismet_as_submitted','');
INSERT INTO `smrc_commentmeta` VALUES (134,31,'rating','5');
INSERT INTO `smrc_commentmeta` VALUES (135,31,'akismet_history','a:4:{s:4:\"time\";d:1370607947.308474;s:7:\"message\";s:46:\"wooteam changed the comment status to approved\";s:5:\"event\";s:15:\"status-approved\";s:4:\"user\";s:7:\"wooteam\";}');
INSERT INTO `smrc_commentmeta` VALUES (136,32,'akismet_error','1370606225');
INSERT INTO `smrc_commentmeta` VALUES (137,32,'akismet_history','a:4:{s:4:\"time\";d:1370606225.676586;s:7:\"message\";s:92:\"Akismet was unable to check this comment (response: ), will automatically retry again later.\";s:5:\"event\";s:11:\"check-error\";s:4:\"user\";s:0:\"\";}');
INSERT INTO `smrc_commentmeta` VALUES (138,32,'akismet_as_submitted','a:67:{s:15:\"comment_post_ID\";i:15;s:14:\"comment_author\";s:12:\"Cobus Bester\";s:20:\"comment_author_email\";s:18:\"bester.c@gmail.com\";s:18:\"comment_author_url\";N;s:15:\"comment_content\";s:49:\"Simple and effective design. One of my favorites.\";s:12:\"comment_type\";s:0:\"\";s:14:\"comment_parent\";i:0;s:7:\"user_ID\";i:0;s:7:\"user_ip\";s:13:\"196.215.9.147\";s:10:\"user_agent\";s:119:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.31 (KHTML, like Gecko) Chrome/26.0.1410.65 Safari/537.31\";s:8:\"referrer\";s:56:\"http://demo2.woothemes.com/woocommerce/product/woo-logo/\";s:4:\"blog\";s:38:\"http://demo2.woothemes.com/woocommerce\";s:9:\"blog_lang\";s:5:\"en_US\";s:12:\"blog_charset\";s:5:\"UTF-8\";s:9:\"permalink\";s:56:\"http://demo2.woothemes.com/woocommerce/product/woo-logo/\";s:21:\"akismet_comment_nonce\";s:6:\"passed\";s:11:\"POST_author\";s:12:\"Cobus Bester\";s:10:\"POST_email\";s:18:\"bester.c@gmail.com\";s:11:\"POST_rating\";s:1:\"4\";s:12:\"POST_comment\";s:49:\"Simple and effective design. One of my favorites.\";s:7:\"POST__n\";s:10:\"a80bd2f042\";s:21:\"POST__wp_http_referer\";s:30:\"/woocommerce/product/woo-logo/\";s:11:\"POST_submit\";s:13:\"Submit Review\";s:20:\"POST_comment_post_ID\";s:2:\"15\";s:19:\"POST_comment_parent\";s:1:\"0\";s:26:\"POST_akismet_comment_nonce\";s:10:\"bbd941e9bf\";s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:33:\"/woocommerce/wp-comments-post.php\";s:15:\"REDIRECT_IS_WPE\";s:1:\"1\";s:27:\"REDIRECT_WPE_CAN_WRITE_DISK\";s:1:\"0\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:6:\"IS_WPE\";s:1:\"1\";s:18:\"WPE_CAN_WRITE_DISK\";s:1:\"0\";s:9:\"HTTP_HOST\";s:19:\"demo2.woothemes.com\";s:13:\"HTTP_X_LB_KEY\";s:8:\"woodemo2\";s:13:\"HTTP_X_IS_BOT\";s:1:\"0\";s:15:\"HTTP_USER_AGENT\";s:119:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.31 (KHTML, like Gecko) Chrome/26.0.1410.65 Safari/537.31\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:14:\"CONTENT_LENGTH\";s:3:\"273\";s:18:\"HTTP_CACHE_CONTROL\";s:9:\"max-age=0\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:11:\"HTTP_ORIGIN\";s:26:\"http://demo2.woothemes.com\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:12:\"HTTP_REFERER\";s:56:\"http://demo2.woothemes.com/woocommerce/product/woo-logo/\";s:20:\"HTTP_ACCEPT_ENCODING\";s:17:\"gzip,deflate,sdch\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.8\";s:19:\"HTTP_ACCEPT_CHARSET\";s:30:\"ISO-8859-1,utf-8;q=0.7,*;q=0.3\";s:11:\"HTTP_COOKIE\";s:0:\"\";s:4:\"PATH\";s:28:\"/usr/local/bin:/usr/bin:/bin\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SERVER_NAME\";s:19:\"demo2.woothemes.com\";s:11:\"SERVER_ADDR\";s:9:\"127.0.0.1\";s:11:\"SERVER_PORT\";s:2:\"80\";s:11:\"REMOTE_ADDR\";s:13:\"196.215.9.147\";s:13:\"DOCUMENT_ROOT\";s:26:\"/nas/wp/www/sites/woodemo2\";s:12:\"SERVER_ADMIN\";s:18:\"[no address given]\";s:15:\"SCRIPT_FILENAME\";s:47:\"/nas/wp/www/sites/woodemo2/wp-comments-post.php\";s:11:\"REMOTE_PORT\";s:5:\"57596\";s:12:\"REDIRECT_URL\";s:33:\"/woocommerce/wp-comments-post.php\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.0\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:12:\"QUERY_STRING\";s:0:\"\";s:11:\"SCRIPT_NAME\";s:21:\"/wp-comments-post.php\";s:8:\"PHP_SELF\";s:21:\"/wp-comments-post.php\";s:12:\"REQUEST_TIME\";s:10:\"1370606225\";s:25:\"comment_post_modified_gmt\";s:19:\"2013-06-07 11:15:25\";}');
INSERT INTO `smrc_commentmeta` VALUES (139,32,'rating','4');
INSERT INTO `smrc_commentmeta` VALUES (140,32,'akismet_history','a:4:{s:4:\"time\";d:1370607940.89635;s:7:\"message\";s:46:\"wooteam changed the comment status to approved\";s:5:\"event\";s:15:\"status-approved\";s:4:\"user\";s:7:\"wooteam\";}');
INSERT INTO `smrc_commentmeta` VALUES (141,33,'akismet_error','1370605490');
INSERT INTO `smrc_commentmeta` VALUES (142,33,'akismet_history','a:4:{s:4:\"time\";d:1370605490.617733;s:7:\"message\";s:92:\"Akismet was unable to check this comment (response: ), will automatically retry again later.\";s:5:\"event\";s:11:\"check-error\";s:4:\"user\";s:0:\"\";}');
INSERT INTO `smrc_commentmeta` VALUES (143,33,'akismet_as_submitted','a:66:{s:15:\"comment_post_ID\";i:96;s:14:\"comment_author\";s:12:\"James Koster\";s:20:\"comment_author_email\";s:23:\"james@jameskoster.co.uk\";s:18:\"comment_author_url\";N;s:15:\"comment_content\";s:71:\"The most influential album of the last 25 years? This just might be it.\";s:12:\"comment_type\";s:0:\"\";s:14:\"comment_parent\";i:0;s:7:\"user_ID\";i:0;s:7:\"user_ip\";s:13:\"86.146.141.82\";s:10:\"user_agent\";s:120:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/27.0.1453.110 Safari/537.36\";s:8:\"referrer\";s:59:\"http://demo2.woothemes.com/woocommerce/product/woo-album-4/\";s:4:\"blog\";s:38:\"http://demo2.woothemes.com/woocommerce\";s:9:\"blog_lang\";s:5:\"en_US\";s:12:\"blog_charset\";s:5:\"UTF-8\";s:9:\"permalink\";s:59:\"http://demo2.woothemes.com/woocommerce/product/woo-album-4/\";s:21:\"akismet_comment_nonce\";s:6:\"passed\";s:11:\"POST_author\";s:12:\"James Koster\";s:10:\"POST_email\";s:23:\"james@jameskoster.co.uk\";s:11:\"POST_rating\";s:1:\"5\";s:12:\"POST_comment\";s:71:\"The most influential album of the last 25 years? This just might be it.\";s:7:\"POST__n\";s:10:\"a80bd2f042\";s:21:\"POST__wp_http_referer\";s:33:\"/woocommerce/product/woo-album-4/\";s:11:\"POST_submit\";s:13:\"Submit Review\";s:20:\"POST_comment_post_ID\";s:2:\"96\";s:19:\"POST_comment_parent\";s:1:\"0\";s:26:\"POST_akismet_comment_nonce\";s:10:\"ed891d3d81\";s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:33:\"/woocommerce/wp-comments-post.php\";s:15:\"REDIRECT_IS_WPE\";s:1:\"1\";s:27:\"REDIRECT_WPE_CAN_WRITE_DISK\";s:1:\"0\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:6:\"IS_WPE\";s:1:\"1\";s:18:\"WPE_CAN_WRITE_DISK\";s:1:\"0\";s:9:\"HTTP_HOST\";s:19:\"demo2.woothemes.com\";s:13:\"HTTP_X_LB_KEY\";s:8:\"woodemo2\";s:13:\"HTTP_X_IS_BOT\";s:1:\"0\";s:15:\"HTTP_USER_AGENT\";s:120:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/27.0.1453.110 Safari/537.36\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:14:\"CONTENT_LENGTH\";s:3:\"305\";s:18:\"HTTP_CACHE_CONTROL\";s:9:\"max-age=0\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:11:\"HTTP_ORIGIN\";s:26:\"http://demo2.woothemes.com\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:12:\"HTTP_REFERER\";s:59:\"http://demo2.woothemes.com/woocommerce/product/woo-album-4/\";s:20:\"HTTP_ACCEPT_ENCODING\";s:17:\"gzip,deflate,sdch\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.8\";s:11:\"HTTP_COOKIE\";s:0:\"\";s:4:\"PATH\";s:28:\"/usr/local/bin:/usr/bin:/bin\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SERVER_NAME\";s:19:\"demo2.woothemes.com\";s:11:\"SERVER_ADDR\";s:9:\"127.0.0.1\";s:11:\"SERVER_PORT\";s:2:\"80\";s:11:\"REMOTE_ADDR\";s:13:\"86.146.141.82\";s:13:\"DOCUMENT_ROOT\";s:26:\"/nas/wp/www/sites/woodemo2\";s:12:\"SERVER_ADMIN\";s:18:\"[no address given]\";s:15:\"SCRIPT_FILENAME\";s:47:\"/nas/wp/www/sites/woodemo2/wp-comments-post.php\";s:11:\"REMOTE_PORT\";s:5:\"48176\";s:12:\"REDIRECT_URL\";s:33:\"/woocommerce/wp-comments-post.php\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.0\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:12:\"QUERY_STRING\";s:0:\"\";s:11:\"SCRIPT_NAME\";s:21:\"/wp-comments-post.php\";s:8:\"PHP_SELF\";s:21:\"/wp-comments-post.php\";s:12:\"REQUEST_TIME\";s:10:\"1370605490\";s:25:\"comment_post_modified_gmt\";s:19:\"2013-06-07 11:39:52\";}');
INSERT INTO `smrc_commentmeta` VALUES (144,33,'rating','5');
INSERT INTO `smrc_commentmeta` VALUES (145,33,'akismet_history','a:4:{s:4:\"time\";d:1370605642.808994;s:7:\"message\";s:46:\"wooteam changed the comment status to approved\";s:5:\"event\";s:15:\"status-approved\";s:4:\"user\";s:7:\"wooteam\";}');
INSERT INTO `smrc_commentmeta` VALUES (146,34,'akismet_error','1370607690');
INSERT INTO `smrc_commentmeta` VALUES (147,34,'akismet_history','a:4:{s:4:\"time\";d:1370607690.593864;s:7:\"message\";s:92:\"Akismet was unable to check this comment (response: ), will automatically retry again later.\";s:5:\"event\";s:11:\"check-error\";s:4:\"user\";s:0:\"\";}');
INSERT INTO `smrc_commentmeta` VALUES (148,34,'akismet_as_submitted','a:66:{s:15:\"comment_post_ID\";i:96;s:14:\"comment_author\";s:11:\"Coen Jacobs\";s:20:\"comment_author_email\";s:18:\"coen@woothemes.com\";s:18:\"comment_author_url\";N;s:15:\"comment_content\";s:29:\"Some rad tunes on this album!\";s:12:\"comment_type\";s:0:\"\";s:14:\"comment_parent\";i:0;s:7:\"user_ID\";i:0;s:7:\"user_ip\";s:12:\"84.39.28.254\";s:10:\"user_agent\";s:120:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/27.0.1453.110 Safari/537.36\";s:8:\"referrer\";s:59:\"http://demo2.woothemes.com/woocommerce/product/woo-album-4/\";s:4:\"blog\";s:38:\"http://demo2.woothemes.com/woocommerce\";s:9:\"blog_lang\";s:5:\"en_US\";s:12:\"blog_charset\";s:5:\"UTF-8\";s:9:\"permalink\";s:59:\"http://demo2.woothemes.com/woocommerce/product/woo-album-4/\";s:21:\"akismet_comment_nonce\";s:6:\"passed\";s:11:\"POST_author\";s:11:\"Coen Jacobs\";s:10:\"POST_email\";s:18:\"coen@woothemes.com\";s:11:\"POST_rating\";s:1:\"5\";s:12:\"POST_comment\";s:29:\"Some rad tunes on this album!\";s:7:\"POST__n\";s:10:\"2145d644a3\";s:21:\"POST__wp_http_referer\";s:33:\"/woocommerce/product/woo-album-4/\";s:11:\"POST_submit\";s:13:\"Submit Review\";s:20:\"POST_comment_post_ID\";s:2:\"96\";s:19:\"POST_comment_parent\";s:1:\"0\";s:26:\"POST_akismet_comment_nonce\";s:10:\"a6305fd045\";s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:33:\"/woocommerce/wp-comments-post.php\";s:15:\"REDIRECT_IS_WPE\";s:1:\"1\";s:27:\"REDIRECT_WPE_CAN_WRITE_DISK\";s:1:\"0\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:6:\"IS_WPE\";s:1:\"1\";s:18:\"WPE_CAN_WRITE_DISK\";s:1:\"0\";s:9:\"HTTP_HOST\";s:19:\"demo2.woothemes.com\";s:13:\"HTTP_X_LB_KEY\";s:8:\"woodemo2\";s:13:\"HTTP_X_IS_BOT\";s:1:\"0\";s:15:\"HTTP_USER_AGENT\";s:120:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/27.0.1453.110 Safari/537.36\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:14:\"CONTENT_LENGTH\";s:3:\"257\";s:18:\"HTTP_CACHE_CONTROL\";s:9:\"max-age=0\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:11:\"HTTP_ORIGIN\";s:26:\"http://demo2.woothemes.com\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:12:\"HTTP_REFERER\";s:59:\"http://demo2.woothemes.com/woocommerce/product/woo-album-4/\";s:20:\"HTTP_ACCEPT_ENCODING\";s:17:\"gzip,deflate,sdch\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:23:\"en-US,en;q=0.8,nl;q=0.6\";s:11:\"HTTP_COOKIE\";s:0:\"\";s:4:\"PATH\";s:28:\"/usr/local/bin:/usr/bin:/bin\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SERVER_NAME\";s:19:\"demo2.woothemes.com\";s:11:\"SERVER_ADDR\";s:9:\"127.0.0.1\";s:11:\"SERVER_PORT\";s:2:\"80\";s:11:\"REMOTE_ADDR\";s:12:\"84.39.28.254\";s:13:\"DOCUMENT_ROOT\";s:26:\"/nas/wp/www/sites/woodemo2\";s:12:\"SERVER_ADMIN\";s:18:\"[no address given]\";s:15:\"SCRIPT_FILENAME\";s:47:\"/nas/wp/www/sites/woodemo2/wp-comments-post.php\";s:11:\"REMOTE_PORT\";s:5:\"10047\";s:12:\"REDIRECT_URL\";s:33:\"/woocommerce/wp-comments-post.php\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.0\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:12:\"QUERY_STRING\";s:0:\"\";s:11:\"SCRIPT_NAME\";s:21:\"/wp-comments-post.php\";s:8:\"PHP_SELF\";s:21:\"/wp-comments-post.php\";s:12:\"REQUEST_TIME\";s:10:\"1370607690\";s:25:\"comment_post_modified_gmt\";s:19:\"2013-06-07 11:39:52\";}');
INSERT INTO `smrc_commentmeta` VALUES (149,34,'rating','5');
INSERT INTO `smrc_commentmeta` VALUES (150,34,'akismet_history','a:4:{s:4:\"time\";d:1370607954.723174;s:7:\"message\";s:46:\"wooteam changed the comment status to approved\";s:5:\"event\";s:15:\"status-approved\";s:4:\"user\";s:7:\"wooteam\";}');
INSERT INTO `smrc_commentmeta` VALUES (151,35,'akismet_error','1370607727');
INSERT INTO `smrc_commentmeta` VALUES (152,35,'akismet_history','a:4:{s:4:\"time\";d:1370607727.715123;s:7:\"message\";s:92:\"Akismet was unable to check this comment (response: ), will automatically retry again later.\";s:5:\"event\";s:11:\"check-error\";s:4:\"user\";s:0:\"\";}');
INSERT INTO `smrc_commentmeta` VALUES (153,35,'akismet_as_submitted','a:66:{s:15:\"comment_post_ID\";i:90;s:14:\"comment_author\";s:11:\"Coen Jacobs\";s:20:\"comment_author_email\";s:18:\"coen@woothemes.com\";s:18:\"comment_author_url\";N;s:15:\"comment_content\";s:104:\"This album gets a bit boring after you\'ve listened to it more than once. Worth that first listen though.\";s:12:\"comment_type\";s:0:\"\";s:14:\"comment_parent\";i:0;s:7:\"user_ID\";i:0;s:7:\"user_ip\";s:12:\"84.39.28.254\";s:10:\"user_agent\";s:120:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/27.0.1453.110 Safari/537.36\";s:8:\"referrer\";s:59:\"http://demo2.woothemes.com/woocommerce/product/woo-album-3/\";s:4:\"blog\";s:38:\"http://demo2.woothemes.com/woocommerce\";s:9:\"blog_lang\";s:5:\"en_US\";s:12:\"blog_charset\";s:5:\"UTF-8\";s:9:\"permalink\";s:59:\"http://demo2.woothemes.com/woocommerce/product/woo-album-3/\";s:21:\"akismet_comment_nonce\";s:6:\"passed\";s:11:\"POST_author\";s:11:\"Coen Jacobs\";s:10:\"POST_email\";s:18:\"coen@woothemes.com\";s:11:\"POST_rating\";s:1:\"3\";s:12:\"POST_comment\";s:104:\"This album gets a bit boring after you\'ve listened to it more than once. Worth that first listen though.\";s:7:\"POST__n\";s:10:\"2145d644a3\";s:21:\"POST__wp_http_referer\";s:33:\"/woocommerce/product/woo-album-3/\";s:11:\"POST_submit\";s:13:\"Submit Review\";s:20:\"POST_comment_post_ID\";s:2:\"90\";s:19:\"POST_comment_parent\";s:1:\"0\";s:26:\"POST_akismet_comment_nonce\";s:10:\"80cf1a3ac9\";s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:33:\"/woocommerce/wp-comments-post.php\";s:15:\"REDIRECT_IS_WPE\";s:1:\"1\";s:27:\"REDIRECT_WPE_CAN_WRITE_DISK\";s:1:\"0\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:6:\"IS_WPE\";s:1:\"1\";s:18:\"WPE_CAN_WRITE_DISK\";s:1:\"0\";s:9:\"HTTP_HOST\";s:19:\"demo2.woothemes.com\";s:13:\"HTTP_X_LB_KEY\";s:8:\"woodemo2\";s:13:\"HTTP_X_IS_BOT\";s:1:\"0\";s:15:\"HTTP_USER_AGENT\";s:120:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/27.0.1453.110 Safari/537.36\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:14:\"CONTENT_LENGTH\";s:3:\"332\";s:18:\"HTTP_CACHE_CONTROL\";s:9:\"max-age=0\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:11:\"HTTP_ORIGIN\";s:26:\"http://demo2.woothemes.com\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:12:\"HTTP_REFERER\";s:59:\"http://demo2.woothemes.com/woocommerce/product/woo-album-3/\";s:20:\"HTTP_ACCEPT_ENCODING\";s:17:\"gzip,deflate,sdch\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:23:\"en-US,en;q=0.8,nl;q=0.6\";s:11:\"HTTP_COOKIE\";s:0:\"\";s:4:\"PATH\";s:28:\"/usr/local/bin:/usr/bin:/bin\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SERVER_NAME\";s:19:\"demo2.woothemes.com\";s:11:\"SERVER_ADDR\";s:9:\"127.0.0.1\";s:11:\"SERVER_PORT\";s:2:\"80\";s:11:\"REMOTE_ADDR\";s:12:\"84.39.28.254\";s:13:\"DOCUMENT_ROOT\";s:26:\"/nas/wp/www/sites/woodemo2\";s:12:\"SERVER_ADMIN\";s:18:\"[no address given]\";s:15:\"SCRIPT_FILENAME\";s:47:\"/nas/wp/www/sites/woodemo2/wp-comments-post.php\";s:11:\"REMOTE_PORT\";s:5:\"10605\";s:12:\"REDIRECT_URL\";s:33:\"/woocommerce/wp-comments-post.php\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.0\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:12:\"QUERY_STRING\";s:0:\"\";s:11:\"SCRIPT_NAME\";s:21:\"/wp-comments-post.php\";s:8:\"PHP_SELF\";s:21:\"/wp-comments-post.php\";s:12:\"REQUEST_TIME\";s:10:\"1370607727\";s:25:\"comment_post_modified_gmt\";s:19:\"2013-06-07 11:39:44\";}');
INSERT INTO `smrc_commentmeta` VALUES (154,35,'rating','3');
INSERT INTO `smrc_commentmeta` VALUES (155,35,'akismet_history','a:4:{s:4:\"time\";d:1370607956.622515;s:7:\"message\";s:46:\"wooteam changed the comment status to approved\";s:5:\"event\";s:15:\"status-approved\";s:4:\"user\";s:7:\"wooteam\";}');
INSERT INTO `smrc_commentmeta` VALUES (156,36,'akismet_error','1370606192');
INSERT INTO `smrc_commentmeta` VALUES (157,36,'akismet_history','a:4:{s:4:\"time\";d:1370606192.689786;s:7:\"message\";s:92:\"Akismet was unable to check this comment (response: ), will automatically retry again later.\";s:5:\"event\";s:11:\"check-error\";s:4:\"user\";s:0:\"\";}');
INSERT INTO `smrc_commentmeta` VALUES (158,36,'akismet_as_submitted','a:67:{s:15:\"comment_post_ID\";i:87;s:14:\"comment_author\";s:12:\"Cobus Bester\";s:20:\"comment_author_email\";s:18:\"bester.c@gmail.com\";s:18:\"comment_author_url\";N;s:15:\"comment_content\";s:72:\"Wonderful collection of WooThemes classics! A must buy for all Woo fans.\";s:12:\"comment_type\";s:0:\"\";s:14:\"comment_parent\";i:0;s:7:\"user_ID\";i:0;s:7:\"user_ip\";s:13:\"196.215.9.147\";s:10:\"user_agent\";s:119:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.31 (KHTML, like Gecko) Chrome/26.0.1410.65 Safari/537.31\";s:8:\"referrer\";s:59:\"http://demo2.woothemes.com/woocommerce/product/woo-album-2/\";s:4:\"blog\";s:38:\"http://demo2.woothemes.com/woocommerce\";s:9:\"blog_lang\";s:5:\"en_US\";s:12:\"blog_charset\";s:5:\"UTF-8\";s:9:\"permalink\";s:59:\"http://demo2.woothemes.com/woocommerce/product/woo-album-2/\";s:21:\"akismet_comment_nonce\";s:6:\"passed\";s:11:\"POST_author\";s:12:\"Cobus Bester\";s:10:\"POST_email\";s:18:\"bester.c@gmail.com\";s:11:\"POST_rating\";s:1:\"4\";s:12:\"POST_comment\";s:72:\"Wonderful collection of WooThemes classics! A must buy for all Woo fans.\";s:7:\"POST__n\";s:10:\"a80bd2f042\";s:21:\"POST__wp_http_referer\";s:33:\"/woocommerce/product/woo-album-2/\";s:11:\"POST_submit\";s:13:\"Submit Review\";s:20:\"POST_comment_post_ID\";s:2:\"87\";s:19:\"POST_comment_parent\";s:1:\"0\";s:26:\"POST_akismet_comment_nonce\";s:10:\"0f8261c8a1\";s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:33:\"/woocommerce/wp-comments-post.php\";s:15:\"REDIRECT_IS_WPE\";s:1:\"1\";s:27:\"REDIRECT_WPE_CAN_WRITE_DISK\";s:1:\"0\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:6:\"IS_WPE\";s:1:\"1\";s:18:\"WPE_CAN_WRITE_DISK\";s:1:\"0\";s:9:\"HTTP_HOST\";s:19:\"demo2.woothemes.com\";s:13:\"HTTP_X_LB_KEY\";s:8:\"woodemo2\";s:13:\"HTTP_X_IS_BOT\";s:1:\"0\";s:15:\"HTTP_USER_AGENT\";s:119:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.31 (KHTML, like Gecko) Chrome/26.0.1410.65 Safari/537.31\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:14:\"CONTENT_LENGTH\";s:3:\"301\";s:18:\"HTTP_CACHE_CONTROL\";s:9:\"max-age=0\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:11:\"HTTP_ORIGIN\";s:26:\"http://demo2.woothemes.com\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:12:\"HTTP_REFERER\";s:59:\"http://demo2.woothemes.com/woocommerce/product/woo-album-2/\";s:20:\"HTTP_ACCEPT_ENCODING\";s:17:\"gzip,deflate,sdch\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.8\";s:19:\"HTTP_ACCEPT_CHARSET\";s:30:\"ISO-8859-1,utf-8;q=0.7,*;q=0.3\";s:11:\"HTTP_COOKIE\";s:0:\"\";s:4:\"PATH\";s:28:\"/usr/local/bin:/usr/bin:/bin\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SERVER_NAME\";s:19:\"demo2.woothemes.com\";s:11:\"SERVER_ADDR\";s:9:\"127.0.0.1\";s:11:\"SERVER_PORT\";s:2:\"80\";s:11:\"REMOTE_ADDR\";s:13:\"196.215.9.147\";s:13:\"DOCUMENT_ROOT\";s:26:\"/nas/wp/www/sites/woodemo2\";s:12:\"SERVER_ADMIN\";s:18:\"[no address given]\";s:15:\"SCRIPT_FILENAME\";s:47:\"/nas/wp/www/sites/woodemo2/wp-comments-post.php\";s:11:\"REMOTE_PORT\";s:5:\"56904\";s:12:\"REDIRECT_URL\";s:33:\"/woocommerce/wp-comments-post.php\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.0\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:12:\"QUERY_STRING\";s:0:\"\";s:11:\"SCRIPT_NAME\";s:21:\"/wp-comments-post.php\";s:8:\"PHP_SELF\";s:21:\"/wp-comments-post.php\";s:12:\"REQUEST_TIME\";s:10:\"1370606192\";s:25:\"comment_post_modified_gmt\";s:19:\"2013-06-07 11:39:39\";}');
INSERT INTO `smrc_commentmeta` VALUES (159,36,'rating','4');
INSERT INTO `smrc_commentmeta` VALUES (160,36,'akismet_history','a:4:{s:4:\"time\";d:1370607936.702689;s:7:\"message\";s:46:\"wooteam changed the comment status to approved\";s:5:\"event\";s:15:\"status-approved\";s:4:\"user\";s:7:\"wooteam\";}');
INSERT INTO `smrc_commentmeta` VALUES (161,37,'akismet_error','1370606323');
INSERT INTO `smrc_commentmeta` VALUES (162,37,'akismet_history','a:4:{s:4:\"time\";d:1370606323.791991;s:7:\"message\";s:92:\"Akismet was unable to check this comment (response: ), will automatically retry again later.\";s:5:\"event\";s:11:\"check-error\";s:4:\"user\";s:0:\"\";}');
INSERT INTO `smrc_commentmeta` VALUES (163,37,'akismet_as_submitted','a:67:{s:15:\"comment_post_ID\";i:99;s:14:\"comment_author\";s:12:\"Cobus Bester\";s:20:\"comment_author_email\";s:18:\"bester.c@gmail.com\";s:18:\"comment_author_url\";N;s:15:\"comment_content\";s:70:\"This album proves why The Woo are the best band ever. Best music ever!\";s:12:\"comment_type\";s:0:\"\";s:14:\"comment_parent\";i:0;s:7:\"user_ID\";i:0;s:7:\"user_ip\";s:13:\"196.215.9.147\";s:10:\"user_agent\";s:119:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.31 (KHTML, like Gecko) Chrome/26.0.1410.65 Safari/537.31\";s:8:\"referrer\";s:60:\"http://demo2.woothemes.com/woocommerce/product/woo-single-2/\";s:4:\"blog\";s:38:\"http://demo2.woothemes.com/woocommerce\";s:9:\"blog_lang\";s:5:\"en_US\";s:12:\"blog_charset\";s:5:\"UTF-8\";s:9:\"permalink\";s:60:\"http://demo2.woothemes.com/woocommerce/product/woo-single-2/\";s:21:\"akismet_comment_nonce\";s:6:\"passed\";s:11:\"POST_author\";s:12:\"Cobus Bester\";s:10:\"POST_email\";s:18:\"bester.c@gmail.com\";s:11:\"POST_rating\";s:1:\"4\";s:12:\"POST_comment\";s:70:\"This album proves why The Woo are the best band ever. Best music ever!\";s:7:\"POST__n\";s:10:\"a80bd2f042\";s:21:\"POST__wp_http_referer\";s:34:\"/woocommerce/product/woo-single-2/\";s:11:\"POST_submit\";s:13:\"Submit Review\";s:20:\"POST_comment_post_ID\";s:2:\"99\";s:19:\"POST_comment_parent\";s:1:\"0\";s:26:\"POST_akismet_comment_nonce\";s:10:\"059233ad6f\";s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:33:\"/woocommerce/wp-comments-post.php\";s:15:\"REDIRECT_IS_WPE\";s:1:\"1\";s:27:\"REDIRECT_WPE_CAN_WRITE_DISK\";s:1:\"0\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:6:\"IS_WPE\";s:1:\"1\";s:18:\"WPE_CAN_WRITE_DISK\";s:1:\"0\";s:9:\"HTTP_HOST\";s:19:\"demo2.woothemes.com\";s:13:\"HTTP_X_LB_KEY\";s:8:\"woodemo2\";s:13:\"HTTP_X_IS_BOT\";s:1:\"0\";s:15:\"HTTP_USER_AGENT\";s:119:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.31 (KHTML, like Gecko) Chrome/26.0.1410.65 Safari/537.31\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:14:\"CONTENT_LENGTH\";s:3:\"300\";s:18:\"HTTP_CACHE_CONTROL\";s:9:\"max-age=0\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:11:\"HTTP_ORIGIN\";s:26:\"http://demo2.woothemes.com\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:12:\"HTTP_REFERER\";s:60:\"http://demo2.woothemes.com/woocommerce/product/woo-single-2/\";s:20:\"HTTP_ACCEPT_ENCODING\";s:17:\"gzip,deflate,sdch\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.8\";s:19:\"HTTP_ACCEPT_CHARSET\";s:30:\"ISO-8859-1,utf-8;q=0.7,*;q=0.3\";s:11:\"HTTP_COOKIE\";s:0:\"\";s:4:\"PATH\";s:28:\"/usr/local/bin:/usr/bin:/bin\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SERVER_NAME\";s:19:\"demo2.woothemes.com\";s:11:\"SERVER_ADDR\";s:9:\"127.0.0.1\";s:11:\"SERVER_PORT\";s:2:\"80\";s:11:\"REMOTE_ADDR\";s:13:\"196.215.9.147\";s:13:\"DOCUMENT_ROOT\";s:26:\"/nas/wp/www/sites/woodemo2\";s:12:\"SERVER_ADMIN\";s:18:\"[no address given]\";s:15:\"SCRIPT_FILENAME\";s:47:\"/nas/wp/www/sites/woodemo2/wp-comments-post.php\";s:11:\"REMOTE_PORT\";s:5:\"58583\";s:12:\"REDIRECT_URL\";s:33:\"/woocommerce/wp-comments-post.php\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.0\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:12:\"QUERY_STRING\";s:0:\"\";s:11:\"SCRIPT_NAME\";s:21:\"/wp-comments-post.php\";s:8:\"PHP_SELF\";s:21:\"/wp-comments-post.php\";s:12:\"REQUEST_TIME\";s:10:\"1370606323\";s:25:\"comment_post_modified_gmt\";s:19:\"2013-06-07 11:39:32\";}');
INSERT INTO `smrc_commentmeta` VALUES (164,37,'rating','4');
INSERT INTO `smrc_commentmeta` VALUES (165,37,'akismet_history','a:4:{s:4:\"time\";d:1370607945.939826;s:7:\"message\";s:46:\"wooteam changed the comment status to approved\";s:5:\"event\";s:15:\"status-approved\";s:4:\"user\";s:7:\"wooteam\";}');
INSERT INTO `smrc_commentmeta` VALUES (166,38,'akismet_error','1370620368');
INSERT INTO `smrc_commentmeta` VALUES (167,38,'akismet_history','a:4:{s:4:\"time\";d:1370620368.794316;s:7:\"message\";s:92:\"Akismet was unable to check this comment (response: ), will automatically retry again later.\";s:5:\"event\";s:11:\"check-error\";s:4:\"user\";s:0:\"\";}');
INSERT INTO `smrc_commentmeta` VALUES (168,38,'akismet_as_submitted','a:66:{s:15:\"comment_post_ID\";i:99;s:14:\"comment_author\";s:5:\"Maria\";s:20:\"comment_author_email\";s:19:\"maria@woothemes.com\";s:18:\"comment_author_url\";N;s:15:\"comment_content\";s:83:\"Can’t wait to start mixin’ with this one! Irba-irr-Up-up-up-up-date your theme!\";s:12:\"comment_type\";s:0:\"\";s:14:\"comment_parent\";i:0;s:7:\"user_ID\";i:0;s:7:\"user_ip\";s:13:\"24.225.103.32\";s:10:\"user_agent\";s:120:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/27.0.1453.110 Safari/537.36\";s:8:\"referrer\";s:60:\"http://demo2.woothemes.com/woocommerce/product/woo-single-2/\";s:4:\"blog\";s:38:\"http://demo2.woothemes.com/woocommerce\";s:9:\"blog_lang\";s:5:\"en_US\";s:12:\"blog_charset\";s:5:\"UTF-8\";s:9:\"permalink\";s:60:\"http://demo2.woothemes.com/woocommerce/product/woo-single-2/\";s:21:\"akismet_comment_nonce\";s:6:\"passed\";s:11:\"POST_author\";s:5:\"Maria\";s:10:\"POST_email\";s:19:\"maria@woothemes.com\";s:11:\"POST_rating\";s:1:\"5\";s:12:\"POST_comment\";s:83:\"Can’t wait to start mixin’ with this one! Irba-irr-Up-up-up-up-date your theme!\";s:7:\"POST__n\";s:10:\"2145d644a3\";s:21:\"POST__wp_http_referer\";s:34:\"/woocommerce/product/woo-single-2/\";s:11:\"POST_submit\";s:13:\"Submit Review\";s:20:\"POST_comment_post_ID\";s:2:\"99\";s:19:\"POST_comment_parent\";s:1:\"0\";s:26:\"POST_akismet_comment_nonce\";s:10:\"55e6a1c67c\";s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:33:\"/woocommerce/wp-comments-post.php\";s:15:\"REDIRECT_IS_WPE\";s:1:\"1\";s:27:\"REDIRECT_WPE_CAN_WRITE_DISK\";s:1:\"0\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:6:\"IS_WPE\";s:1:\"1\";s:18:\"WPE_CAN_WRITE_DISK\";s:1:\"0\";s:9:\"HTTP_HOST\";s:19:\"demo2.woothemes.com\";s:13:\"HTTP_X_LB_KEY\";s:8:\"woodemo2\";s:13:\"HTTP_X_IS_BOT\";s:1:\"0\";s:15:\"HTTP_USER_AGENT\";s:120:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/27.0.1453.110 Safari/537.36\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:14:\"CONTENT_LENGTH\";s:3:\"321\";s:18:\"HTTP_CACHE_CONTROL\";s:9:\"max-age=0\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:11:\"HTTP_ORIGIN\";s:26:\"http://demo2.woothemes.com\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:12:\"HTTP_REFERER\";s:60:\"http://demo2.woothemes.com/woocommerce/product/woo-single-2/\";s:20:\"HTTP_ACCEPT_ENCODING\";s:17:\"gzip,deflate,sdch\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.8\";s:11:\"HTTP_COOKIE\";s:0:\"\";s:4:\"PATH\";s:28:\"/usr/local/bin:/usr/bin:/bin\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SERVER_NAME\";s:19:\"demo2.woothemes.com\";s:11:\"SERVER_ADDR\";s:9:\"127.0.0.1\";s:11:\"SERVER_PORT\";s:2:\"80\";s:11:\"REMOTE_ADDR\";s:13:\"24.225.103.32\";s:13:\"DOCUMENT_ROOT\";s:26:\"/nas/wp/www/sites/woodemo2\";s:12:\"SERVER_ADMIN\";s:18:\"[no address given]\";s:15:\"SCRIPT_FILENAME\";s:47:\"/nas/wp/www/sites/woodemo2/wp-comments-post.php\";s:11:\"REMOTE_PORT\";s:5:\"26649\";s:12:\"REDIRECT_URL\";s:33:\"/woocommerce/wp-comments-post.php\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.0\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:12:\"QUERY_STRING\";s:0:\"\";s:11:\"SCRIPT_NAME\";s:21:\"/wp-comments-post.php\";s:8:\"PHP_SELF\";s:21:\"/wp-comments-post.php\";s:12:\"REQUEST_TIME\";s:10:\"1370620368\";s:25:\"comment_post_modified_gmt\";s:19:\"2013-06-07 11:39:32\";}');
INSERT INTO `smrc_commentmeta` VALUES (169,38,'rating','5');
INSERT INTO `smrc_commentmeta` VALUES (170,38,'akismet_history','a:4:{s:4:\"time\";d:1370620633.946987;s:7:\"message\";s:46:\"wooteam changed the comment status to approved\";s:5:\"event\";s:15:\"status-approved\";s:4:\"user\";s:7:\"wooteam\";}');
INSERT INTO `smrc_commentmeta` VALUES (171,39,'akismet_error','1370608744');
INSERT INTO `smrc_commentmeta` VALUES (172,39,'akismet_history','a:4:{s:4:\"time\";d:1370608744.324287;s:7:\"message\";s:92:\"Akismet was unable to check this comment (response: ), will automatically retry again later.\";s:5:\"event\";s:11:\"check-error\";s:4:\"user\";s:0:\"\";}');
INSERT INTO `smrc_commentmeta` VALUES (173,39,'akismet_as_submitted','a:66:{s:15:\"comment_post_ID\";i:73;s:14:\"comment_author\";s:3:\"Dan\";s:20:\"comment_author_email\";s:17:\"dan@woothemes.com\";s:18:\"comment_author_url\";N;s:15:\"comment_content\";s:135:\"I thought I was buying a man holding a poster, but when it arrived it was just the poster. Cool poster though, so I\'ll give it 3 stars!\";s:12:\"comment_type\";s:0:\"\";s:14:\"comment_parent\";i:0;s:7:\"user_ID\";i:0;s:7:\"user_ip\";s:13:\"188.221.1.167\";s:10:\"user_agent\";s:120:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/27.0.1453.110 Safari/537.36\";s:8:\"referrer\";s:65:\"http://demo2.woothemes.com/woocommerce/product/premium-quality-2/\";s:4:\"blog\";s:38:\"http://demo2.woothemes.com/woocommerce\";s:9:\"blog_lang\";s:5:\"en_US\";s:12:\"blog_charset\";s:5:\"UTF-8\";s:9:\"permalink\";s:65:\"http://demo2.woothemes.com/woocommerce/product/premium-quality-2/\";s:21:\"akismet_comment_nonce\";s:6:\"passed\";s:11:\"POST_author\";s:3:\"Dan\";s:10:\"POST_email\";s:17:\"dan@woothemes.com\";s:11:\"POST_rating\";s:1:\"3\";s:12:\"POST_comment\";s:135:\"I thought I was buying a man holding a poster, but when it arrived it was just the poster. Cool poster though, so I\'ll give it 3 stars!\";s:7:\"POST__n\";s:10:\"2145d644a3\";s:21:\"POST__wp_http_referer\";s:39:\"/woocommerce/product/premium-quality-2/\";s:11:\"POST_submit\";s:13:\"Submit Review\";s:20:\"POST_comment_post_ID\";s:2:\"73\";s:19:\"POST_comment_parent\";s:1:\"0\";s:26:\"POST_akismet_comment_nonce\";s:10:\"441b7bcdc8\";s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:33:\"/woocommerce/wp-comments-post.php\";s:15:\"REDIRECT_IS_WPE\";s:1:\"1\";s:27:\"REDIRECT_WPE_CAN_WRITE_DISK\";s:1:\"0\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:6:\"IS_WPE\";s:1:\"1\";s:18:\"WPE_CAN_WRITE_DISK\";s:1:\"0\";s:9:\"HTTP_HOST\";s:19:\"demo2.woothemes.com\";s:13:\"HTTP_X_LB_KEY\";s:8:\"woodemo2\";s:13:\"HTTP_X_IS_BOT\";s:1:\"0\";s:15:\"HTTP_USER_AGENT\";s:120:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/27.0.1453.110 Safari/537.36\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:14:\"CONTENT_LENGTH\";s:3:\"366\";s:18:\"HTTP_CACHE_CONTROL\";s:9:\"max-age=0\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:11:\"HTTP_ORIGIN\";s:26:\"http://demo2.woothemes.com\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:12:\"HTTP_REFERER\";s:65:\"http://demo2.woothemes.com/woocommerce/product/premium-quality-2/\";s:20:\"HTTP_ACCEPT_ENCODING\";s:17:\"gzip,deflate,sdch\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.8\";s:11:\"HTTP_COOKIE\";s:0:\"\";s:4:\"PATH\";s:28:\"/usr/local/bin:/usr/bin:/bin\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SERVER_NAME\";s:19:\"demo2.woothemes.com\";s:11:\"SERVER_ADDR\";s:9:\"127.0.0.1\";s:11:\"SERVER_PORT\";s:2:\"80\";s:11:\"REMOTE_ADDR\";s:13:\"188.221.1.167\";s:13:\"DOCUMENT_ROOT\";s:26:\"/nas/wp/www/sites/woodemo2\";s:12:\"SERVER_ADMIN\";s:18:\"[no address given]\";s:15:\"SCRIPT_FILENAME\";s:47:\"/nas/wp/www/sites/woodemo2/wp-comments-post.php\";s:11:\"REMOTE_PORT\";s:5:\"22513\";s:12:\"REDIRECT_URL\";s:33:\"/woocommerce/wp-comments-post.php\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.0\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:12:\"QUERY_STRING\";s:0:\"\";s:11:\"SCRIPT_NAME\";s:21:\"/wp-comments-post.php\";s:8:\"PHP_SELF\";s:21:\"/wp-comments-post.php\";s:12:\"REQUEST_TIME\";s:10:\"1370608744\";s:25:\"comment_post_modified_gmt\";s:19:\"2013-06-07 11:27:38\";}');
INSERT INTO `smrc_commentmeta` VALUES (174,39,'rating','3');
INSERT INTO `smrc_commentmeta` VALUES (175,39,'akismet_history','a:4:{s:4:\"time\";d:1370609036.197259;s:7:\"message\";s:46:\"wooteam changed the comment status to approved\";s:5:\"event\";s:15:\"status-approved\";s:4:\"user\";s:7:\"wooteam\";}');
INSERT INTO `smrc_commentmeta` VALUES (176,40,'akismet_error','1370620529');
INSERT INTO `smrc_commentmeta` VALUES (177,40,'akismet_history','a:4:{s:4:\"time\";d:1370620529.737782;s:7:\"message\";s:92:\"Akismet was unable to check this comment (response: ), will automatically retry again later.\";s:5:\"event\";s:11:\"check-error\";s:4:\"user\";s:0:\"\";}');
INSERT INTO `smrc_commentmeta` VALUES (178,40,'akismet_as_submitted','');
INSERT INTO `smrc_commentmeta` VALUES (179,40,'rating','1');
INSERT INTO `smrc_commentmeta` VALUES (180,40,'akismet_history','a:4:{s:4:\"time\";d:1370620633.734987;s:7:\"message\";s:46:\"wooteam changed the comment status to approved\";s:5:\"event\";s:15:\"status-approved\";s:4:\"user\";s:7:\"wooteam\";}');
INSERT INTO `smrc_commentmeta` VALUES (181,41,'akismet_error','1370620584');
INSERT INTO `smrc_commentmeta` VALUES (182,41,'akismet_history','a:4:{s:4:\"time\";d:1370620584.252112;s:7:\"message\";s:92:\"Akismet was unable to check this comment (response: ), will automatically retry again later.\";s:5:\"event\";s:11:\"check-error\";s:4:\"user\";s:0:\"\";}');
INSERT INTO `smrc_commentmeta` VALUES (183,41,'akismet_as_submitted','a:66:{s:15:\"comment_post_ID\";i:76;s:14:\"comment_author\";s:5:\"Maria\";s:20:\"comment_author_email\";s:19:\"maria@woothemes.com\";s:18:\"comment_author_url\";N;s:15:\"comment_content\";s:44:\"He really is the cutest little man. Swoooon!\";s:12:\"comment_type\";s:0:\"\";s:14:\"comment_parent\";i:0;s:7:\"user_ID\";i:0;s:7:\"user_ip\";s:13:\"24.225.103.32\";s:10:\"user_agent\";s:120:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/27.0.1453.110 Safari/537.36\";s:8:\"referrer\";s:59:\"http://demo2.woothemes.com/woocommerce/product/woo-ninja-3/\";s:4:\"blog\";s:38:\"http://demo2.woothemes.com/woocommerce\";s:9:\"blog_lang\";s:5:\"en_US\";s:12:\"blog_charset\";s:5:\"UTF-8\";s:9:\"permalink\";s:59:\"http://demo2.woothemes.com/woocommerce/product/woo-ninja-3/\";s:21:\"akismet_comment_nonce\";s:6:\"passed\";s:11:\"POST_author\";s:5:\"Maria\";s:10:\"POST_email\";s:19:\"maria@woothemes.com\";s:11:\"POST_rating\";s:1:\"4\";s:12:\"POST_comment\";s:45:\"He really is the cutest little man. Swoooon! \";s:7:\"POST__n\";s:10:\"2145d644a3\";s:21:\"POST__wp_http_referer\";s:33:\"/woocommerce/product/woo-ninja-3/\";s:11:\"POST_submit\";s:13:\"Submit Review\";s:20:\"POST_comment_post_ID\";s:2:\"76\";s:19:\"POST_comment_parent\";s:1:\"0\";s:26:\"POST_akismet_comment_nonce\";s:10:\"29cab5ecf2\";s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:33:\"/woocommerce/wp-comments-post.php\";s:15:\"REDIRECT_IS_WPE\";s:1:\"1\";s:27:\"REDIRECT_WPE_CAN_WRITE_DISK\";s:1:\"0\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:6:\"IS_WPE\";s:1:\"1\";s:18:\"WPE_CAN_WRITE_DISK\";s:1:\"0\";s:9:\"HTTP_HOST\";s:19:\"demo2.woothemes.com\";s:13:\"HTTP_X_LB_KEY\";s:8:\"woodemo2\";s:13:\"HTTP_X_IS_BOT\";s:1:\"0\";s:15:\"HTTP_USER_AGENT\";s:120:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/27.0.1453.110 Safari/537.36\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:14:\"CONTENT_LENGTH\";s:3:\"268\";s:18:\"HTTP_CACHE_CONTROL\";s:9:\"max-age=0\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:11:\"HTTP_ORIGIN\";s:26:\"http://demo2.woothemes.com\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:12:\"HTTP_REFERER\";s:59:\"http://demo2.woothemes.com/woocommerce/product/woo-ninja-3/\";s:20:\"HTTP_ACCEPT_ENCODING\";s:17:\"gzip,deflate,sdch\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.8\";s:11:\"HTTP_COOKIE\";s:0:\"\";s:4:\"PATH\";s:28:\"/usr/local/bin:/usr/bin:/bin\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SERVER_NAME\";s:19:\"demo2.woothemes.com\";s:11:\"SERVER_ADDR\";s:9:\"127.0.0.1\";s:11:\"SERVER_PORT\";s:2:\"80\";s:11:\"REMOTE_ADDR\";s:13:\"24.225.103.32\";s:13:\"DOCUMENT_ROOT\";s:26:\"/nas/wp/www/sites/woodemo2\";s:12:\"SERVER_ADMIN\";s:18:\"[no address given]\";s:15:\"SCRIPT_FILENAME\";s:47:\"/nas/wp/www/sites/woodemo2/wp-comments-post.php\";s:11:\"REMOTE_PORT\";s:5:\"28885\";s:12:\"REDIRECT_URL\";s:33:\"/woocommerce/wp-comments-post.php\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.0\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:12:\"QUERY_STRING\";s:0:\"\";s:11:\"SCRIPT_NAME\";s:21:\"/wp-comments-post.php\";s:8:\"PHP_SELF\";s:21:\"/wp-comments-post.php\";s:12:\"REQUEST_TIME\";s:10:\"1370620584\";s:25:\"comment_post_modified_gmt\";s:19:\"2013-06-07 11:28:45\";}');
INSERT INTO `smrc_commentmeta` VALUES (184,41,'rating','4');
INSERT INTO `smrc_commentmeta` VALUES (185,41,'akismet_history','a:4:{s:4:\"time\";d:1370620633.352141;s:7:\"message\";s:46:\"wooteam changed the comment status to approved\";s:5:\"event\";s:15:\"status-approved\";s:4:\"user\";s:7:\"wooteam\";}');
INSERT INTO `smrc_commentmeta` VALUES (186,42,'akismet_error','1370606029');
INSERT INTO `smrc_commentmeta` VALUES (187,42,'akismet_history','a:4:{s:4:\"time\";d:1370606029.182049;s:7:\"message\";s:92:\"Akismet was unable to check this comment (response: ), will automatically retry again later.\";s:5:\"event\";s:11:\"check-error\";s:4:\"user\";s:0:\"\";}');
INSERT INTO `smrc_commentmeta` VALUES (188,42,'akismet_as_submitted','a:67:{s:15:\"comment_post_ID\";i:19;s:14:\"comment_author\";s:12:\"Cobus Bester\";s:20:\"comment_author_email\";s:18:\"bester.c@gmail.com\";s:18:\"comment_author_url\";N;s:15:\"comment_content\";s:56:\"Wonderful quality, and an awesome design. WooThemes ftw!\";s:12:\"comment_type\";s:0:\"\";s:14:\"comment_parent\";i:0;s:7:\"user_ID\";i:0;s:7:\"user_ip\";s:13:\"196.215.9.147\";s:10:\"user_agent\";s:119:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.31 (KHTML, like Gecko) Chrome/26.0.1410.65 Safari/537.31\";s:8:\"referrer\";s:63:\"http://demo2.woothemes.com/woocommerce/product/premium-quality/\";s:4:\"blog\";s:38:\"http://demo2.woothemes.com/woocommerce\";s:9:\"blog_lang\";s:5:\"en_US\";s:12:\"blog_charset\";s:5:\"UTF-8\";s:9:\"permalink\";s:63:\"http://demo2.woothemes.com/woocommerce/product/premium-quality/\";s:21:\"akismet_comment_nonce\";s:6:\"passed\";s:11:\"POST_author\";s:12:\"Cobus Bester\";s:10:\"POST_email\";s:18:\"bester.c@gmail.com\";s:11:\"POST_rating\";s:1:\"4\";s:12:\"POST_comment\";s:56:\"Wonderful quality, and an awesome design. WooThemes ftw!\";s:7:\"POST__n\";s:10:\"a80bd2f042\";s:21:\"POST__wp_http_referer\";s:37:\"/woocommerce/product/premium-quality/\";s:11:\"POST_submit\";s:13:\"Submit Review\";s:20:\"POST_comment_post_ID\";s:2:\"19\";s:19:\"POST_comment_parent\";s:1:\"0\";s:26:\"POST_akismet_comment_nonce\";s:10:\"0f92b67011\";s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:33:\"/woocommerce/wp-comments-post.php\";s:15:\"REDIRECT_IS_WPE\";s:1:\"1\";s:27:\"REDIRECT_WPE_CAN_WRITE_DISK\";s:1:\"0\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:6:\"IS_WPE\";s:1:\"1\";s:18:\"WPE_CAN_WRITE_DISK\";s:1:\"0\";s:9:\"HTTP_HOST\";s:19:\"demo2.woothemes.com\";s:13:\"HTTP_X_LB_KEY\";s:8:\"woodemo2\";s:13:\"HTTP_X_IS_BOT\";s:1:\"0\";s:15:\"HTTP_USER_AGENT\";s:119:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.31 (KHTML, like Gecko) Chrome/26.0.1410.65 Safari/537.31\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:14:\"CONTENT_LENGTH\";s:3:\"291\";s:18:\"HTTP_CACHE_CONTROL\";s:9:\"max-age=0\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:11:\"HTTP_ORIGIN\";s:26:\"http://demo2.woothemes.com\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:12:\"HTTP_REFERER\";s:63:\"http://demo2.woothemes.com/woocommerce/product/premium-quality/\";s:20:\"HTTP_ACCEPT_ENCODING\";s:17:\"gzip,deflate,sdch\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.8\";s:19:\"HTTP_ACCEPT_CHARSET\";s:30:\"ISO-8859-1,utf-8;q=0.7,*;q=0.3\";s:11:\"HTTP_COOKIE\";s:0:\"\";s:4:\"PATH\";s:28:\"/usr/local/bin:/usr/bin:/bin\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SERVER_NAME\";s:19:\"demo2.woothemes.com\";s:11:\"SERVER_ADDR\";s:9:\"127.0.0.1\";s:11:\"SERVER_PORT\";s:2:\"80\";s:11:\"REMOTE_ADDR\";s:13:\"196.215.9.147\";s:13:\"DOCUMENT_ROOT\";s:26:\"/nas/wp/www/sites/woodemo2\";s:12:\"SERVER_ADMIN\";s:18:\"[no address given]\";s:15:\"SCRIPT_FILENAME\";s:47:\"/nas/wp/www/sites/woodemo2/wp-comments-post.php\";s:11:\"REMOTE_PORT\";s:5:\"54854\";s:12:\"REDIRECT_URL\";s:33:\"/woocommerce/wp-comments-post.php\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.0\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:12:\"QUERY_STRING\";s:0:\"\";s:11:\"SCRIPT_NAME\";s:21:\"/wp-comments-post.php\";s:8:\"PHP_SELF\";s:21:\"/wp-comments-post.php\";s:12:\"REQUEST_TIME\";s:10:\"1370606029\";s:25:\"comment_post_modified_gmt\";s:19:\"2013-06-07 10:41:52\";}');
INSERT INTO `smrc_commentmeta` VALUES (189,42,'rating','4');
INSERT INTO `smrc_commentmeta` VALUES (190,42,'akismet_history','a:4:{s:4:\"time\";d:1370607930.621456;s:7:\"message\";s:46:\"wooteam changed the comment status to approved\";s:5:\"event\";s:15:\"status-approved\";s:4:\"user\";s:7:\"wooteam\";}');
INSERT INTO `smrc_commentmeta` VALUES (191,43,'akismet_error','1370606265');
INSERT INTO `smrc_commentmeta` VALUES (192,43,'akismet_history','a:4:{s:4:\"time\";d:1370606265.921319;s:7:\"message\";s:92:\"Akismet was unable to check this comment (response: ), will automatically retry again later.\";s:5:\"event\";s:11:\"check-error\";s:4:\"user\";s:0:\"\";}');
INSERT INTO `smrc_commentmeta` VALUES (193,43,'akismet_as_submitted','');
INSERT INTO `smrc_commentmeta` VALUES (194,43,'rating','5');
INSERT INTO `smrc_commentmeta` VALUES (195,43,'akismet_history','a:4:{s:4:\"time\";d:1370607942.468199;s:7:\"message\";s:46:\"wooteam changed the comment status to approved\";s:5:\"event\";s:15:\"status-approved\";s:4:\"user\";s:7:\"wooteam\";}');
--
-- Table structure for table `smrc_comments`
--
DROP TABLE IF EXISTS `smrc_comments`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `smrc_comments` (
`comment_ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`comment_post_ID` bigint(20) unsigned NOT NULL DEFAULT '0',
`comment_author` tinytext COLLATE utf8mb4_unicode_520_ci NOT NULL,
`comment_author_email` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`comment_author_url` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`comment_author_IP` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`comment_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`comment_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`comment_content` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
`comment_karma` int(11) NOT NULL DEFAULT '0',
`comment_approved` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '1',
`comment_agent` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`comment_type` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'comment',
`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)),
KEY `woo_idx_comment_type` (`comment_type`)
) ENGINE=InnoDB AUTO_INCREMENT=44 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `smrc_comments`
--
INSERT INTO `smrc_comments` VALUES (1,1,'A WordPress Commenter','wapuu@wordpress.example','https://wordpress.org/','','2021-04-02 10:58:22','2021-04-02 10:58:22','Hi, this is a comment.\nTo get started with moderating, editing, and deleting comments, please visit the Comments screen in the dashboard.\nCommenter avatars come from <a href=\"https://gravatar.com\">Gravatar</a>.',0,'1','','comment',0,0);
INSERT INTO `smrc_comments` VALUES (2,243,'admin','info@bold-themes.com','','192.168.0.67','2015-09-08 10:44:45','2015-09-08 10:44:45','Nam liber tempor cum soluta nobis eleifend option congue nihil imperdiet doming id quod mazim placerat facer possim assum. Typi non habent claritatem insitam; est usus legentis in iis qui facit eorum claritatem. Investigationes demonstraverunt lectores legere me lius quod ii legunt saepius. Claritas est etiam processus dynamicus, qui sequitur mutationem consuetudium lectorum. Mirum est notare quam littera gothica, quam nunc putamus parum claram, anteposuerit litterarum formas humanitatis per seacula quarta decima et quinta decima. Eodem modo typi, qui nunc nobis videntur parum clari, fiant sollemnes in futurum.',0,'1','','comment',0,0);
INSERT INTO `smrc_comments` VALUES (3,243,'admin','info@bold-themes.com','','192.168.0.67','2015-09-08 10:44:53','2015-09-08 10:44:53','Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla facilisi.',0,'1','','comment',0,0);
INSERT INTO `smrc_comments` VALUES (4,123,'Mr WordPress','','http://showcase.omnicom-dev.com/','','2015-09-03 10:30:44','2015-09-03 10:30:44','Hi, this is a comment.\nTo delete a comment, just log in and view the post's comments. There you will have the option to edit or delete them.',0,'1','','comment',0,0);
INSERT INTO `smrc_comments` VALUES (5,100,'Stuart','stuart@woothemes.com','','82.32.109.140','2013-06-07 13:01:25','2013-06-07 13:01:25','This will go great with my Hoodie that I ordered a few weeks ago.',0,'1','','review',0,0);
INSERT INTO `smrc_comments` VALUES (6,100,'Maria','maria@woothemes.com','','24.225.103.32','2013-06-07 15:49:53','2013-06-07 15:49:53','Love this shirt! The ninja near and dear to my heart. <3',0,'1','','review',0,0);
INSERT INTO `smrc_comments` VALUES (7,101,'Stuart','stuart@woothemes.com','','82.32.109.140','2013-06-07 13:03:29','2013-06-07 13:03:29','Another great quality product that anyone who see\'s me wearing has asked where to purchase one of their own.',0,'1','','review',0,0);
INSERT INTO `smrc_comments` VALUES (8,101,'Ryan','ryan@woothemes.com','','99.153.225.252','2013-06-07 13:24:52','2013-06-07 13:24:52','This hoodie gets me lots of looks while out in public, I got the blue one and it\'s awesome. Not sure if people are looking at my hoodie only, or also at my rocking bod.',0,'1','','review',0,0);
INSERT INTO `smrc_comments` VALUES (9,101,'Maria','maria@woothemes.com','','24.225.103.32','2013-06-07 15:53:31','2013-06-07 15:53:31','Ship it!',0,'1','','review',0,0);
INSERT INTO `smrc_comments` VALUES (10,98,'Cobus Bester','bester.c@gmail.com','','196.215.9.147','2013-06-07 11:54:32','2013-06-07 11:54:32','The ninja silhouette is one of my favorite designs. This is a great product.',0,'1','','review',0,0);
INSERT INTO `smrc_comments` VALUES (11,102,'Cobus Bester','bester.c@gmail.com','','196.215.9.147','2013-06-07 11:57:59','2013-06-07 11:57:59','This hoodie is great for those chilly winter days. I love the WooNinja!',0,'1','','review',0,0);
INSERT INTO `smrc_comments` VALUES (12,102,'Maria','maria@woothemes.com','','24.225.103.32','2013-06-07 15:53:13','2013-06-07 15:53:13','Perfect for the lady Ninja in your life!',0,'1','','review',0,0);
INSERT INTO `smrc_comments` VALUES (13,104,'Andrew','andrew@chromeorange.co.uk','','86.19.152.140','2013-06-07 11:54:51','2013-06-07 11:54:51','I bought this thinking it was a nice green colour, apparently it GREY! I\'m colour blind so I don\'t care but my girlfriend says grey makes me look fat',0,'1','','review',0,0);
INSERT INTO `smrc_comments` VALUES (14,104,'Maria','maria@woothemes.com','','24.225.103.32','2013-06-07 15:50:22','2013-06-07 15:50:22','I love grey hoodies! This is perfect with my grey Ninja shirt, when I get cold I throw this on and I can still be a Ninja.',0,'1','','review',0,0);
INSERT INTO `smrc_comments` VALUES (15,108,'Cobus Bester','bester.c@gmail.com','','196.215.9.147','2013-06-07 11:52:25','2013-06-07 11:52:25','Really happy with this print. The colors are great, and the paper quality is good too.',0,'1','','review',0,0);
INSERT INTO `smrc_comments` VALUES (16,108,'Andrew','andrew@chromeorange.co.uk','','86.19.152.140','2013-06-07 11:56:36','2013-06-07 11:56:36','You only get the picture, not the person holding it, something they don\'t mention in the description, now I\'ve got to find my own person',0,'1','','review',0,0);
INSERT INTO `smrc_comments` VALUES (17,108,'Coen Jacobs','coen@woothemes.com','','84.39.28.254','2013-06-07 12:19:25','2013-06-07 12:19:25','This is my favorite poster. In fact, I\'ve ordered 5 of them!',0,'1','','review',0,0);
INSERT INTO `smrc_comments` VALUES (18,108,'Stuart','stuart@woothemes.com','','82.32.109.140','2013-06-07 12:59:49','2013-06-07 12:59:49','This is a fantastic quality print and is happily hanging framed on my wall now.',0,'1','','review',0,0);
INSERT INTO `smrc_comments` VALUES (19,106,'Magnus','magnus@woothemes.com','','79.161.106.35','2013-06-07 12:04:33','2013-06-07 12:04:33','I like the logo but not the color.',0,'1','','review',0,0);
INSERT INTO `smrc_comments` VALUES (20,106,'Maria','maria@woothemes.com','','24.225.103.32','2013-06-07 15:54:25','2013-06-07 15:54:25','Three letters, one word: WOO!',0,'1','','review',0,0);
INSERT INTO `smrc_comments` VALUES (21,105,'student','student@woothemes.com','','196.215.9.147','2013-06-07 12:14:53','2013-06-07 12:14:53','Perfect Hoodie for a Ninja!',0,'1','','review',0,0);
INSERT INTO `smrc_comments` VALUES (22,105,'Coen Jacobs','coen@woothemes.com','','84.39.28.254','2013-06-07 12:20:56','2013-06-07 12:20:56','I have lots of hoodies, but none is as cool as this one!',0,'1','','review',0,0);
INSERT INTO `smrc_comments` VALUES (23,105,'Dan','dan@woothemes.com','','188.221.1.167','2013-06-07 12:41:42','2013-06-07 12:41:42','I love hoodies, and ninjas, so what could be better than a ninja hoodie? Not much, if you ask me!',0,'1','','review',0,0);
INSERT INTO `smrc_comments` VALUES (24,105,'Ryan','ryan@woothemes.com','','99.153.225.252','2013-06-07 13:26:40','2013-06-07 13:26:40','This is the most bombastic hoodie in this shop, it\'s soft and has the sly WooThemes ninja on it. Why wouldn\'t you buy this?',0,'1','','review',0,0);
INSERT INTO `smrc_comments` VALUES (25,105,'Maria','maria@woothemes.com','','24.225.103.32','2013-06-07 15:53:56','2013-06-07 15:53:56','This only gets 1 star because I don\'t have this yet. I want it now!',0,'1','','review',0,0);
INSERT INTO `smrc_comments` VALUES (26,97,'James Koster','james@jameskoster.co.uk','','86.146.141.82','2013-06-07 11:43:13','2013-06-07 11:43:13','Nice T-shirt, I got one in black. Goes with anything!',0,'1','','review',0,0);
INSERT INTO `smrc_comments` VALUES (27,97,'Cobus Bester','bester.c@gmail.com','','196.215.9.147','2013-06-07 11:55:15','2013-06-07 11:55:15','Very comfortable shirt, and I love the graphic!',0,'1','','review',0,0);
INSERT INTO `smrc_comments` VALUES (28,97,'Stuart','stuart@woothemes.com','','82.32.109.140','2013-06-07 13:02:14','2013-06-07 13:02:14','Great T-shirt quality, Great Design and Great Service.',0,'1','','review',0,0);
INSERT INTO `smrc_comments` VALUES (29,103,'James Koster','james@jameskoster.co.uk','','86.146.141.82','2013-06-07 11:46:52','2013-06-07 11:46:52','Perfect when you\'re sat at your computer, waiting for the next batch of Woo Goodies to be released. The Patient Ninja is Patient.',0,'1','','review',0,0);
INSERT INTO `smrc_comments` VALUES (30,103,'Cobus Bester','bester.c@gmail.com','','196.215.9.147','2013-06-07 11:53:13','2013-06-07 11:53:13','The most comfortable hoodie I have ever owned!',0,'1','','review',0,0);
INSERT INTO `smrc_comments` VALUES (31,103,'Magnus','magnus@woothemes.com','','79.161.106.35','2013-06-07 12:04:03','2013-06-07 12:04:03','This is my favorite hoodie!\n\nIf only it came in red as well!',0,'1','','review',0,0);
INSERT INTO `smrc_comments` VALUES (32,95,'Cobus Bester','bester.c@gmail.com','','196.215.9.147','2013-06-07 11:57:05','2013-06-07 11:57:05','Simple and effective design. One of my favorites.',0,'1','','review',0,0);
INSERT INTO `smrc_comments` VALUES (33,120,'James Koster','james@jameskoster.co.uk','','86.146.141.82','2013-06-07 11:44:50','2013-06-07 11:44:50','The most influential album of the last 25 years? This just might be it.',0,'1','','review',0,0);
INSERT INTO `smrc_comments` VALUES (34,120,'Coen Jacobs','coen@woothemes.com','','84.39.28.254','2013-06-07 12:21:30','2013-06-07 12:21:30','Some rad tunes on this album!',0,'1','','review',0,0);
INSERT INTO `smrc_comments` VALUES (35,118,'Coen Jacobs','coen@woothemes.com','','84.39.28.254','2013-06-07 12:22:07','2013-06-07 12:22:07','This album gets a bit boring after you\'ve listened to it more than once. Worth that first listen though.',0,'1','','review',0,0);
INSERT INTO `smrc_comments` VALUES (36,117,'Cobus Bester','bester.c@gmail.com','','196.215.9.147','2013-06-07 11:56:32','2013-06-07 11:56:32','Wonderful collection of WooThemes classics! A must buy for all Woo fans.',0,'1','','review',0,0);
INSERT INTO `smrc_comments` VALUES (37,121,'Cobus Bester','bester.c@gmail.com','','196.215.9.147','2013-06-07 11:58:43','2013-06-07 11:58:43','This album proves why The Woo are the best band ever. Best music ever!',0,'1','','review',0,0);
INSERT INTO `smrc_comments` VALUES (38,121,'Maria','maria@woothemes.com','','24.225.103.32','2013-06-07 15:52:48','2013-06-07 15:52:48','Can’t wait to start mixin’ with this one! Irba-irr-Up-up-up-up-date your theme!',0,'1','','review',0,0);
INSERT INTO `smrc_comments` VALUES (39,109,'Dan','dan@woothemes.com','','188.221.1.167','2013-06-07 12:39:04','2013-06-07 12:39:04','I thought I was buying a man holding a poster, but when it arrived it was just the poster. Cool poster though, so I\'ll give it 3 stars!',0,'1','','review',0,0);
INSERT INTO `smrc_comments` VALUES (40,109,'Maria','maria@woothemes.com','','24.225.103.32','2013-06-07 15:55:29','2013-06-07 15:55:29','I didn\'t expect this poster to arrive folded. Now there are lines on the poster and one sad Ninja.',0,'1','','review',0,0);
INSERT INTO `smrc_comments` VALUES (41,110,'Maria','maria@woothemes.com','','24.225.103.32','2013-06-07 15:56:24','2013-06-07 15:56:24','He really is the cutest little man. Swoooon!',0,'1','','review',0,0);
INSERT INTO `smrc_comments` VALUES (42,96,'Cobus Bester','bester.c@gmail.com','','196.215.9.147','2013-06-07 11:53:49','2013-06-07 11:53:49','Wonderful quality, and an awesome design. WooThemes ftw!',0,'1','','review',0,0);
INSERT INTO `smrc_comments` VALUES (43,96,'Andrew','andrew@chromeorange.co.uk','','86.19.152.140','2013-06-07 11:57:45','2013-06-07 11:57:45','This t-shirt is awesome! Would recommend to everyone!\n\nI\'m ordering mine next week',0,'1','','review',0,0);
--
-- Table structure for table `smrc_links`
--
DROP TABLE IF EXISTS `smrc_links`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `smrc_links` (
`link_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`link_url` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`link_name` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`link_image` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`link_target` varchar(25) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`link_description` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`link_visible` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'Y',
`link_owner` bigint(20) unsigned NOT NULL DEFAULT '1',
`link_rating` int(11) NOT NULL DEFAULT '0',
`link_updated` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`link_rel` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`link_notes` mediumtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
`link_rss` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
PRIMARY KEY (`link_id`),
KEY `link_visible` (`link_visible`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `smrc_links`
--
--
-- Table structure for table `smrc_options`
--
DROP TABLE IF EXISTS `smrc_options`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `smrc_options` (
`option_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`option_name` varchar(191) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`option_value` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
`autoload` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'yes',
PRIMARY KEY (`option_id`),
UNIQUE KEY `option_name` (`option_name`),
KEY `autoload` (`autoload`)
) ENGINE=InnoDB AUTO_INCREMENT=15550 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `smrc_options`
--
INSERT INTO `smrc_options` VALUES (1,'siteurl','http://mpycdev.theomggroup.com','yes');
INSERT INTO `smrc_options` VALUES (2,'home','http://mpycdev.theomggroup.com','yes');
INSERT INTO `smrc_options` VALUES (3,'blogname','Monterey Peninsula Yacht Club','yes');
INSERT INTO `smrc_options` VALUES (4,'blogdescription','Monterey, California','yes');
INSERT INTO `smrc_options` VALUES (5,'users_can_register','0','yes');
INSERT INTO `smrc_options` VALUES (6,'admin_email','dan.green@omgmediagroup.com','yes');
INSERT INTO `smrc_options` VALUES (7,'start_of_week','1','yes');
INSERT INTO `smrc_options` VALUES (8,'use_balanceTags','0','yes');
INSERT INTO `smrc_options` VALUES (9,'use_smilies','1','yes');
INSERT INTO `smrc_options` VALUES (10,'require_name_email','','yes');
INSERT INTO `smrc_options` VALUES (11,'comments_notify','','yes');
INSERT INTO `smrc_options` VALUES (12,'posts_per_rss','10','yes');
INSERT INTO `smrc_options` VALUES (13,'rss_use_excerpt','0','yes');
INSERT INTO `smrc_options` VALUES (14,'mailserver_url','mail.example.com','yes');
INSERT INTO `smrc_options` VALUES (15,'mailserver_login','login@example.com','yes');
INSERT INTO `smrc_options` VALUES (16,'mailserver_pass','password','yes');
INSERT INTO `smrc_options` VALUES (17,'mailserver_port','110','yes');
INSERT INTO `smrc_options` VALUES (18,'default_category','1','yes');
INSERT INTO `smrc_options` VALUES (19,'default_comment_status','','yes');
INSERT INTO `smrc_options` VALUES (20,'default_ping_status','','yes');
INSERT INTO `smrc_options` VALUES (21,'default_pingback_flag','','yes');
INSERT INTO `smrc_options` VALUES (22,'posts_per_page','10','yes');
INSERT INTO `smrc_options` VALUES (23,'date_format','F j, Y','yes');
INSERT INTO `smrc_options` VALUES (24,'time_format','g:i a','yes');
INSERT INTO `smrc_options` VALUES (25,'links_updated_date_format','F j, Y g:i a','yes');
INSERT INTO `smrc_options` VALUES (26,'comment_moderation','','yes');
INSERT INTO `smrc_options` VALUES (27,'moderation_notify','','yes');
INSERT INTO `smrc_options` VALUES (28,'permalink_structure','/%postname%/','yes');
INSERT INTO `smrc_options` VALUES (29,'rewrite_rules','a:218:{s:24:\"^wc-auth/v([1]{1})/(.*)?\";s:63:\"index.php?wc-auth-version=$matches[1]&wc-auth-route=$matches[2]\";s:22:\"^wc-api/v([1-3]{1})/?$\";s:51:\"index.php?wc-api-version=$matches[1]&wc-api-route=/\";s:24:\"^wc-api/v([1-3]{1})(.*)?\";s:61:\"index.php?wc-api-version=$matches[1]&wc-api-route=$matches[2]\";s:19:\"about-us/contact/?$\";s:27:\"index.php?post_type=product\";s:49:\"about-us/contact/feed/(feed|rdf|rss|rss2|atom)/?$\";s:44:\"index.php?post_type=product&feed=$matches[1]\";s:44:\"about-us/contact/(feed|rdf|rss|rss2|atom)/?$\";s:44:\"index.php?post_type=product&feed=$matches[1]\";s:36:\"about-us/contact/page/([0-9]{1,})/?$\";s:45:\"index.php?post_type=product&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:17:\"^wp-sitemap\\.xml$\";s:23:\"index.php?sitemap=index\";s:17:\"^wp-sitemap\\.xsl$\";s:36:\"index.php?sitemap-stylesheet=sitemap\";s:23:\"^wp-sitemap-index\\.xsl$\";s:34:\"index.php?sitemap-stylesheet=index\";s:48:\"^wp-sitemap-([a-z]+?)-([a-z\\d_-]+?)-(\\d+?)\\.xml$\";s:75:\"index.php?sitemap=$matches[1]&sitemap-subtype=$matches[2]&paged=$matches[3]\";s:34:\"^wp-sitemap-([a-z]+?)-(\\d+?)\\.xml$\";s:47:\"index.php?sitemap=$matches[1]&paged=$matches[2]\";s:12:\"portfolio/?$\";s:29:\"index.php?post_type=portfolio\";s:42:\"portfolio/feed/(feed|rdf|rss|rss2|atom)/?$\";s:46:\"index.php?post_type=portfolio&feed=$matches[1]\";s:37:\"portfolio/(feed|rdf|rss|rss2|atom)/?$\";s:46:\"index.php?post_type=portfolio&feed=$matches[1]\";s:29:\"portfolio/page/([0-9]{1,})/?$\";s:47:\"index.php?post_type=portfolio&paged=$matches[1]\";s:11:\"sidebars/?$\";s:27:\"index.php?post_type=sidebar\";s:41:\"sidebars/feed/(feed|rdf|rss|rss2|atom)/?$\";s:44:\"index.php?post_type=sidebar&feed=$matches[1]\";s:36:\"sidebars/(feed|rdf|rss|rss2|atom)/?$\";s:44:\"index.php?post_type=sidebar&feed=$matches[1]\";s:28:\"sidebars/page/([0-9]{1,})/?$\";s:45:\"index.php?post_type=sidebar&paged=$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:32:\"category/(.+?)/wc-api(/(.*))?/?$\";s:54:\"index.php?category_name=$matches[1]&wc-api=$matches[3]\";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:29:\"tag/([^/]+)/wc-api(/(.*))?/?$\";s:44:\"index.php?tag=$matches[1]&wc-api=$matches[3]\";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:55:\"product-category/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?product_cat=$matches[1]&feed=$matches[2]\";s:50:\"product-category/(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?product_cat=$matches[1]&feed=$matches[2]\";s:31:\"product-category/(.+?)/embed/?$\";s:44:\"index.php?product_cat=$matches[1]&embed=true\";s:43:\"product-category/(.+?)/page/?([0-9]{1,})/?$\";s:51:\"index.php?product_cat=$matches[1]&paged=$matches[2]\";s:25:\"product-category/(.+?)/?$\";s:33:\"index.php?product_cat=$matches[1]\";s:52:\"product-tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?product_tag=$matches[1]&feed=$matches[2]\";s:47:\"product-tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?product_tag=$matches[1]&feed=$matches[2]\";s:28:\"product-tag/([^/]+)/embed/?$\";s:44:\"index.php?product_tag=$matches[1]&embed=true\";s:40:\"product-tag/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?product_tag=$matches[1]&paged=$matches[2]\";s:22:\"product-tag/([^/]+)/?$\";s:33:\"index.php?product_tag=$matches[1]\";s:35:\"product/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:45:\"product/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:65:\"product/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:60:\"product/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:60:\"product/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:41:\"product/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:24:\"product/([^/]+)/embed/?$\";s:40:\"index.php?product=$matches[1]&embed=true\";s:28:\"product/([^/]+)/trackback/?$\";s:34:\"index.php?product=$matches[1]&tb=1\";s:48:\"product/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:46:\"index.php?product=$matches[1]&feed=$matches[2]\";s:43:\"product/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:46:\"index.php?product=$matches[1]&feed=$matches[2]\";s:36:\"product/([^/]+)/page/?([0-9]{1,})/?$\";s:47:\"index.php?product=$matches[1]&paged=$matches[2]\";s:43:\"product/([^/]+)/comment-page-([0-9]{1,})/?$\";s:47:\"index.php?product=$matches[1]&cpage=$matches[2]\";s:33:\"product/([^/]+)/wc-api(/(.*))?/?$\";s:48:\"index.php?product=$matches[1]&wc-api=$matches[3]\";s:39:\"product/[^/]+/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:50:\"product/[^/]+/attachment/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:32:\"product/([^/]+)(?:/([0-9]+))?/?$\";s:46:\"index.php?product=$matches[1]&page=$matches[2]\";s:24:\"product/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:34:\"product/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:54:\"product/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:49:\"product/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:49:\"product/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:30:\"product/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:37:\"portfolio/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:47:\"portfolio/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:67:\"portfolio/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:62:\"portfolio/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:62:\"portfolio/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:43:\"portfolio/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:26:\"portfolio/([^/]+)/embed/?$\";s:42:\"index.php?portfolio=$matches[1]&embed=true\";s:30:\"portfolio/([^/]+)/trackback/?$\";s:36:\"index.php?portfolio=$matches[1]&tb=1\";s:50:\"portfolio/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:48:\"index.php?portfolio=$matches[1]&feed=$matches[2]\";s:45:\"portfolio/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:48:\"index.php?portfolio=$matches[1]&feed=$matches[2]\";s:38:\"portfolio/([^/]+)/page/?([0-9]{1,})/?$\";s:49:\"index.php?portfolio=$matches[1]&paged=$matches[2]\";s:45:\"portfolio/([^/]+)/comment-page-([0-9]{1,})/?$\";s:49:\"index.php?portfolio=$matches[1]&cpage=$matches[2]\";s:35:\"portfolio/([^/]+)/wc-api(/(.*))?/?$\";s:50:\"index.php?portfolio=$matches[1]&wc-api=$matches[3]\";s:41:\"portfolio/[^/]+/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:52:\"portfolio/[^/]+/attachment/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:34:\"portfolio/([^/]+)(?:/([0-9]+))?/?$\";s:48:\"index.php?portfolio=$matches[1]&page=$matches[2]\";s:26:\"portfolio/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:36:\"portfolio/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:56:\"portfolio/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:51:\"portfolio/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:51:\"portfolio/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:32:\"portfolio/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:59:\"portfolio_category/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:57:\"index.php?portfolio_category=$matches[1]&feed=$matches[2]\";s:54:\"portfolio_category/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:57:\"index.php?portfolio_category=$matches[1]&feed=$matches[2]\";s:35:\"portfolio_category/([^/]+)/embed/?$\";s:51:\"index.php?portfolio_category=$matches[1]&embed=true\";s:47:\"portfolio_category/([^/]+)/page/?([0-9]{1,})/?$\";s:58:\"index.php?portfolio_category=$matches[1]&paged=$matches[2]\";s:29:\"portfolio_category/([^/]+)/?$\";s:40:\"index.php?portfolio_category=$matches[1]\";s:36:\"sidebars/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:46:\"sidebars/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:66:\"sidebars/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:61:\"sidebars/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:61:\"sidebars/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:42:\"sidebars/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:25:\"sidebars/([^/]+)/embed/?$\";s:40:\"index.php?sidebar=$matches[1]&embed=true\";s:29:\"sidebars/([^/]+)/trackback/?$\";s:34:\"index.php?sidebar=$matches[1]&tb=1\";s:49:\"sidebars/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:46:\"index.php?sidebar=$matches[1]&feed=$matches[2]\";s:44:\"sidebars/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:46:\"index.php?sidebar=$matches[1]&feed=$matches[2]\";s:37:\"sidebars/([^/]+)/page/?([0-9]{1,})/?$\";s:47:\"index.php?sidebar=$matches[1]&paged=$matches[2]\";s:44:\"sidebars/([^/]+)/comment-page-([0-9]{1,})/?$\";s:47:\"index.php?sidebar=$matches[1]&cpage=$matches[2]\";s:34:\"sidebars/([^/]+)/wc-api(/(.*))?/?$\";s:48:\"index.php?sidebar=$matches[1]&wc-api=$matches[3]\";s:40:\"sidebars/[^/]+/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:51:\"sidebars/[^/]+/attachment/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:33:\"sidebars/([^/]+)(?:/([0-9]+))?/?$\";s:46:\"index.php?sidebar=$matches[1]&page=$matches[2]\";s:25:\"sidebars/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:35:\"sidebars/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:55:\"sidebars/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:50:\"sidebars/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:50:\"sidebars/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:31:\"sidebars/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:12:\"robots\\.txt$\";s:18:\"index.php?robots=1\";s:13:\"favicon\\.ico$\";s:19:\"index.php?favicon=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:40:\"index.php?&page_id=837&cpage=$matches[1]\";s:17:\"wc-api(/(.*))?/?$\";s:29:\"index.php?&wc-api=$matches[2]\";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:26:\"comments/wc-api(/(.*))?/?$\";s:29:\"index.php?&wc-api=$matches[2]\";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:29:\"search/(.+)/wc-api(/(.*))?/?$\";s:42:\"index.php?s=$matches[1]&wc-api=$matches[3]\";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:32:\"author/([^/]+)/wc-api(/(.*))?/?$\";s:52:\"index.php?author_name=$matches[1]&wc-api=$matches[3]\";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:54:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/wc-api(/(.*))?/?$\";s:82:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&wc-api=$matches[5]\";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:41:\"([0-9]{4})/([0-9]{1,2})/wc-api(/(.*))?/?$\";s:66:\"index.php?year=$matches[1]&monthnum=$matches[2]&wc-api=$matches[4]\";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:28:\"([0-9]{4})/wc-api(/(.*))?/?$\";s:45:\"index.php?year=$matches[1]&wc-api=$matches[3]\";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:25:\"(.?.+?)/wc-api(/(.*))?/?$\";s:49:\"index.php?pagename=$matches[1]&wc-api=$matches[3]\";s:28:\"(.?.+?)/order-pay(/(.*))?/?$\";s:52:\"index.php?pagename=$matches[1]&order-pay=$matches[3]\";s:33:\"(.?.+?)/order-received(/(.*))?/?$\";s:57:\"index.php?pagename=$matches[1]&order-received=$matches[3]\";s:25:\"(.?.+?)/orders(/(.*))?/?$\";s:49:\"index.php?pagename=$matches[1]&orders=$matches[3]\";s:29:\"(.?.+?)/view-order(/(.*))?/?$\";s:53:\"index.php?pagename=$matches[1]&view-order=$matches[3]\";s:28:\"(.?.+?)/downloads(/(.*))?/?$\";s:52:\"index.php?pagename=$matches[1]&downloads=$matches[3]\";s:31:\"(.?.+?)/edit-account(/(.*))?/?$\";s:55:\"index.php?pagename=$matches[1]&edit-account=$matches[3]\";s:31:\"(.?.+?)/edit-address(/(.*))?/?$\";s:55:\"index.php?pagename=$matches[1]&edit-address=$matches[3]\";s:34:\"(.?.+?)/payment-methods(/(.*))?/?$\";s:58:\"index.php?pagename=$matches[1]&payment-methods=$matches[3]\";s:32:\"(.?.+?)/lost-password(/(.*))?/?$\";s:56:\"index.php?pagename=$matches[1]&lost-password=$matches[3]\";s:34:\"(.?.+?)/customer-logout(/(.*))?/?$\";s:58:\"index.php?pagename=$matches[1]&customer-logout=$matches[3]\";s:37:\"(.?.+?)/add-payment-method(/(.*))?/?$\";s:61:\"index.php?pagename=$matches[1]&add-payment-method=$matches[3]\";s:40:\"(.?.+?)/delete-payment-method(/(.*))?/?$\";s:64:\"index.php?pagename=$matches[1]&delete-payment-method=$matches[3]\";s:45:\"(.?.+?)/set-default-payment-method(/(.*))?/?$\";s:69:\"index.php?pagename=$matches[1]&set-default-payment-method=$matches[3]\";s:31:\".?.+?/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:42:\".?.+?/attachment/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:24:\"(.?.+?)(?:/([0-9]+))?/?$\";s:47:\"index.php?pagename=$matches[1]&page=$matches[2]\";s:27:\"[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\"[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\"[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\"[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\"[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:33:\"[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:16:\"([^/]+)/embed/?$\";s:37:\"index.php?name=$matches[1]&embed=true\";s:20:\"([^/]+)/trackback/?$\";s:31:\"index.php?name=$matches[1]&tb=1\";s:40:\"([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?name=$matches[1]&feed=$matches[2]\";s:35:\"([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?name=$matches[1]&feed=$matches[2]\";s:28:\"([^/]+)/page/?([0-9]{1,})/?$\";s:44:\"index.php?name=$matches[1]&paged=$matches[2]\";s:35:\"([^/]+)/comment-page-([0-9]{1,})/?$\";s:44:\"index.php?name=$matches[1]&cpage=$matches[2]\";s:25:\"([^/]+)/wc-api(/(.*))?/?$\";s:45:\"index.php?name=$matches[1]&wc-api=$matches[3]\";s:31:\"[^/]+/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:42:\"[^/]+/attachment/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:24:\"([^/]+)(?:/([0-9]+))?/?$\";s:43:\"index.php?name=$matches[1]&page=$matches[2]\";s:16:\"[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:26:\"[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:46:\"[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:41:\"[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:41:\"[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:22:\"[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";}','yes');
INSERT INTO `smrc_options` VALUES (30,'hack_file','0','yes');
INSERT INTO `smrc_options` VALUES (31,'blog_charset','UTF-8','yes');
INSERT INTO `smrc_options` VALUES (32,'moderation_keys','','no');
INSERT INTO `smrc_options` VALUES (33,'active_plugins','a:9:{i:0;s:34:\"bold-page-builder/bold-builder.php\";i:1;s:41:\"bt_cost_calculator/bt_cost_calculator.php\";i:2;s:47:\"bt_wordpress_importer/bt_wordpress_importer.php\";i:3;s:36:\"contact-form-7/wp-contact-form-7.php\";i:4;s:35:\"hotelcalifornia/hotelcalifornia.php\";i:5;s:63:\"limit-login-attempts-reloaded/limit-login-attempts-reloaded.php\";i:6;s:21:\"meta-box/meta-box.php\";i:7;s:27:\"woocommerce/woocommerce.php\";i:8;s:27:\"woosidebars/woosidebars.php\";}','yes');
INSERT INTO `smrc_options` VALUES (34,'category_base','','yes');
INSERT INTO `smrc_options` VALUES (35,'ping_sites','http://rpc.pingomatic.com/','yes');
INSERT INTO `smrc_options` VALUES (36,'comment_max_links','2','yes');
INSERT INTO `smrc_options` VALUES (37,'gmt_offset','0','yes');
INSERT INTO `smrc_options` VALUES (38,'default_email_category','1','yes');
INSERT INTO `smrc_options` VALUES (39,'recently_edited','a:2:{i:0;s:104:\"/nfs/c10/h14/mnt/148287/domains/mpycdev.theomggroup.com/html/wp-content/themes/hotelcalifornia/style.css\";i:1;s:0:\"\";}','no');
INSERT INTO `smrc_options` VALUES (40,'template','hotelcalifornia','yes');
INSERT INTO `smrc_options` VALUES (41,'stylesheet','hotelcalifornia','yes');
INSERT INTO `smrc_options` VALUES (42,'comment_registration','','yes');
INSERT INTO `smrc_options` VALUES (43,'html_type','text/html','yes');
INSERT INTO `smrc_options` VALUES (44,'use_trackback','0','yes');
INSERT INTO `smrc_options` VALUES (45,'default_role','subscriber','yes');
INSERT INTO `smrc_options` VALUES (46,'db_version','49752','yes');
INSERT INTO `smrc_options` VALUES (47,'uploads_use_yearmonth_folders','1','yes');
INSERT INTO `smrc_options` VALUES (48,'upload_path','/nfs/c10/h14/mnt/148287/domains/mpycdev.theomggroup.com/html/wp-content/uploads','yes');
INSERT INTO `smrc_options` VALUES (49,'blog_public','1','yes');
INSERT INTO `smrc_options` VALUES (50,'default_link_category','2','yes');
INSERT INTO `smrc_options` VALUES (51,'show_on_front','page','yes');
INSERT INTO `smrc_options` VALUES (52,'tag_base','','yes');
INSERT INTO `smrc_options` VALUES (53,'show_avatars','','yes');
INSERT INTO `smrc_options` VALUES (54,'avatar_rating','G','yes');
INSERT INTO `smrc_options` VALUES (55,'upload_url_path','','yes');
INSERT INTO `smrc_options` VALUES (56,'thumbnail_size_w','160','yes');
INSERT INTO `smrc_options` VALUES (57,'thumbnail_size_h','160','yes');
INSERT INTO `smrc_options` VALUES (58,'thumbnail_crop','1','yes');
INSERT INTO `smrc_options` VALUES (59,'medium_size_w','320','yes');
INSERT INTO `smrc_options` VALUES (60,'medium_size_h','0','yes');
INSERT INTO `smrc_options` VALUES (61,'avatar_default','mystery','yes');
INSERT INTO `smrc_options` VALUES (62,'large_size_w','1200','yes');
INSERT INTO `smrc_options` VALUES (63,'large_size_h','0','yes');
INSERT INTO `smrc_options` VALUES (64,'image_default_link_type','none','yes');
INSERT INTO `smrc_options` VALUES (65,'image_default_size','','yes');
INSERT INTO `smrc_options` VALUES (66,'image_default_align','','yes');
INSERT INTO `smrc_options` VALUES (67,'close_comments_for_old_posts','','yes');
INSERT INTO `smrc_options` VALUES (68,'close_comments_days_old','14','yes');
INSERT INTO `smrc_options` VALUES (69,'thread_comments','','yes');
INSERT INTO `smrc_options` VALUES (70,'thread_comments_depth','5','yes');
INSERT INTO `smrc_options` VALUES (71,'page_comments','','yes');
INSERT INTO `smrc_options` VALUES (72,'comments_per_page','50','yes');
INSERT INTO `smrc_options` VALUES (73,'default_comments_page','newest','yes');
INSERT INTO `smrc_options` VALUES (74,'comment_order','asc','yes');
INSERT INTO `smrc_options` VALUES (75,'sticky_posts','a:1:{i:0;i:266;}','yes');
INSERT INTO `smrc_options` VALUES (76,'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');
INSERT INTO `smrc_options` VALUES (77,'widget_text','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes');
INSERT INTO `smrc_options` VALUES (78,'widget_rss','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes');
INSERT INTO `smrc_options` VALUES (79,'uninstall_plugins','a:0:{}','no');
INSERT INTO `smrc_options` VALUES (80,'timezone_string','','yes');
INSERT INTO `smrc_options` VALUES (81,'page_for_posts','971','yes');
INSERT INTO `smrc_options` VALUES (82,'page_on_front','837','yes');
INSERT INTO `smrc_options` VALUES (83,'default_post_format','0','yes');
INSERT INTO `smrc_options` VALUES (84,'link_manager_enabled','0','yes');
INSERT INTO `smrc_options` VALUES (85,'finished_splitting_shared_terms','1','yes');
INSERT INTO `smrc_options` VALUES (86,'site_icon','1083','yes');
INSERT INTO `smrc_options` VALUES (87,'medium_large_size_w','768','yes');
INSERT INTO `smrc_options` VALUES (88,'medium_large_size_h','0','yes');
INSERT INTO `smrc_options` VALUES (89,'wp_page_for_privacy_policy','3','yes');
INSERT INTO `smrc_options` VALUES (90,'show_comments_cookies_opt_in','','yes');
INSERT INTO `smrc_options` VALUES (91,'admin_email_lifespan','1632913102','yes');
INSERT INTO `smrc_options` VALUES (92,'disallowed_keys','','no');
INSERT INTO `smrc_options` VALUES (93,'comment_previously_approved','','yes');
INSERT INTO `smrc_options` VALUES (94,'auto_plugin_theme_update_emails','a:0:{}','no');
INSERT INTO `smrc_options` VALUES (95,'auto_update_core_dev','enabled','yes');
INSERT INTO `smrc_options` VALUES (96,'auto_update_core_minor','enabled','yes');
INSERT INTO `smrc_options` VALUES (97,'auto_update_core_major','enabled','yes');
INSERT INTO `smrc_options` VALUES (98,'initial_db_version','49752','yes');
INSERT INTO `smrc_options` VALUES (99,'smrc_user_roles','a:7:{s:13:\"administrator\";a:2:{s:4:\"name\";s:13:\"Administrator\";s:12:\"capabilities\";a:114:{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:18:\"manage_woocommerce\";b:1;s:24:\"view_woocommerce_reports\";b:1;s:12:\"edit_product\";b:1;s:12:\"read_product\";b:1;s:14:\"delete_product\";b:1;s:13:\"edit_products\";b:1;s:20:\"edit_others_products\";b:1;s:16:\"publish_products\";b:1;s:21:\"read_private_products\";b:1;s:15:\"delete_products\";b:1;s:23:\"delete_private_products\";b:1;s:25:\"delete_published_products\";b:1;s:22:\"delete_others_products\";b:1;s:21:\"edit_private_products\";b:1;s:23:\"edit_published_products\";b:1;s:20:\"manage_product_terms\";b:1;s:18:\"edit_product_terms\";b:1;s:20:\"delete_product_terms\";b:1;s:20:\"assign_product_terms\";b:1;s:15:\"edit_shop_order\";b:1;s:15:\"read_shop_order\";b:1;s:17:\"delete_shop_order\";b:1;s:16:\"edit_shop_orders\";b:1;s:23:\"edit_others_shop_orders\";b:1;s:19:\"publish_shop_orders\";b:1;s:24:\"read_private_shop_orders\";b:1;s:18:\"delete_shop_orders\";b:1;s:26:\"delete_private_shop_orders\";b:1;s:28:\"delete_published_shop_orders\";b:1;s:25:\"delete_others_shop_orders\";b:1;s:24:\"edit_private_shop_orders\";b:1;s:26:\"edit_published_shop_orders\";b:1;s:23:\"manage_shop_order_terms\";b:1;s:21:\"edit_shop_order_terms\";b:1;s:23:\"delete_shop_order_terms\";b:1;s:23:\"assign_shop_order_terms\";b:1;s:16:\"edit_shop_coupon\";b:1;s:16:\"read_shop_coupon\";b:1;s:18:\"delete_shop_coupon\";b:1;s:17:\"edit_shop_coupons\";b:1;s:24:\"edit_others_shop_coupons\";b:1;s:20:\"publish_shop_coupons\";b:1;s:25:\"read_private_shop_coupons\";b:1;s:19:\"delete_shop_coupons\";b:1;s:27:\"delete_private_shop_coupons\";b:1;s:29:\"delete_published_shop_coupons\";b:1;s:26:\"delete_others_shop_coupons\";b:1;s:25:\"edit_private_shop_coupons\";b:1;s:27:\"edit_published_shop_coupons\";b:1;s:24:\"manage_shop_coupon_terms\";b:1;s:22:\"edit_shop_coupon_terms\";b:1;s:24:\"delete_shop_coupon_terms\";b:1;s:24:\"assign_shop_coupon_terms\";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;}}s:8:\"customer\";a:2:{s:4:\"name\";s:8:\"Customer\";s:12:\"capabilities\";a:1:{s:4:\"read\";b:1;}}s:12:\"shop_manager\";a:2:{s:4:\"name\";s:12:\"Shop manager\";s:12:\"capabilities\";a:92:{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:4:\"read\";b:1;s:18:\"read_private_pages\";b:1;s:18:\"read_private_posts\";b:1;s:10:\"edit_posts\";b:1;s:10:\"edit_pages\";b:1;s:20:\"edit_published_posts\";b:1;s:20:\"edit_published_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"edit_private_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:17:\"edit_others_pages\";b:1;s:13:\"publish_posts\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_posts\";b:1;s:12:\"delete_pages\";b:1;s:20:\"delete_private_pages\";b:1;s:20:\"delete_private_posts\";b:1;s:22:\"delete_published_pages\";b:1;s:22:\"delete_published_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:19:\"delete_others_pages\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:17:\"moderate_comments\";b:1;s:12:\"upload_files\";b:1;s:6:\"export\";b:1;s:6:\"import\";b:1;s:10:\"list_users\";b:1;s:18:\"edit_theme_options\";b:1;s:18:\"manage_woocommerce\";b:1;s:24:\"view_woocommerce_reports\";b:1;s:12:\"edit_product\";b:1;s:12:\"read_product\";b:1;s:14:\"delete_product\";b:1;s:13:\"edit_products\";b:1;s:20:\"edit_others_products\";b:1;s:16:\"publish_products\";b:1;s:21:\"read_private_products\";b:1;s:15:\"delete_products\";b:1;s:23:\"delete_private_products\";b:1;s:25:\"delete_published_products\";b:1;s:22:\"delete_others_products\";b:1;s:21:\"edit_private_products\";b:1;s:23:\"edit_published_products\";b:1;s:20:\"manage_product_terms\";b:1;s:18:\"edit_product_terms\";b:1;s:20:\"delete_product_terms\";b:1;s:20:\"assign_product_terms\";b:1;s:15:\"edit_shop_order\";b:1;s:15:\"read_shop_order\";b:1;s:17:\"delete_shop_order\";b:1;s:16:\"edit_shop_orders\";b:1;s:23:\"edit_others_shop_orders\";b:1;s:19:\"publish_shop_orders\";b:1;s:24:\"read_private_shop_orders\";b:1;s:18:\"delete_shop_orders\";b:1;s:26:\"delete_private_shop_orders\";b:1;s:28:\"delete_published_shop_orders\";b:1;s:25:\"delete_others_shop_orders\";b:1;s:24:\"edit_private_shop_orders\";b:1;s:26:\"edit_published_shop_orders\";b:1;s:23:\"manage_shop_order_terms\";b:1;s:21:\"edit_shop_order_terms\";b:1;s:23:\"delete_shop_order_terms\";b:1;s:23:\"assign_shop_order_terms\";b:1;s:16:\"edit_shop_coupon\";b:1;s:16:\"read_shop_coupon\";b:1;s:18:\"delete_shop_coupon\";b:1;s:17:\"edit_shop_coupons\";b:1;s:24:\"edit_others_shop_coupons\";b:1;s:20:\"publish_shop_coupons\";b:1;s:25:\"read_private_shop_coupons\";b:1;s:19:\"delete_shop_coupons\";b:1;s:27:\"delete_private_shop_coupons\";b:1;s:29:\"delete_published_shop_coupons\";b:1;s:26:\"delete_others_shop_coupons\";b:1;s:25:\"edit_private_shop_coupons\";b:1;s:27:\"edit_published_shop_coupons\";b:1;s:24:\"manage_shop_coupon_terms\";b:1;s:22:\"edit_shop_coupon_terms\";b:1;s:24:\"delete_shop_coupon_terms\";b:1;s:24:\"assign_shop_coupon_terms\";b:1;}}}','yes');
INSERT INTO `smrc_options` VALUES (100,'fresh_site','0','yes');
INSERT INTO `smrc_options` VALUES (101,'widget_search','a:4:{i:2;a:1:{s:5:\"title\";s:11:\"Search site\";}i:3;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;i:5;a:1:{s:5:\"title\";s:0:\"\";}}','yes');
INSERT INTO `smrc_options` VALUES (102,'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');
INSERT INTO `smrc_options` VALUES (103,'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');
INSERT INTO `smrc_options` VALUES (104,'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');
INSERT INTO `smrc_options` VALUES (105,'widget_meta','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes');
INSERT INTO `smrc_options` VALUES (106,'sidebars_widgets','a:8:{s:19:\"wp_inactive_widgets\";a:11:{i:0;s:6:\"meta-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";i:3;s:16:\"bt_icon_widget-9\";i:4;s:17:\"bt_icon_widget-10\";i:5;s:16:\"bt_icon_widget-2\";i:6;s:16:\"bt_icon_widget-3\";i:7;s:8:\"search-3\";i:8;s:16:\"bt_icon_widget-4\";i:9;s:19:\"bt_weather_widget-3\";i:10;s:19:\"bt_weather_widget-2\";}s:21:\"simple-social-sidebar\";a:3:{i:0;s:17:\"bt_icon_widget-12\";i:1;s:17:\"bt_icon_widget-13\";i:2;s:17:\"bt_icon_widget-14\";}s:12:\"shop-sidebar\";a:4:{i:0;s:25:\"woocommerce_widget_cart-2\";i:1;s:32:\"woocommerce_product_categories-2\";i:2;s:26:\"woocommerce_price_filter-2\";i:3;s:32:\"woocommerce_top_rated_products-2\";}s:19:\"primary_widget_area\";a:4:{i:0;s:8:\"search-2\";i:1;s:17:\"bt_recent_posts-2\";i:2;s:10:\"archives-2\";i:3;s:12:\"categories-2\";}s:19:\"header_left_widgets\";a:1:{i:0;s:17:\"bt_icon_widget-16\";}s:20:\"header_right_widgets\";a:1:{i:0;s:8:\"search-5\";}s:14:\"footer_widgets\";a:4:{i:0;s:15:\"bt_text_image-3\";i:1;s:15:\"bt_text_image-2\";i:2;s:10:\"nav_menu-3\";i:3;s:10:\"nav_menu-2\";}s:13:\"array_version\";i:3;}','yes');
INSERT INTO `smrc_options` VALUES (107,'cron','a:16:{i:1676884726;a:1:{s:26:\"action_scheduler_run_queue\";a:1:{s:32:\"0d04ed39571b55704c122d726248bbac\";a:3:{s:8:\"schedule\";s:12:\"every_minute\";s:4:\"args\";a:1:{i:0;s:7:\"WP Cron\";}s:8:\"interval\";i:60;}}}i:1676885211;a:1:{s:33:\"wc_admin_process_orders_milestone\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1676885218;a:1:{s:29:\"wc_admin_unsnooze_admin_notes\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1676887102;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:1676887107;a:1:{s:32:\"woocommerce_cancel_unpaid_orders\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:0:{}}}}i:1676890702;a:5:{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:18:\"wp_https_detection\";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_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:1676890704;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:1676890757;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:1676892411;a:1:{s:14:\"wc_admin_daily\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1676892418;a:2:{s:30:\"woocommerce_tracker_send_event\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}s:33:\"woocommerce_cleanup_personal_data\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1676903208;a:1:{s:24:\"woocommerce_cleanup_logs\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1676914008;a:1:{s:28:\"woocommerce_cleanup_sessions\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1676937600;a:1:{s:27:\"woocommerce_scheduled_sales\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1676978868;a:1:{s:25:\"woocommerce_geoip_updater\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:11:\"fifteendays\";s:4:\"args\";a:0:{}s:8:\"interval\";i:1296000;}}}i:1677322702;a:1:{s:30:\"wp_site_health_scheduled_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}s:7:\"version\";i:2;}','yes');
INSERT INTO `smrc_options` VALUES (108,'widget_pages','a:1:{s:12:\"_multiwidget\";i:1;}','yes');
INSERT INTO `smrc_options` VALUES (109,'widget_calendar','a:1:{s:12:\"_multiwidget\";i:1;}','yes');
INSERT INTO `smrc_options` VALUES (110,'widget_media_audio','a:1:{s:12:\"_multiwidget\";i:1;}','yes');
INSERT INTO `smrc_options` VALUES (111,'widget_media_image','a:1:{s:12:\"_multiwidget\";i:1;}','yes');
INSERT INTO `smrc_options` VALUES (112,'widget_media_gallery','a:1:{s:12:\"_multiwidget\";i:1;}','yes');
INSERT INTO `smrc_options` VALUES (113,'widget_media_video','a:1:{s:12:\"_multiwidget\";i:1;}','yes');
INSERT INTO `smrc_options` VALUES (114,'widget_tag_cloud','a:1:{s:12:\"_multiwidget\";i:1;}','yes');
INSERT INTO `smrc_options` VALUES (115,'widget_nav_menu','a:3:{i:2;a:2:{s:5:\"title\";s:8:\"About us\";s:8:\"nav_menu\";i:34;}i:3;a:2:{s:5:\"title\";s:5:\"Rooms\";s:8:\"nav_menu\";i:38;}s:12:\"_multiwidget\";i:1;}','yes');
INSERT INTO `smrc_options` VALUES (116,'widget_custom_html','a:1:{s:12:\"_multiwidget\";i:1;}','yes');
INSERT INTO `smrc_options` VALUES (122,'_site_transient_update_themes','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1676853274;s:7:\"checked\";a:5:{s:21:\"hotelcalifornia-child\";s:5:\"1.0.0\";s:15:\"hotelcalifornia\";s:5:\"1.3.3\";s:14:\"twentynineteen\";s:3:\"2.0\";s:12:\"twentytwenty\";s:3:\"1.7\";s:15:\"twentytwentyone\";s:3:\"1.2\";}s:8:\"response\";a:3:{s:14:\"twentynineteen\";a:6:{s:5:\"theme\";s:14:\"twentynineteen\";s:11:\"new_version\";s:3:\"2.4\";s:3:\"url\";s:44:\"https://wordpress.org/themes/twentynineteen/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/theme/twentynineteen.2.4.zip\";s:8:\"requires\";s:5:\"4.9.6\";s:12:\"requires_php\";s:5:\"5.2.4\";}s:12:\"twentytwenty\";a:6:{s:5:\"theme\";s:12:\"twentytwenty\";s:11:\"new_version\";s:3:\"2.1\";s:3:\"url\";s:42:\"https://wordpress.org/themes/twentytwenty/\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/theme/twentytwenty.2.1.zip\";s:8:\"requires\";s:3:\"4.7\";s:12:\"requires_php\";s:5:\"5.2.4\";}s:15:\"twentytwentyone\";a:6:{s:5:\"theme\";s:15:\"twentytwentyone\";s:11:\"new_version\";s:3:\"1.7\";s:3:\"url\";s:45:\"https://wordpress.org/themes/twentytwentyone/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/theme/twentytwentyone.1.7.zip\";s:8:\"requires\";s:3:\"5.3\";s:12:\"requires_php\";s:3:\"5.6\";}}s:9:\"no_update\";a:0:{}s:12:\"translations\";a:0:{}}','no');
INSERT INTO `smrc_options` VALUES (123,'recovery_keys','a:0:{}','yes');
INSERT INTO `smrc_options` VALUES (126,'WPLANG','en','yes');
INSERT INTO `smrc_options` VALUES (127,'_transient_update_plugins','O:8:\"stdClass\":1:{s:12:\"last_checked\";i:0;}','yes');
INSERT INTO `smrc_options` VALUES (128,'_transient_update_themes','O:8:\"stdClass\":1:{s:12:\"last_checked\";i:0;}','yes');
INSERT INTO `smrc_options` VALUES (129,'theme_mods_twentytwentyone','a:2:{s:18:\"custom_css_post_id\";i:-1;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1617362096;s:4:\"data\";a:3:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:3:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";}s:9:\"sidebar-2\";a:3:{i:0;s:10:\"archives-2\";i:1;s:12:\"categories-2\";i:2;s:6:\"meta-2\";}}}}','yes');
INSERT INTO `smrc_options` VALUES (130,'https_detection_errors','a:1:{s:23:\"ssl_verification_failed\";a:1:{i:0;s:24:\"SSL verification failed.\";}}','yes');
INSERT INTO `smrc_options` VALUES (131,'_site_transient_update_core','O:8:\"stdClass\":4:{s:7:\"updates\";a:7:{i:0;O:8:\"stdClass\":10:{s:8:\"response\";s:7:\"upgrade\";s:8:\"download\";s:59:\"https://downloads.wordpress.org/release/wordpress-6.1.1.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-6.1.1.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-6.1.1-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-6.1.1-new-bundled.zip\";s:7:\"partial\";s:0:\"\";s:8:\"rollback\";s:0:\"\";}s:7:\"current\";s:5:\"6.1.1\";s:7:\"version\";s:5:\"6.1.1\";s:11:\"php_version\";s:6:\"5.6.20\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"6.1\";s:15:\"partial_version\";s:0:\"\";}i:1;O:8:\"stdClass\":11:{s:8:\"response\";s:10:\"autoupdate\";s:8:\"download\";s:59:\"https://downloads.wordpress.org/release/wordpress-6.1.1.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-6.1.1.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-6.1.1-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-6.1.1-new-bundled.zip\";s:7:\"partial\";s:0:\"\";s:8:\"rollback\";s:0:\"\";}s:7:\"current\";s:5:\"6.1.1\";s:7:\"version\";s:5:\"6.1.1\";s:11:\"php_version\";s:6:\"5.6.20\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"6.1\";s:15:\"partial_version\";s:0:\"\";s:9:\"new_files\";s:1:\"1\";}i:2;O:8:\"stdClass\":11:{s:8:\"response\";s:10:\"autoupdate\";s:8:\"download\";s:57:\"https://downloads.wordpress.org/release/wordpress-6.1.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:57:\"https://downloads.wordpress.org/release/wordpress-6.1.zip\";s:10:\"no_content\";s:68:\"https://downloads.wordpress.org/release/wordpress-6.1-no-content.zip\";s:11:\"new_bundled\";s:69:\"https://downloads.wordpress.org/release/wordpress-6.1-new-bundled.zip\";s:7:\"partial\";s:0:\"\";s:8:\"rollback\";s:0:\"\";}s:7:\"current\";s:3:\"6.1\";s:7:\"version\";s:3:\"6.1\";s:11:\"php_version\";s:6:\"5.6.20\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"6.1\";s:15:\"partial_version\";s:0:\"\";s:9:\"new_files\";s:1:\"1\";}i:3;O:8:\"stdClass\":11:{s:8:\"response\";s:10:\"autoupdate\";s:8:\"download\";s:59:\"https://downloads.wordpress.org/release/wordpress-6.0.3.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-6.0.3.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-6.0.3-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-6.0.3-new-bundled.zip\";s:7:\"partial\";s:0:\"\";s:8:\"rollback\";s:0:\"\";}s:7:\"current\";s:5:\"6.0.3\";s:7:\"version\";s:5:\"6.0.3\";s:11:\"php_version\";s:6:\"5.6.20\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"6.1\";s:15:\"partial_version\";s:0:\"\";s:9:\"new_files\";s:1:\"1\";}i:4;O:8:\"stdClass\":11:{s:8:\"response\";s:10:\"autoupdate\";s:8:\"download\";s:59:\"https://downloads.wordpress.org/release/wordpress-5.9.5.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:59:\"https://downloads.wordpress.org/release/wordpress-5.9.5.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-5.9.5-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-5.9.5-new-bundled.zip\";s:7:\"partial\";s:0:\"\";s:8:\"rollback\";s:0:\"\";}s:7:\"current\";s:5:\"5.9.5\";s:7:\"version\";s:5:\"5.9.5\";s:11:\"php_version\";s:6:\"5.6.20\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"6.1\";s:15:\"partial_version\";s:0:\"\";s:9:\"new_files\";s:1:\"1\";}i:5;O:8:\"stdClass\":11:{s:8:\"response\";s:10:\"autoupdate\";s:8:\"download\";s:59:\"https://downloads.wordpress.org/release/wordpress-5.8.6.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.8.6.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-5.8.6-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-5.8.6-new-bundled.zip\";s:7:\"partial\";s:0:\"\";s:8:\"rollback\";s:0:\"\";}s:7:\"current\";s:5:\"5.8.6\";s:7:\"version\";s:5:\"5.8.6\";s:11:\"php_version\";s:6:\"5.6.20\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"6.1\";s:15:\"partial_version\";s:0:\"\";s:9:\"new_files\";s:1:\"1\";}i:6;O:8:\"stdClass\":11:{s:8:\"response\";s:10:\"autoupdate\";s:8:\"download\";s:59:\"https://downloads.wordpress.org/release/wordpress-5.7.8.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:59:\"https://downloads.wordpress.org/release/wordpress-5.7.8.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-5.7.8-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-5.7.8-new-bundled.zip\";s:7:\"partial\";s:69:\"https://downloads.wordpress.org/release/wordpress-5.7.8-partial-0.zip\";s:8:\"rollback\";s:70:\"https://downloads.wordpress.org/release/wordpress-5.7.8-rollback-0.zip\";}s:7:\"current\";s:5:\"5.7.8\";s:7:\"version\";s:5:\"5.7.8\";s:11:\"php_version\";s:6:\"5.6.20\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"6.1\";s:15:\"partial_version\";s:3:\"5.7\";s:9:\"new_files\";s:0:\"\";}}s:12:\"last_checked\";i:1676853273;s:15:\"version_checked\";s:3:\"5.7\";s:12:\"translations\";a:0:{}}','no');
INSERT INTO `smrc_options` VALUES (134,'limit_login_activation_timestamp','1617361110','no');
INSERT INTO `smrc_options` VALUES (135,'limit_login_notice_enable_notify_timestamp','1614596310','no');
INSERT INTO `smrc_options` VALUES (141,'can_compress_scripts','0','no');
INSERT INTO `smrc_options` VALUES (156,'theme_mods_hotelcalifornia','a:2:{s:18:\"custom_css_post_id\";i:-1;s:18:\"nav_menu_locations\";a:2:{s:7:\"primary\";i:43;s:6:\"footer\";i:43;}}','yes');
INSERT INTO `smrc_options` VALUES (159,'finished_updating_comment_type','1','yes');
INSERT INTO `smrc_options` VALUES (160,'recently_activated','a:0:{}','yes');
INSERT INTO `smrc_options` VALUES (161,'current_theme','Hotelcalifornia','yes');
INSERT INTO `smrc_options` VALUES (162,'theme_switched','','yes');
INSERT INTO `smrc_options` VALUES (164,'bt_bb_settings','a:2:{s:11:\"tag_as_name\";s:1:\"0\";s:13:\"color_schemes\";s:44:\"Black/White;#000;#fff\r\nWhite/Black;#fff;#000\";}','yes');
INSERT INTO `smrc_options` VALUES (165,'wpcf7','a:2:{s:7:\"version\";s:3:\"5.4\";s:13:\"bulk_validate\";a:4:{s:9:\"timestamp\";i:1617362358;s:7:\"version\";s:3:\"5.4\";s:11:\"count_valid\";i:1;s:13:\"count_invalid\";i:0;}}','yes');
INSERT INTO `smrc_options` VALUES (166,'widget_bt_gallery','a:1:{s:12:\"_multiwidget\";i:1;}','yes');
INSERT INTO `smrc_options` VALUES (167,'widget_bt_text_image','a:3:{i:2;a:3:{s:5:\"title\";s:0:\"\";s:3:\"ids\";s:4:\"1095\";s:4:\"text\";s:108:\"Monterey Peninsula Yacht Club is proud to be associated with US Sailing and the American Sailing Association\";}i:3;a:3:{s:5:\"title\";s:0:\"\";s:3:\"ids\";s:4:\"1080\";s:4:\"text\";s:65:\"Wharf II\r\nMonterey, CA 93940\r\n\r\n(831) 372-9686\r\nmanager@mpyc.org\";}s:12:\"_multiwidget\";i:1;}','yes');
INSERT INTO `smrc_options` VALUES (168,'widget_bt_icon_widget','a:11:{i:2;a:6:{s:4:\"icon\";s:7:\"fa_f09a\";s:5:\"title\";s:0:\"\";s:4:\"text\";s:0:\"\";s:3:\"url\";s:36:\"https://www.facebook.com/boldthemes/\";s:11:\"show_button\";s:2:\"on\";s:6:\"target\";s:6:\"_blank\";}i:3;a:6:{s:4:\"icon\";s:7:\"fa_f099\";s:5:\"title\";s:0:\"\";s:4:\"text\";s:0:\"\";s:3:\"url\";s:31:\"https://twitter.com/bold_themes\";s:11:\"show_button\";s:2:\"on\";s:6:\"target\";s:6:\"_blank\";}i:4;a:6:{s:4:\"icon\";s:7:\"fa_f2bd\";s:5:\"title\";s:7:\"Members\";s:4:\"text\";s:0:\"\";s:3:\"url\";s:45:\"https://plus.google.com/106260443376081681677\";s:11:\"show_button\";s:2:\"on\";s:6:\"target\";s:6:\"_blank\";}i:7;a:6:{s:4:\"icon\";s:7:\"s7_e638\";s:5:\"title\";s:20:\"3216 W Highland Blvd\";s:4:\"text\";s:9:\"San Diego\";s:3:\"url\";s:0:\"\";s:11:\"show_button\";N;s:6:\"target\";s:0:\"\";}i:9;a:6:{s:4:\"icon\";s:7:\"s7_e6a9\";s:5:\"title\";s:3:\"tae\";s:4:\"text\";s:6:\"taetae\";s:3:\"url\";s:0:\"\";s:11:\"show_button\";s:2:\"on\";s:6:\"target\";s:0:\"\";}i:10;a:6:{s:4:\"icon\";s:7:\"s7_e67e\";s:5:\"title\";s:6:\"taetae\";s:4:\"text\";s:9:\"taetaetae\";s:3:\"url\";s:0:\"\";s:11:\"show_button\";N;s:6:\"target\";s:0:\"\";}i:12;a:6:{s:4:\"icon\";s:7:\"fa_f09a\";s:5:\"title\";s:0:\"\";s:4:\"text\";s:0:\"\";s:3:\"url\";s:1:\"#\";s:11:\"show_button\";N;s:6:\"target\";s:0:\"\";}i:13;a:6:{s:4:\"icon\";s:7:\"fa_f099\";s:5:\"title\";s:0:\"\";s:4:\"text\";s:0:\"\";s:3:\"url\";s:1:\"#\";s:11:\"show_button\";N;s:6:\"target\";s:0:\"\";}i:14;a:6:{s:4:\"icon\";s:7:\"fa_f1ca\";s:5:\"title\";s:0:\"\";s:4:\"text\";s:0:\"\";s:3:\"url\";s:1:\"#\";s:11:\"show_button\";N;s:6:\"target\";s:0:\"\";}s:12:\"_multiwidget\";i:1;i:16;a:6:{s:4:\"icon\";s:7:\"fa_f2be\";s:5:\"title\";s:7:\"Members\";s:4:\"text\";s:0:\"\";s:3:\"url\";s:0:\"\";s:11:\"show_button\";N;s:6:\"target\";s:0:\"\";}}','yes');
INSERT INTO `smrc_options` VALUES (169,'widget_bt_weather_widget','a:4:{i:2;a:6:{s:8:\"latitude\";s:9:\"36.601992\";s:9:\"longitude\";s:11:\"-121.889859\";s:9:\"temp_unit\";s:8:\"imperial\";s:4:\"type\";s:3:\"now\";s:5:\"cache\";s:2:\"15\";s:7:\"api_key\";s:32:\"10cebea2562e427fea0d18d0a1ee2f84\";}i:3;a:6:{s:8:\"latitude\";s:9:\"36.601992\";s:9:\"longitude\";s:11:\"-121.889859\";s:9:\"temp_unit\";s:8:\"imperial\";s:4:\"type\";s:10:\"forecast24\";s:5:\"cache\";s:2:\"30\";s:7:\"api_key\";s:32:\"10cebea2562e427fea0d18d0a1ee2f84\";}s:12:\"_multiwidget\";i:1;i:5;a:6:{s:8:\"latitude\";s:9:\"36.601992\";s:9:\"longitude\";s:11:\"-121.889859\";s:9:\"temp_unit\";s:8:\"imperial\";s:4:\"type\";s:3:\"now\";s:5:\"cache\";s:2:\"15\";s:7:\"api_key\";s:32:\"10cebea2562e427fea0d18d0a1ee2f84\";}}','yes');
INSERT INTO `smrc_options` VALUES (170,'widget_bt_time_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes');
INSERT INTO `smrc_options` VALUES (171,'widget_bt_recent_posts','a:2:{i:2;a:2:{s:5:\"title\";s:12:\"Recent Posts\";s:6:\"number\";s:1:\"5\";}s:12:\"_multiwidget\";i:1;}','yes');
INSERT INTO `smrc_options` VALUES (172,'widget_bt_recent_comments','a:1:{s:12:\"_multiwidget\";i:1;}','yes');
INSERT INTO `smrc_options` VALUES (173,'widget_bt_instagram','a:1:{s:12:\"_multiwidget\";i:1;}','yes');
INSERT INTO `smrc_options` VALUES (174,'widget_bt_twitter_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes');
INSERT INTO `smrc_options` VALUES (175,'woosidebars-version','1.4.5','yes');
INSERT INTO `smrc_options` VALUES (181,'_site_transient_update_plugins','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1676884693;s:7:\"checked\";a:11:{s:19:\"akismet/akismet.php\";s:5:\"4.1.9\";s:34:\"bold-page-builder/bold-builder.php\";s:5:\"3.0.9\";s:47:\"bt_wordpress_importer/bt_wordpress_importer.php\";s:5:\"1.0.1\";s:36:\"contact-form-7/wp-contact-form-7.php\";s:3:\"5.4\";s:41:\"bt_cost_calculator/bt_cost_calculator.php\";s:5:\"1.2.5\";s:9:\"hello.php\";s:5:\"1.7.2\";s:35:\"hotelcalifornia/hotelcalifornia.php\";s:5:\"1.3.3\";s:63:\"limit-login-attempts-reloaded/limit-login-attempts-reloaded.php\";s:6:\"2.20.3\";s:21:\"meta-box/meta-box.php\";s:5:\"5.3.9\";s:27:\"woocommerce/woocommerce.php\";s:5:\"5.1.0\";s:27:\"woosidebars/woosidebars.php\";s:5:\"1.4.5\";}s:8:\"response\";a:5:{s:19:\"akismet/akismet.php\";O:8:\"stdClass\":13:{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:\"5.0.2\";s:3:\"url\";s:38:\"https://wordpress.org/plugins/akismet/\";s:7:\"package\";s:56:\"https://downloads.wordpress.org/plugin/akismet.5.0.2.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:60:\"https://ps.w.org/akismet/assets/icon-256x256.png?rev=2818463\";s:2:\"1x\";s:60:\"https://ps.w.org/akismet/assets/icon-128x128.png?rev=2818463\";}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:8:\"requires\";s:3:\"5.0\";s:6:\"tested\";s:5:\"6.1.1\";s:12:\"requires_php\";s:3:\"5.2\";s:13:\"compatibility\";O:8:\"stdClass\":0:{}}s:34:\"bold-page-builder/bold-builder.php\";O:8:\"stdClass\":13:{s:2:\"id\";s:31:\"w.org/plugins/bold-page-builder\";s:4:\"slug\";s:17:\"bold-page-builder\";s:6:\"plugin\";s:34:\"bold-page-builder/bold-builder.php\";s:11:\"new_version\";s:5:\"4.5.1\";s:3:\"url\";s:48:\"https://wordpress.org/plugins/bold-page-builder/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/plugin/bold-page-builder.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:70:\"https://ps.w.org/bold-page-builder/assets/icon-256x256.png?rev=1573974\";s:2:\"1x\";s:70:\"https://ps.w.org/bold-page-builder/assets/icon-128x128.png?rev=1573974\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:73:\"https://ps.w.org/bold-page-builder/assets/banner-1544x500.png?rev=2653739\";s:2:\"1x\";s:72:\"https://ps.w.org/bold-page-builder/assets/banner-772x250.png?rev=2653739\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.5\";s:6:\"tested\";s:5:\"6.1.1\";s:12:\"requires_php\";b:0;s:13:\"compatibility\";O:8:\"stdClass\":0:{}}s:63:\"limit-login-attempts-reloaded/limit-login-attempts-reloaded.php\";O:8:\"stdClass\":13:{s:2:\"id\";s:43:\"w.org/plugins/limit-login-attempts-reloaded\";s:4:\"slug\";s:29:\"limit-login-attempts-reloaded\";s:6:\"plugin\";s:63:\"limit-login-attempts-reloaded/limit-login-attempts-reloaded.php\";s:11:\"new_version\";s:7:\"2.25.12\";s:3:\"url\";s:60:\"https://wordpress.org/plugins/limit-login-attempts-reloaded/\";s:7:\"package\";s:80:\"https://downloads.wordpress.org/plugin/limit-login-attempts-reloaded.2.25.12.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:82:\"https://ps.w.org/limit-login-attempts-reloaded/assets/icon-256x256.png?rev=2456910\";s:2:\"1x\";s:82:\"https://ps.w.org/limit-login-attempts-reloaded/assets/icon-128x128.png?rev=2456910\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:85:\"https://ps.w.org/limit-login-attempts-reloaded/assets/banner-1544x500.png?rev=2456910\";s:2:\"1x\";s:84:\"https://ps.w.org/limit-login-attempts-reloaded/assets/banner-772x250.png?rev=2456910\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"3.0\";s:6:\"tested\";s:5:\"6.1.1\";s:12:\"requires_php\";b:0;s:13:\"compatibility\";O:8:\"stdClass\":0:{}}s:21:\"meta-box/meta-box.php\";O:8:\"stdClass\":13:{s:2:\"id\";s:22:\"w.org/plugins/meta-box\";s:4:\"slug\";s:8:\"meta-box\";s:6:\"plugin\";s:21:\"meta-box/meta-box.php\";s:11:\"new_version\";s:6:\"5.6.16\";s:3:\"url\";s:39:\"https://wordpress.org/plugins/meta-box/\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/plugin/meta-box.5.6.16.zip\";s:5:\"icons\";a:1:{s:2:\"1x\";s:61:\"https://ps.w.org/meta-box/assets/icon-128x128.png?rev=1100915\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:63:\"https://ps.w.org/meta-box/assets/banner-772x250.png?rev=1929588\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.8\";s:6:\"tested\";s:5:\"6.1.1\";s:12:\"requires_php\";s:3:\"7.0\";s:13:\"compatibility\";O:8:\"stdClass\":0:{}}s:27:\"woosidebars/woosidebars.php\";O:8:\"stdClass\":14:{s:2:\"id\";s:25:\"w.org/plugins/woosidebars\";s:4:\"slug\";s:11:\"woosidebars\";s:6:\"plugin\";s:27:\"woosidebars/woosidebars.php\";s:11:\"new_version\";s:5:\"1.4.6\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/woosidebars/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/plugin/woosidebars.1.4.6.zip\";s:5:\"icons\";a:1:{s:7:\"default\";s:62:\"https://s.w.org/plugins/geopattern-icon/woosidebars_a9c7b8.svg\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:66:\"https://ps.w.org/woosidebars/assets/banner-1544x500.png?rev=633896\";s:2:\"1x\";s:65:\"https://ps.w.org/woosidebars/assets/banner-772x250.png?rev=633896\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.1\";s:6:\"tested\";s:5:\"5.8.6\";s:12:\"requires_php\";b:0;s:13:\"compatibility\";O:8:\"stdClass\":0:{}s:14:\"upgrade_notice\";s:175:\"<p>Fixes a sprintf modifier which was breaking WP Admin on sites running PHP8.\nFixes alignment of the content of the "Taxanomy Terms" conditions tab in WP Admin.</p>\";}}s:12:\"translations\";a:0:{}s:9:\"no_update\";a:3:{s:36:\"contact-form-7/wp-contact-form-7.php\";O:8:\"stdClass\":13:{s:2:\"id\";s:28:\"w.org/plugins/contact-form-7\";s:4:\"slug\";s:14:\"contact-form-7\";s:6:\"plugin\";s:36:\"contact-form-7/wp-contact-form-7.php\";s:11:\"new_version\";s:5:\"5.7.4\";s:3:\"url\";s:45:\"https://wordpress.org/plugins/contact-form-7/\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.5.7.4.zip\";s:5:\"icons\";a:3:{s:2:\"2x\";s:67:\"https://ps.w.org/contact-form-7/assets/icon-256x256.png?rev=2279696\";s:2:\"1x\";s:59:\"https://ps.w.org/contact-form-7/assets/icon.svg?rev=2339255\";s:3:\"svg\";s:59:\"https://ps.w.org/contact-form-7/assets/icon.svg?rev=2339255\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:69:\"https://ps.w.org/contact-form-7/assets/banner-1544x500.png?rev=860901\";s:2:\"1x\";s:68:\"https://ps.w.org/contact-form-7/assets/banner-772x250.png?rev=880427\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"6.0\";s:6:\"tested\";s:5:\"6.1.1\";s:12:\"requires_php\";b:0;s:13:\"compatibility\";a:0:{}}s:9:\"hello.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:25:\"w.org/plugins/hello-dolly\";s:4:\"slug\";s:11:\"hello-dolly\";s:6:\"plugin\";s:9:\"hello.php\";s:11:\"new_version\";s:5:\"1.7.2\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/hello-dolly/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/plugin/hello-dolly.1.7.2.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:64:\"https://ps.w.org/hello-dolly/assets/icon-256x256.jpg?rev=2052855\";s:2:\"1x\";s:64:\"https://ps.w.org/hello-dolly/assets/icon-128x128.jpg?rev=2052855\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:67:\"https://ps.w.org/hello-dolly/assets/banner-1544x500.jpg?rev=2645582\";s:2:\"1x\";s:66:\"https://ps.w.org/hello-dolly/assets/banner-772x250.jpg?rev=2052855\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.6\";}s:27:\"woocommerce/woocommerce.php\";O:8:\"stdClass\":13:{s:2:\"id\";s:25:\"w.org/plugins/woocommerce\";s:4:\"slug\";s:11:\"woocommerce\";s:6:\"plugin\";s:27:\"woocommerce/woocommerce.php\";s:11:\"new_version\";s:5:\"7.4.0\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/woocommerce/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.7.4.0.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:64:\"https://ps.w.org/woocommerce/assets/icon-256x256.png?rev=2366418\";s:2:\"1x\";s:64:\"https://ps.w.org/woocommerce/assets/icon-128x128.png?rev=2366418\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:67:\"https://ps.w.org/woocommerce/assets/banner-1544x500.png?rev=2366418\";s:2:\"1x\";s:66:\"https://ps.w.org/woocommerce/assets/banner-772x250.png?rev=2366418\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.9\";s:6:\"tested\";s:5:\"6.1.1\";s:12:\"requires_php\";s:3:\"7.2\";s:13:\"compatibility\";a:0:{}}}}','no');
INSERT INTO `smrc_options` VALUES (182,'action_scheduler_hybrid_store_demarkation','16','yes');
INSERT INTO `smrc_options` VALUES (183,'schema-ActionScheduler_StoreSchema','3.0.1617362806','yes');
INSERT INTO `smrc_options` VALUES (184,'schema-ActionScheduler_LoggerSchema','2.0.1617362806','yes');
INSERT INTO `smrc_options` VALUES (187,'woocommerce_schema_version','430','yes');
INSERT INTO `smrc_options` VALUES (188,'woocommerce_store_address','Wharf 2','yes');
INSERT INTO `smrc_options` VALUES (189,'woocommerce_store_address_2','','yes');
INSERT INTO `smrc_options` VALUES (190,'woocommerce_store_city','Monterey','yes');
INSERT INTO `smrc_options` VALUES (191,'woocommerce_default_country','US:CA','yes');
INSERT INTO `smrc_options` VALUES (192,'woocommerce_store_postcode','93940','yes');
INSERT INTO `smrc_options` VALUES (193,'woocommerce_allowed_countries','all','yes');
INSERT INTO `smrc_options` VALUES (194,'woocommerce_all_except_countries','a:0:{}','yes');
INSERT INTO `smrc_options` VALUES (195,'woocommerce_specific_allowed_countries','a:0:{}','yes');
INSERT INTO `smrc_options` VALUES (196,'woocommerce_ship_to_countries','','yes');
INSERT INTO `smrc_options` VALUES (197,'woocommerce_specific_ship_to_countries','a:0:{}','yes');
INSERT INTO `smrc_options` VALUES (198,'woocommerce_default_customer_address','base','yes');
INSERT INTO `smrc_options` VALUES (199,'woocommerce_calc_taxes','no','yes');
INSERT INTO `smrc_options` VALUES (200,'woocommerce_enable_coupons','yes','yes');
INSERT INTO `smrc_options` VALUES (201,'woocommerce_calc_discounts_sequentially','no','no');
INSERT INTO `smrc_options` VALUES (202,'woocommerce_currency','USD','yes');
INSERT INTO `smrc_options` VALUES (203,'woocommerce_currency_pos','left','yes');
INSERT INTO `smrc_options` VALUES (204,'woocommerce_price_thousand_sep',',','yes');
INSERT INTO `smrc_options` VALUES (205,'woocommerce_price_decimal_sep','.','yes');
INSERT INTO `smrc_options` VALUES (206,'woocommerce_price_num_decimals','2','yes');
INSERT INTO `smrc_options` VALUES (207,'woocommerce_shop_page_id','17','yes');
INSERT INTO `smrc_options` VALUES (208,'woocommerce_cart_redirect_after_add','no','yes');
INSERT INTO `smrc_options` VALUES (209,'woocommerce_enable_ajax_add_to_cart','yes','yes');
INSERT INTO `smrc_options` VALUES (210,'woocommerce_placeholder_image','16','yes');
INSERT INTO `smrc_options` VALUES (211,'woocommerce_weight_unit','kg','yes');
INSERT INTO `smrc_options` VALUES (212,'woocommerce_dimension_unit','cm','yes');
INSERT INTO `smrc_options` VALUES (213,'woocommerce_enable_reviews','yes','yes');
INSERT INTO `smrc_options` VALUES (214,'woocommerce_review_rating_verification_label','yes','no');
INSERT INTO `smrc_options` VALUES (215,'woocommerce_review_rating_verification_required','no','no');
INSERT INTO `smrc_options` VALUES (216,'woocommerce_enable_review_rating','yes','yes');
INSERT INTO `smrc_options` VALUES (217,'woocommerce_review_rating_required','yes','no');
INSERT INTO `smrc_options` VALUES (218,'woocommerce_manage_stock','yes','yes');
INSERT INTO `smrc_options` VALUES (219,'woocommerce_hold_stock_minutes','60','no');
INSERT INTO `smrc_options` VALUES (220,'woocommerce_notify_low_stock','yes','no');
INSERT INTO `smrc_options` VALUES (221,'woocommerce_notify_no_stock','yes','no');
INSERT INTO `smrc_options` VALUES (222,'woocommerce_stock_email_recipient','dan.green@omgmediagroup.com','no');
INSERT INTO `smrc_options` VALUES (223,'woocommerce_notify_low_stock_amount','2','no');
INSERT INTO `smrc_options` VALUES (224,'woocommerce_notify_no_stock_amount','0','yes');
INSERT INTO `smrc_options` VALUES (225,'woocommerce_hide_out_of_stock_items','no','yes');
INSERT INTO `smrc_options` VALUES (226,'woocommerce_stock_format','','yes');
INSERT INTO `smrc_options` VALUES (227,'woocommerce_file_download_method','force','no');
INSERT INTO `smrc_options` VALUES (228,'woocommerce_downloads_require_login','no','no');
INSERT INTO `smrc_options` VALUES (229,'woocommerce_downloads_grant_access_after_payment','yes','no');
INSERT INTO `smrc_options` VALUES (230,'woocommerce_downloads_add_hash_to_filename','yes','yes');
INSERT INTO `smrc_options` VALUES (231,'woocommerce_prices_include_tax','no','yes');
INSERT INTO `smrc_options` VALUES (232,'woocommerce_tax_based_on','shipping','yes');
INSERT INTO `smrc_options` VALUES (233,'woocommerce_shipping_tax_class','inherit','yes');
INSERT INTO `smrc_options` VALUES (234,'woocommerce_tax_round_at_subtotal','no','yes');
INSERT INTO `smrc_options` VALUES (235,'woocommerce_tax_classes','','yes');
INSERT INTO `smrc_options` VALUES (236,'woocommerce_tax_display_shop','excl','yes');
INSERT INTO `smrc_options` VALUES (237,'woocommerce_tax_display_cart','excl','yes');
INSERT INTO `smrc_options` VALUES (238,'woocommerce_price_display_suffix','','yes');
INSERT INTO `smrc_options` VALUES (239,'woocommerce_tax_total_display','itemized','no');
INSERT INTO `smrc_options` VALUES (240,'woocommerce_enable_shipping_calc','yes','no');
INSERT INTO `smrc_options` VALUES (241,'woocommerce_shipping_cost_requires_address','no','yes');
INSERT INTO `smrc_options` VALUES (242,'woocommerce_ship_to_destination','billing','no');
INSERT INTO `smrc_options` VALUES (243,'woocommerce_shipping_debug_mode','no','yes');
INSERT INTO `smrc_options` VALUES (244,'woocommerce_enable_guest_checkout','yes','no');
INSERT INTO `smrc_options` VALUES (245,'woocommerce_enable_checkout_login_reminder','no','no');
INSERT INTO `smrc_options` VALUES (246,'woocommerce_enable_signup_and_login_from_checkout','no','no');
INSERT INTO `smrc_options` VALUES (247,'woocommerce_enable_myaccount_registration','no','no');
INSERT INTO `smrc_options` VALUES (248,'woocommerce_registration_generate_username','yes','no');
INSERT INTO `smrc_options` VALUES (249,'woocommerce_registration_generate_password','yes','no');
INSERT INTO `smrc_options` VALUES (250,'woocommerce_erasure_request_removes_order_data','no','no');
INSERT INTO `smrc_options` VALUES (251,'woocommerce_erasure_request_removes_download_data','no','no');
INSERT INTO `smrc_options` VALUES (252,'woocommerce_allow_bulk_remove_personal_data','no','no');
INSERT INTO `smrc_options` VALUES (253,'woocommerce_registration_privacy_policy_text','Your personal data will be used to support your experience throughout this website, to manage access to your account, and for other purposes described in our [privacy_policy].','yes');
INSERT INTO `smrc_options` VALUES (254,'woocommerce_checkout_privacy_policy_text','Your personal data will be used to process your order, support your experience throughout this website, and for other purposes described in our [privacy_policy].','yes');
INSERT INTO `smrc_options` VALUES (255,'woocommerce_delete_inactive_accounts','a:2:{s:6:\"number\";s:0:\"\";s:4:\"unit\";s:6:\"months\";}','no');
INSERT INTO `smrc_options` VALUES (256,'woocommerce_trash_pending_orders','','no');
INSERT INTO `smrc_options` VALUES (257,'woocommerce_trash_failed_orders','','no');
INSERT INTO `smrc_options` VALUES (258,'woocommerce_trash_cancelled_orders','','no');
INSERT INTO `smrc_options` VALUES (259,'woocommerce_anonymize_completed_orders','a:2:{s:6:\"number\";s:0:\"\";s:4:\"unit\";s:6:\"months\";}','no');
INSERT INTO `smrc_options` VALUES (260,'woocommerce_email_from_name','Monterey Peninsula Yacht Club','no');
INSERT INTO `smrc_options` VALUES (261,'woocommerce_email_from_address','dan.green@omgmediagroup.com','no');
INSERT INTO `smrc_options` VALUES (262,'woocommerce_email_header_image','','no');
INSERT INTO `smrc_options` VALUES (263,'woocommerce_email_footer_text','{site_title} — Built with {WooCommerce}','no');
INSERT INTO `smrc_options` VALUES (264,'woocommerce_email_base_color','#96588a','no');
INSERT INTO `smrc_options` VALUES (265,'woocommerce_email_background_color','#f7f7f7','no');
INSERT INTO `smrc_options` VALUES (266,'woocommerce_email_body_background_color','#ffffff','no');
INSERT INTO `smrc_options` VALUES (267,'woocommerce_email_text_color','#3c3c3c','no');
INSERT INTO `smrc_options` VALUES (268,'woocommerce_merchant_email_notifications','no','no');
INSERT INTO `smrc_options` VALUES (269,'woocommerce_cart_page_id','18','no');
INSERT INTO `smrc_options` VALUES (270,'woocommerce_checkout_page_id','19','no');
INSERT INTO `smrc_options` VALUES (271,'woocommerce_myaccount_page_id','20','no');
INSERT INTO `smrc_options` VALUES (272,'woocommerce_terms_page_id','','no');
INSERT INTO `smrc_options` VALUES (273,'woocommerce_force_ssl_checkout','no','yes');
INSERT INTO `smrc_options` VALUES (274,'woocommerce_unforce_ssl_checkout','no','yes');
INSERT INTO `smrc_options` VALUES (275,'woocommerce_checkout_pay_endpoint','order-pay','yes');
INSERT INTO `smrc_options` VALUES (276,'woocommerce_checkout_order_received_endpoint','order-received','yes');
INSERT INTO `smrc_options` VALUES (277,'woocommerce_myaccount_add_payment_method_endpoint','add-payment-method','yes');
INSERT INTO `smrc_options` VALUES (278,'woocommerce_myaccount_delete_payment_method_endpoint','delete-payment-method','yes');
INSERT INTO `smrc_options` VALUES (279,'woocommerce_myaccount_set_default_payment_method_endpoint','set-default-payment-method','yes');
INSERT INTO `smrc_options` VALUES (280,'woocommerce_myaccount_orders_endpoint','orders','yes');
INSERT INTO `smrc_options` VALUES (281,'woocommerce_myaccount_view_order_endpoint','view-order','yes');
INSERT INTO `smrc_options` VALUES (282,'woocommerce_myaccount_downloads_endpoint','downloads','yes');
INSERT INTO `smrc_options` VALUES (283,'woocommerce_myaccount_edit_account_endpoint','edit-account','yes');
INSERT INTO `smrc_options` VALUES (284,'woocommerce_myaccount_edit_address_endpoint','edit-address','yes');
INSERT INTO `smrc_options` VALUES (285,'woocommerce_myaccount_payment_methods_endpoint','payment-methods','yes');
INSERT INTO `smrc_options` VALUES (286,'woocommerce_myaccount_lost_password_endpoint','lost-password','yes');
INSERT INTO `smrc_options` VALUES (287,'woocommerce_logout_endpoint','customer-logout','yes');
INSERT INTO `smrc_options` VALUES (288,'woocommerce_api_enabled','no','yes');
INSERT INTO `smrc_options` VALUES (289,'woocommerce_allow_tracking','no','no');
INSERT INTO `smrc_options` VALUES (290,'woocommerce_show_marketplace_suggestions','yes','no');
INSERT INTO `smrc_options` VALUES (291,'woocommerce_single_image_width','600','yes');
INSERT INTO `smrc_options` VALUES (292,'woocommerce_thumbnail_image_width','300','yes');
INSERT INTO `smrc_options` VALUES (293,'woocommerce_checkout_highlight_required_fields','yes','yes');
INSERT INTO `smrc_options` VALUES (294,'woocommerce_demo_store','no','no');
INSERT INTO `smrc_options` VALUES (295,'woocommerce_permalinks','a:5:{s:12:\"product_base\";s:8:\"/product\";s:13:\"category_base\";s:16:\"product-category\";s:8:\"tag_base\";s:11:\"product-tag\";s:14:\"attribute_base\";s:0:\"\";s:22:\"use_verbose_page_rules\";b:0;}','yes');
INSERT INTO `smrc_options` VALUES (296,'current_theme_supports_woocommerce','yes','yes');
INSERT INTO `smrc_options` VALUES (297,'woocommerce_queue_flush_rewrite_rules','no','yes');
INSERT INTO `smrc_options` VALUES (298,'_transient_wc_attribute_taxonomies','a:0:{}','yes');
INSERT INTO `smrc_options` VALUES (300,'default_product_cat','15','yes');
INSERT INTO `smrc_options` VALUES (303,'woocommerce_version','5.1.0','yes');
INSERT INTO `smrc_options` VALUES (304,'woocommerce_db_version','5.1.0','yes');
INSERT INTO `smrc_options` VALUES (308,'_transient_jetpack_autoloader_plugin_paths','a:1:{i:0;s:29:\"{{WP_PLUGIN_DIR}}/woocommerce\";}','yes');
INSERT INTO `smrc_options` VALUES (309,'action_scheduler_lock_async-request-runner','1676826537','yes');
INSERT INTO `smrc_options` VALUES (310,'woocommerce_admin_notices','a:1:{i:0;s:20:\"no_secure_connection\";}','yes');
INSERT INTO `smrc_options` VALUES (311,'woocommerce_maxmind_geolocation_settings','a:1:{s:15:\"database_prefix\";s:32:\"VWSIVmhuRKlYPr0MzLyxgAk7g3IcQt6b\";}','yes');
INSERT INTO `smrc_options` VALUES (312,'_transient_woocommerce_webhook_ids_status_active','a:0:{}','yes');
INSERT INTO `smrc_options` VALUES (313,'widget_woocommerce_widget_cart','a:2:{i:2;a:2:{s:5:\"title\";s:4:\"Cart\";s:13:\"hide_if_empty\";i:0;}s:12:\"_multiwidget\";i:1;}','yes');
INSERT INTO `smrc_options` VALUES (314,'widget_woocommerce_layered_nav_filters','a:1:{s:12:\"_multiwidget\";i:1;}','yes');
INSERT INTO `smrc_options` VALUES (315,'widget_woocommerce_layered_nav','a:1:{s:12:\"_multiwidget\";i:1;}','yes');
INSERT INTO `smrc_options` VALUES (316,'widget_woocommerce_price_filter','a:2:{i:2;a:1:{s:5:\"title\";s:15:\"Filter by price\";}s:12:\"_multiwidget\";i:1;}','yes');
INSERT INTO `smrc_options` VALUES (317,'widget_woocommerce_product_categories','a:2:{i:2;a:7:{s:5:\"title\";s:18:\"Product Categories\";s:7:\"orderby\";s:4:\"name\";s:8:\"dropdown\";i:0;s:5:\"count\";i:0;s:12:\"hierarchical\";i:1;s:18:\"show_children_only\";i:0;s:10:\"hide_empty\";i:0;}s:12:\"_multiwidget\";i:1;}','yes');
INSERT INTO `smrc_options` VALUES (318,'widget_woocommerce_product_search','a:1:{s:12:\"_multiwidget\";i:1;}','yes');
INSERT INTO `smrc_options` VALUES (319,'widget_woocommerce_product_tag_cloud','a:1:{s:12:\"_multiwidget\";i:1;}','yes');
INSERT INTO `smrc_options` VALUES (320,'widget_woocommerce_products','a:1:{s:12:\"_multiwidget\";i:1;}','yes');
INSERT INTO `smrc_options` VALUES (321,'widget_woocommerce_recently_viewed_products','a:1:{s:12:\"_multiwidget\";i:1;}','yes');
INSERT INTO `smrc_options` VALUES (322,'widget_woocommerce_top_rated_products','a:2:{i:2;a:2:{s:5:\"title\";s:18:\"Top Rated Products\";s:6:\"number\";i:5;}s:12:\"_multiwidget\";i:1;}','yes');
INSERT INTO `smrc_options` VALUES (323,'widget_woocommerce_recent_reviews','a:1:{s:12:\"_multiwidget\";i:1;}','yes');
INSERT INTO `smrc_options` VALUES (324,'widget_woocommerce_rating_filter','a:1:{s:12:\"_multiwidget\";i:1;}','yes');
INSERT INTO `smrc_options` VALUES (327,'woocommerce_admin_version','2.0.2','yes');
INSERT INTO `smrc_options` VALUES (328,'woocommerce_admin_install_timestamp','1617362811','yes');
INSERT INTO `smrc_options` VALUES (333,'wc_blocks_db_schema_version','260','yes');
INSERT INTO `smrc_options` VALUES (334,'wc_remote_inbox_notifications_stored_state','O:8:\"stdClass\":3:{s:22:\"there_were_no_products\";b:1;s:22:\"there_are_now_products\";b:1;s:17:\"new_product_count\";i:0;}','yes');
INSERT INTO `smrc_options` VALUES (335,'woocommerce_meta_box_errors','a:0:{}','yes');
INSERT INTO `smrc_options` VALUES (338,'_transient_woocommerce_reports-transient-version','1617362866','yes');
INSERT INTO `smrc_options` VALUES (341,'wc_remote_inbox_notifications_specs','a:0:{}','yes');
INSERT INTO `smrc_options` VALUES (349,'woocommerce_onboarding_profile','a:8:{s:12:\"setup_client\";b:1;s:8:\"industry\";a:1:{i:0;a:1:{s:4:\"slug\";s:5:\"other\";}}s:13:\"product_types\";a:1:{i:0;s:8:\"physical\";}s:13:\"product_count\";s:4:\"1-10\";s:14:\"selling_venues\";s:12:\"brick-mortar\";s:7:\"revenue\";s:4:\"none\";s:19:\"business_extensions\";a:0:{}s:9:\"completed\";b:1;}','yes');
INSERT INTO `smrc_options` VALUES (350,'action_scheduler_migration_status','complete','yes');
INSERT INTO `smrc_options` VALUES (355,'woocommerce_task_list_tracked_completed_tasks','a:1:{i:0;s:13:\"store_details\";}','yes');
INSERT INTO `smrc_options` VALUES (356,'woocommerce_task_list_welcome_modal_dismissed','yes','yes');
INSERT INTO `smrc_options` VALUES (369,'_transient_product_query-transient-version','1618240052','yes');
INSERT INTO `smrc_options` VALUES (387,'category_children','a:0:{}','yes');
INSERT INTO `smrc_options` VALUES (388,'product_cat_children','a:0:{}','yes');
INSERT INTO `smrc_options` VALUES (389,'portfolio_category_children','a:0:{}','yes');
INSERT INTO `smrc_options` VALUES (390,'_transient_product-transient-version','1617363627','yes');
INSERT INTO `smrc_options` VALUES (395,'boldthemes_theme_theme_options','a:20:{s:13:\"hide_headline\";s:1:\"1\";s:7:\"sidebar\";s:10:\"no_sidebar\";s:9:\"menu_type\";s:10:\"hLeftBelow\";s:13:\"sticky_header\";s:1:\"1\";s:16:\"footer_dark_skin\";s:0:\"\";s:11:\"custom_text\";s:67:\"Powered by Buz Club Software - Copyright 2021, all rights reserved.\";s:4:\"logo\";s:73:\"http://mpycdev.theomggroup.com/wp-content/uploads/2021/04/mpyclogo-rd.png\";s:10:\"below_menu\";s:0:\"\";s:17:\"top_tools_in_menu\";s:1:\"1\";s:23:\"blog_settings_page_slug\";s:11:\"single-post\";s:21:\"pf_settings_page_slug\";s:11:\"single-post\";s:10:\"boxed_menu\";s:0:\"\";s:11:\"logo_indent\";s:2:\"65\";s:9:\"hide_menu\";s:0:\"\";s:23:\"shop_settings_page_slug\";s:14:\"single-product\";s:19:\"pf_grid_gallery_gap\";s:2:\"10\";s:13:\"custom_js_top\";s:0:\"\";s:11:\"logo_height\";s:2:\"50\";s:16:\"sidebar_use_dash\";s:1:\"1\";s:10:\"custom_css\";s:0:\"\";}','yes');
INSERT INTO `smrc_options` VALUES (407,'_transient_wc_count_comments','O:8:\"stdClass\":7:{s:14:\"total_comments\";i:43;s:3:\"all\";i:43;s:8:\"approved\";s:2:\"43\";s:9:\"moderated\";i:0;s:4:\"spam\";i:0;s:5:\"trash\";i:0;s:12:\"post-trashed\";i:0;}','yes');
INSERT INTO `smrc_options` VALUES (428,'_transient_shipping-transient-version','1617364186','yes');
INSERT INTO `smrc_options` VALUES (685,'_transient_health-check-site-status-result','{\"good\":11,\"recommended\":6,\"critical\":2}','yes');
INSERT INTO `smrc_options` VALUES (722,'nav_menu_options','a:1:{s:8:\"auto_add\";a:1:{i:0;i:43;}}','yes');
INSERT INTO `smrc_options` VALUES (723,'woocommerce_maybe_regenerate_images_hash','991b1ca641921cf0f5baf7a2fe85861b','yes');
INSERT INTO `smrc_options` VALUES (6386,'secret_key','s9pAgG@D~2Y`E7Y]C^&_McaS#)JlILq]ff6Xq>uWL$eZt.d(N`BZTIpJ2 Fa Ruy','no');
INSERT INTO `smrc_options` VALUES (6927,'limit_login_retries','a:1:{s:14:\"45.144.154.129\";i:6;}','no');
INSERT INTO `smrc_options` VALUES (6928,'limit_login_retries_valid','a:1:{s:14:\"45.144.154.129\";i:1676153915;}','no');
INSERT INTO `smrc_options` VALUES (6929,'limit_login_retries_stats','a:1:{s:10:\"2023-02-10\";i:6;}','no');
INSERT INTO `smrc_options` VALUES (6930,'limit_login_logged','a:5:{s:12:\"20.225.54.29\";a:1:{s:5:\"admin\";a:4:{s:7:\"counter\";i:1;s:4:\"date\";i:1651302562;s:7:\"gateway\";s:9:\"wp_xmlrpc\";s:8:\"unlocked\";b:1;}}s:12:\"40.86.30.114\";a:1:{s:5:\"admin\";a:4:{s:7:\"counter\";i:1;s:4:\"date\";i:1651356449;s:7:\"gateway\";s:9:\"wp_xmlrpc\";s:8:\"unlocked\";b:1;}}s:13:\"170.106.36.28\";a:1:{s:5:\"admin\";a:4:{s:7:\"counter\";i:1;s:4:\"date\";i:1668845471;s:7:\"gateway\";s:9:\"wp_xmlrpc\";s:8:\"unlocked\";b:1;}}s:13:\"167.172.29.94\";a:1:{s:5:\"admin\";a:4:{s:7:\"counter\";i:1;s:4:\"date\";i:1668903824;s:7:\"gateway\";s:8:\"wp_login\";s:8:\"unlocked\";b:1;}}s:14:\"45.144.154.129\";a:1:{s:5:\"admin\";a:4:{s:7:\"counter\";i:1;s:4:\"date\";i:1676050571;s:7:\"gateway\";s:9:\"wp_xmlrpc\";s:8:\"unlocked\";b:1;}}}','yes');
INSERT INTO `smrc_options` VALUES (6931,'limit_login_lockouts','a:0:{}','yes');
INSERT INTO `smrc_options` VALUES (6932,'limit_login_lockouts_total','5','no');
INSERT INTO `smrc_options` VALUES (14859,'_transient_timeout_wc_term_counts','1677440421','no');
INSERT INTO `smrc_options` VALUES (14860,'_transient_wc_term_counts','a:5:{i:38;s:1:\"9\";i:37;s:1:\"5\";i:39;s:1:\"2\";i:40;s:1:\"8\";i:15;s:0:\"\";}','no');
INSERT INTO `smrc_options` VALUES (14874,'_transient_timeout_wc_product_children_101','1677476768','no');
INSERT INTO `smrc_options` VALUES (14875,'_transient_wc_product_children_101','a:2:{s:3:\"all\";a:2:{i:0;i:113;i:1;i:114;}s:7:\"visible\";a:2:{i:0;i:113;i:1;i:114;}}','no');
INSERT INTO `smrc_options` VALUES (14876,'_transient_timeout_wc_var_prices_101','1677476768','no');
INSERT INTO `smrc_options` VALUES (14877,'_transient_wc_var_prices_101','{\"version\":\"1617363627\",\"f9e544f77b7eac7add281ef28ca5559f\":{\"price\":{\"113\":\"35.00\",\"114\":\"30.00\"},\"regular_price\":{\"113\":\"35.00\",\"114\":\"35.00\"},\"sale_price\":{\"113\":\"35.00\",\"114\":\"30.00\"}}}','no');
INSERT INTO `smrc_options` VALUES (15502,'_transient_timeout_wc_product_children_97','1679370440','no');
INSERT INTO `smrc_options` VALUES (15503,'_transient_wc_product_children_97','a:2:{s:3:\"all\";a:2:{i:0;i:111;i:1;i:112;}s:7:\"visible\";a:2:{i:0;i:111;i:1;i:112;}}','no');
INSERT INTO `smrc_options` VALUES (15504,'_transient_timeout_wc_var_prices_97','1679370440','no');
INSERT INTO `smrc_options` VALUES (15505,'_transient_wc_var_prices_97','{\"version\":\"1617363627\",\"f9e544f77b7eac7add281ef28ca5559f\":{\"price\":{\"111\":\"20.00\",\"112\":\"20.00\"},\"regular_price\":{\"111\":\"20.00\",\"112\":\"20.00\"},\"sale_price\":{\"111\":\"20.00\",\"112\":\"20.00\"}}}','no');
INSERT INTO `smrc_options` VALUES (15506,'_transient_timeout_wc_child_has_weight_97','1679370440','no');
INSERT INTO `smrc_options` VALUES (15507,'_transient_wc_child_has_weight_97','0','no');
INSERT INTO `smrc_options` VALUES (15508,'_transient_timeout_wc_child_has_dimensions_97','1679370440','no');
INSERT INTO `smrc_options` VALUES (15509,'_transient_wc_child_has_dimensions_97','0','no');
INSERT INTO `smrc_options` VALUES (15510,'_transient_timeout_wc_related_97','1676864840','no');
INSERT INTO `smrc_options` VALUES (15511,'_transient_wc_related_97','a:1:{s:72:\"limit=3&exclude_ids%5B0%5D=0&exclude_ids%5B1%5D=97&exclude_ids%5B2%5D=40\";a:4:{i:0;s:2:\"95\";i:1;s:2:\"96\";i:2;s:2:\"98\";i:3;s:3:\"100\";}}','no');
INSERT INTO `smrc_options` VALUES (15544,'_transient_timeout__woocommerce_helper_subscriptions','1676885593','no');
INSERT INTO `smrc_options` VALUES (15545,'_transient__woocommerce_helper_subscriptions','a:0:{}','no');
INSERT INTO `smrc_options` VALUES (15546,'_site_transient_timeout_theme_roots','1676886493','no');
INSERT INTO `smrc_options` VALUES (15547,'_site_transient_theme_roots','a:5:{s:21:\"hotelcalifornia-child\";s:7:\"/themes\";s:15:\"hotelcalifornia\";s:7:\"/themes\";s:14:\"twentynineteen\";s:7:\"/themes\";s:12:\"twentytwenty\";s:7:\"/themes\";s:15:\"twentytwentyone\";s:7:\"/themes\";}','no');
INSERT INTO `smrc_options` VALUES (15548,'_transient_timeout__woocommerce_helper_updates','1676927893','no');
INSERT INTO `smrc_options` VALUES (15549,'_transient__woocommerce_helper_updates','a:4:{s:4:\"hash\";s:32:\"d751713988987e9331980363e24189ce\";s:7:\"updated\";i:1676884693;s:8:\"products\";a:0:{}s:6:\"errors\";a:1:{i:0;s:10:\"http-error\";}}','no');
--
-- Table structure for table `smrc_postmeta`
--
DROP TABLE IF EXISTS `smrc_postmeta`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `smrc_postmeta` (
`meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`post_id` bigint(20) unsigned NOT NULL DEFAULT '0',
`meta_key` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
`meta_value` longtext COLLATE utf8mb4_unicode_520_ci,
PRIMARY KEY (`meta_id`),
KEY `post_id` (`post_id`),
KEY `meta_key` (`meta_key`(191))
) ENGINE=InnoDB AUTO_INCREMENT=2609 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `smrc_postmeta`
--
INSERT INTO `smrc_postmeta` VALUES (1,2,'_wp_page_template','default');
INSERT INTO `smrc_postmeta` VALUES (2,3,'_wp_page_template','default');
INSERT INTO `smrc_postmeta` VALUES (3,5,'_customize_draft_post_name','create-your-website-with-blocks');
INSERT INTO `smrc_postmeta` VALUES (4,5,'_customize_changeset_uuid','db42f5e5-9bb0-470f-b929-71f1c9b6ca8e');
INSERT INTO `smrc_postmeta` VALUES (5,6,'_customize_draft_post_name','about');
INSERT INTO `smrc_postmeta` VALUES (6,6,'_customize_changeset_uuid','db42f5e5-9bb0-470f-b929-71f1c9b6ca8e');
INSERT INTO `smrc_postmeta` VALUES (7,7,'_customize_draft_post_name','contact');
INSERT INTO `smrc_postmeta` VALUES (8,7,'_customize_changeset_uuid','db42f5e5-9bb0-470f-b929-71f1c9b6ca8e');
INSERT INTO `smrc_postmeta` VALUES (9,8,'_customize_draft_post_name','blog');
INSERT INTO `smrc_postmeta` VALUES (10,8,'_customize_changeset_uuid','db42f5e5-9bb0-470f-b929-71f1c9b6ca8e');
INSERT INTO `smrc_postmeta` VALUES (11,10,'_customize_draft_post_name','create-your-website-with-blocks');
INSERT INTO `smrc_postmeta` VALUES (12,10,'_customize_changeset_uuid','5aa27a9f-793b-4088-b489-88c227c0d4aa');
INSERT INTO `smrc_postmeta` VALUES (13,11,'_customize_draft_post_name','about');
INSERT INTO `smrc_postmeta` VALUES (14,11,'_customize_changeset_uuid','5aa27a9f-793b-4088-b489-88c227c0d4aa');
INSERT INTO `smrc_postmeta` VALUES (15,12,'_customize_draft_post_name','contact');
INSERT INTO `smrc_postmeta` VALUES (16,12,'_customize_changeset_uuid','5aa27a9f-793b-4088-b489-88c227c0d4aa');
INSERT INTO `smrc_postmeta` VALUES (17,13,'_customize_draft_post_name','blog');
INSERT INTO `smrc_postmeta` VALUES (18,13,'_customize_changeset_uuid','5aa27a9f-793b-4088-b489-88c227c0d4aa');
INSERT INTO `smrc_postmeta` VALUES (20,15,'_form','<label> Your name\n [text* your-name] </label>\n\n<label> Your email\n [email* your-email] </label>\n\n<label> Subject\n [text* your-subject] </label>\n\n<label> Your message (optional)\n [textarea your-message] </label>\n\n[submit \"Submit\"]');
INSERT INTO `smrc_postmeta` VALUES (21,15,'_mail','a:8:{s:7:\"subject\";s:30:\"[_site_title] \"[your-subject]\"\";s:6:\"sender\";s:49:\"[_site_title] <wordpress@mpycdev.theomggroup.com>\";s:4:\"body\";s:163:\"From: [your-name] <[your-email]>\nSubject: [your-subject]\n\nMessage Body:\n[your-message]\n\n-- \nThis e-mail was sent from a contact form on [_site_title] ([_site_url])\";s:9:\"recipient\";s:19:\"[_site_admin_email]\";s:18:\"additional_headers\";s:22:\"Reply-To: [your-email]\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";i:0;s:13:\"exclude_blank\";i:0;}');
INSERT INTO `smrc_postmeta` VALUES (22,15,'_mail_2','a:9:{s:6:\"active\";b:0;s:7:\"subject\";s:30:\"[_site_title] \"[your-subject]\"\";s:6:\"sender\";s:49:\"[_site_title] <wordpress@mpycdev.theomggroup.com>\";s:4:\"body\";s:105:\"Message Body:\n[your-message]\n\n-- \nThis e-mail was sent from a contact form on [_site_title] ([_site_url])\";s:9:\"recipient\";s:12:\"[your-email]\";s:18:\"additional_headers\";s:29:\"Reply-To: [_site_admin_email]\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";i:0;s:13:\"exclude_blank\";i:0;}');
INSERT INTO `smrc_postmeta` VALUES (23,15,'_messages','a:12:{s:12:\"mail_sent_ok\";s:45:\"Thank you for your message. It has been sent.\";s:12:\"mail_sent_ng\";s:71:\"There was an error trying to send your message. Please try again later.\";s:16:\"validation_error\";s:61:\"One or more fields have an error. Please check and try again.\";s:4:\"spam\";s:71:\"There was an error trying to send your message. Please try again later.\";s:12:\"accept_terms\";s:69:\"You must accept the terms and conditions before sending your message.\";s:16:\"invalid_required\";s:22:\"The field is required.\";s:16:\"invalid_too_long\";s:22:\"The field is too long.\";s:17:\"invalid_too_short\";s:23:\"The field is too short.\";s:13:\"upload_failed\";s:46:\"There was an unknown error uploading the file.\";s:24:\"upload_file_type_invalid\";s:49:\"You are not allowed to upload files of this type.\";s:21:\"upload_file_too_large\";s:20:\"The file is too big.\";s:23:\"upload_failed_php_error\";s:38:\"There was an error uploading the file.\";}');
INSERT INTO `smrc_postmeta` VALUES (25,15,'_locale','en');
INSERT INTO `smrc_postmeta` VALUES (26,16,'_wp_attached_file','woocommerce-placeholder.png');
INSERT INTO `smrc_postmeta` VALUES (27,16,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:4:\"file\";s:27:\"woocommerce-placeholder.png\";s:5:\"sizes\";a:13:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:35:\"woocommerce-placeholder-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:35:\"woocommerce-placeholder-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:35:\"woocommerce-placeholder-600x600.png\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"woocommerce-placeholder-320x320.png\";s:5:\"width\";i:320;s:6:\"height\";i:320;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"woocommerce-placeholder-160x160.png\";s:5:\"width\";i:160;s:6:\"height\";i:160;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:35:\"woocommerce-placeholder-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"boldthemes_grid\";a:4:{s:4:\"file\";s:35:\"woocommerce-placeholder-540x540.png\";s:5:\"width\";i:540;s:6:\"height\";i:540;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"boldthemes_grid_11\";a:4:{s:4:\"file\";s:35:\"woocommerce-placeholder-540x540.png\";s:5:\"width\";i:540;s:6:\"height\";i:540;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"boldthemes_grid_22\";a:4:{s:4:\"file\";s:37:\"woocommerce-placeholder-1080x1080.png\";s:5:\"width\";i:1080;s:6:\"height\";i:1080;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"boldthemes_grid_21\";a:4:{s:4:\"file\";s:36:\"woocommerce-placeholder-1080x540.png\";s:5:\"width\";i:1080;s:6:\"height\";i:540;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"boldthemes_grid_12\";a:4:{s:4:\"file\";s:36:\"woocommerce-placeholder-540x1080.png\";s:5:\"width\";i:540;s:6:\"height\";i:1080;s:9:\"mime-type\";s:9:\"image/png\";}s:23:\"boldthemes_latest_posts\";a:4:{s:4:\"file\";s:35:\"woocommerce-placeholder-320x240.png\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:9:\"image/png\";}s:23:\"boldthemes_grid_gallery\";a:4:{s:4:\"file\";s:35:\"woocommerce-placeholder-540x405.png\";s:5:\"width\";i:540;s:6:\"height\";i:405;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:{}}}');
INSERT INTO `smrc_postmeta` VALUES (28,763,'_wp_attached_file','2016/03/restaurant-gallery-03.jpg');
INSERT INTO `smrc_postmeta` VALUES (29,763,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1180;s:6:\"height\";i:737;s:4:\"file\";s:33:\"2016/03/restaurant-gallery-03.jpg\";s:5:\"sizes\";a:16:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:33:\"restaurant-gallery-03-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:33:\"restaurant-gallery-03-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:33:\"restaurant-gallery-03-600x375.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"restaurant-gallery-03-320x200.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"restaurant-gallery-03-160x160.jpg\";s:5:\"width\";i:160;s:6:\"height\";i:160;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:33:\"restaurant-gallery-03-768x480.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"boldthemes_grid\";a:4:{s:4:\"file\";s:33:\"restaurant-gallery-03-540x337.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:337;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_11\";a:4:{s:4:\"file\";s:33:\"restaurant-gallery-03-540x540.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_22\";a:4:{s:4:\"file\";s:34:\"restaurant-gallery-03-1080x737.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:737;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_21\";a:4:{s:4:\"file\";s:34:\"restaurant-gallery-03-1080x540.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_12\";a:4:{s:4:\"file\";s:33:\"restaurant-gallery-03-540x737.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:737;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_latest_posts\";a:4:{s:4:\"file\";s:33:\"restaurant-gallery-03-320x240.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_grid_gallery\";a:4:{s:4:\"file\";s:33:\"restaurant-gallery-03-540x405.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:33:\"restaurant-gallery-03-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:33:\"restaurant-gallery-03-600x375.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:33:\"restaurant-gallery-03-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `smrc_postmeta` VALUES (30,764,'_wp_attached_file','2016/03/restaurant-gallery-02.jpg');
INSERT INTO `smrc_postmeta` VALUES (31,764,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1180;s:6:\"height\";i:737;s:4:\"file\";s:33:\"2016/03/restaurant-gallery-02.jpg\";s:5:\"sizes\";a:16:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:33:\"restaurant-gallery-02-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:33:\"restaurant-gallery-02-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:33:\"restaurant-gallery-02-600x375.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"restaurant-gallery-02-320x200.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"restaurant-gallery-02-160x160.jpg\";s:5:\"width\";i:160;s:6:\"height\";i:160;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:33:\"restaurant-gallery-02-768x480.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"boldthemes_grid\";a:4:{s:4:\"file\";s:33:\"restaurant-gallery-02-540x337.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:337;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_11\";a:4:{s:4:\"file\";s:33:\"restaurant-gallery-02-540x540.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_22\";a:4:{s:4:\"file\";s:34:\"restaurant-gallery-02-1080x737.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:737;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_21\";a:4:{s:4:\"file\";s:34:\"restaurant-gallery-02-1080x540.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_12\";a:4:{s:4:\"file\";s:33:\"restaurant-gallery-02-540x737.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:737;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_latest_posts\";a:4:{s:4:\"file\";s:33:\"restaurant-gallery-02-320x240.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_grid_gallery\";a:4:{s:4:\"file\";s:33:\"restaurant-gallery-02-540x405.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:33:\"restaurant-gallery-02-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:33:\"restaurant-gallery-02-600x375.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:33:\"restaurant-gallery-02-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `smrc_postmeta` VALUES (32,765,'_wp_attached_file','2016/03/restaurant-gallery-01.jpg');
INSERT INTO `smrc_postmeta` VALUES (33,765,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1180;s:6:\"height\";i:737;s:4:\"file\";s:33:\"2016/03/restaurant-gallery-01.jpg\";s:5:\"sizes\";a:16:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:33:\"restaurant-gallery-01-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:33:\"restaurant-gallery-01-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:33:\"restaurant-gallery-01-600x375.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"restaurant-gallery-01-320x200.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"restaurant-gallery-01-160x160.jpg\";s:5:\"width\";i:160;s:6:\"height\";i:160;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:33:\"restaurant-gallery-01-768x480.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"boldthemes_grid\";a:4:{s:4:\"file\";s:33:\"restaurant-gallery-01-540x337.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:337;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_11\";a:4:{s:4:\"file\";s:33:\"restaurant-gallery-01-540x540.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_22\";a:4:{s:4:\"file\";s:34:\"restaurant-gallery-01-1080x737.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:737;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_21\";a:4:{s:4:\"file\";s:34:\"restaurant-gallery-01-1080x540.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_12\";a:4:{s:4:\"file\";s:33:\"restaurant-gallery-01-540x737.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:737;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_latest_posts\";a:4:{s:4:\"file\";s:33:\"restaurant-gallery-01-320x240.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_grid_gallery\";a:4:{s:4:\"file\";s:33:\"restaurant-gallery-01-540x405.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:33:\"restaurant-gallery-01-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:33:\"restaurant-gallery-01-600x375.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:33:\"restaurant-gallery-01-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `smrc_postmeta` VALUES (34,762,'_wp_attached_file','2016/03/restaurant-gallery-04.jpg');
INSERT INTO `smrc_postmeta` VALUES (35,762,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1180;s:6:\"height\";i:737;s:4:\"file\";s:33:\"2016/03/restaurant-gallery-04.jpg\";s:5:\"sizes\";a:16:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:33:\"restaurant-gallery-04-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:33:\"restaurant-gallery-04-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:33:\"restaurant-gallery-04-600x375.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"restaurant-gallery-04-320x200.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"restaurant-gallery-04-160x160.jpg\";s:5:\"width\";i:160;s:6:\"height\";i:160;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:33:\"restaurant-gallery-04-768x480.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"boldthemes_grid\";a:4:{s:4:\"file\";s:33:\"restaurant-gallery-04-540x337.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:337;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_11\";a:4:{s:4:\"file\";s:33:\"restaurant-gallery-04-540x540.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_22\";a:4:{s:4:\"file\";s:34:\"restaurant-gallery-04-1080x737.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:737;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_21\";a:4:{s:4:\"file\";s:34:\"restaurant-gallery-04-1080x540.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_12\";a:4:{s:4:\"file\";s:33:\"restaurant-gallery-04-540x737.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:737;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_latest_posts\";a:4:{s:4:\"file\";s:33:\"restaurant-gallery-04-320x240.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_grid_gallery\";a:4:{s:4:\"file\";s:33:\"restaurant-gallery-04-540x405.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:33:\"restaurant-gallery-04-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:33:\"restaurant-gallery-04-600x375.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:33:\"restaurant-gallery-04-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `smrc_postmeta` VALUES (36,760,'_wp_attached_file','2016/03/restaurant-bar-breakfast.jpg');
INSERT INTO `smrc_postmeta` VALUES (37,760,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:220;s:4:\"file\";s:36:\"2016/03/restaurant-bar-breakfast.jpg\";s:5:\"sizes\";a:16:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:36:\"restaurant-bar-breakfast-300x220.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:220;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:36:\"restaurant-bar-breakfast-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:36:\"restaurant-bar-breakfast-600x110.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"restaurant-bar-breakfast-320x59.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:59;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:36:\"restaurant-bar-breakfast-160x160.jpg\";s:5:\"width\";i:160;s:6:\"height\";i:160;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:36:\"restaurant-bar-breakfast-768x141.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:141;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"boldthemes_grid\";a:4:{s:4:\"file\";s:35:\"restaurant-bar-breakfast-540x99.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:99;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_11\";a:4:{s:4:\"file\";s:36:\"restaurant-bar-breakfast-540x220.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:220;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_22\";a:4:{s:4:\"file\";s:37:\"restaurant-bar-breakfast-1080x220.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:220;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_21\";a:4:{s:4:\"file\";s:37:\"restaurant-bar-breakfast-1080x220.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:220;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_12\";a:4:{s:4:\"file\";s:36:\"restaurant-bar-breakfast-540x220.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:220;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_latest_posts\";a:4:{s:4:\"file\";s:36:\"restaurant-bar-breakfast-320x220.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:220;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_grid_gallery\";a:4:{s:4:\"file\";s:36:\"restaurant-bar-breakfast-540x220.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:220;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:36:\"restaurant-bar-breakfast-300x220.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:220;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:36:\"restaurant-bar-breakfast-600x110.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:36:\"restaurant-bar-breakfast-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `smrc_postmeta` VALUES (38,758,'_wp_attached_file','2016/03/restaurant-bar-lunch.jpg');
INSERT INTO `smrc_postmeta` VALUES (39,758,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:220;s:4:\"file\";s:32:\"2016/03/restaurant-bar-lunch.jpg\";s:5:\"sizes\";a:16:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:32:\"restaurant-bar-lunch-300x220.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:220;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:32:\"restaurant-bar-lunch-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:32:\"restaurant-bar-lunch-600x110.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"restaurant-bar-lunch-320x59.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:59;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"restaurant-bar-lunch-160x160.jpg\";s:5:\"width\";i:160;s:6:\"height\";i:160;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:32:\"restaurant-bar-lunch-768x141.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:141;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"boldthemes_grid\";a:4:{s:4:\"file\";s:31:\"restaurant-bar-lunch-540x99.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:99;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_11\";a:4:{s:4:\"file\";s:32:\"restaurant-bar-lunch-540x220.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:220;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_22\";a:4:{s:4:\"file\";s:33:\"restaurant-bar-lunch-1080x220.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:220;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_21\";a:4:{s:4:\"file\";s:33:\"restaurant-bar-lunch-1080x220.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:220;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_12\";a:4:{s:4:\"file\";s:32:\"restaurant-bar-lunch-540x220.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:220;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_latest_posts\";a:4:{s:4:\"file\";s:32:\"restaurant-bar-lunch-320x220.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:220;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_grid_gallery\";a:4:{s:4:\"file\";s:32:\"restaurant-bar-lunch-540x220.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:220;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:32:\"restaurant-bar-lunch-300x220.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:220;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:32:\"restaurant-bar-lunch-600x110.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:32:\"restaurant-bar-lunch-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `smrc_postmeta` VALUES (40,759,'_wp_attached_file','2016/03/restaurant-bar-dinner.jpg');
INSERT INTO `smrc_postmeta` VALUES (41,759,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:220;s:4:\"file\";s:33:\"2016/03/restaurant-bar-dinner.jpg\";s:5:\"sizes\";a:16:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:33:\"restaurant-bar-dinner-300x220.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:220;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:33:\"restaurant-bar-dinner-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:33:\"restaurant-bar-dinner-600x110.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"restaurant-bar-dinner-320x59.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:59;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"restaurant-bar-dinner-160x160.jpg\";s:5:\"width\";i:160;s:6:\"height\";i:160;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:33:\"restaurant-bar-dinner-768x141.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:141;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"boldthemes_grid\";a:4:{s:4:\"file\";s:32:\"restaurant-bar-dinner-540x99.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:99;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_11\";a:4:{s:4:\"file\";s:33:\"restaurant-bar-dinner-540x220.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:220;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_22\";a:4:{s:4:\"file\";s:34:\"restaurant-bar-dinner-1080x220.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:220;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_21\";a:4:{s:4:\"file\";s:34:\"restaurant-bar-dinner-1080x220.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:220;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_12\";a:4:{s:4:\"file\";s:33:\"restaurant-bar-dinner-540x220.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:220;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_latest_posts\";a:4:{s:4:\"file\";s:33:\"restaurant-bar-dinner-320x220.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:220;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_grid_gallery\";a:4:{s:4:\"file\";s:33:\"restaurant-bar-dinner-540x220.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:220;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:33:\"restaurant-bar-dinner-300x220.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:220;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:33:\"restaurant-bar-dinner-600x110.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:33:\"restaurant-bar-dinner-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `smrc_postmeta` VALUES (42,766,'_wp_attached_file','2016/03/restaurant-offer-05.jpg');
INSERT INTO `smrc_postmeta` VALUES (43,766,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:600;s:4:\"file\";s:31:\"2016/03/restaurant-offer-05.jpg\";s:5:\"sizes\";a:15:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:31:\"restaurant-offer-05-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:31:\"restaurant-offer-05-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:31:\"restaurant-offer-05-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"restaurant-offer-05-320x240.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"restaurant-offer-05-160x160.jpg\";s:5:\"width\";i:160;s:6:\"height\";i:160;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:31:\"restaurant-offer-05-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"boldthemes_grid\";a:4:{s:4:\"file\";s:31:\"restaurant-offer-05-540x405.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_11\";a:4:{s:4:\"file\";s:31:\"restaurant-offer-05-540x540.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_21\";a:4:{s:4:\"file\";s:31:\"restaurant-offer-05-800x540.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_12\";a:4:{s:4:\"file\";s:31:\"restaurant-offer-05-540x600.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_latest_posts\";a:4:{s:4:\"file\";s:31:\"restaurant-offer-05-320x240.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_grid_gallery\";a:4:{s:4:\"file\";s:31:\"restaurant-offer-05-540x405.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:31:\"restaurant-offer-05-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:31:\"restaurant-offer-05-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:31:\"restaurant-offer-05-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `smrc_postmeta` VALUES (44,761,'_wp_attached_file','2016/03/restaurant-gallery-05.jpg');
INSERT INTO `smrc_postmeta` VALUES (45,761,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1180;s:6:\"height\";i:737;s:4:\"file\";s:33:\"2016/03/restaurant-gallery-05.jpg\";s:5:\"sizes\";a:16:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:33:\"restaurant-gallery-05-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:33:\"restaurant-gallery-05-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:33:\"restaurant-gallery-05-600x375.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"restaurant-gallery-05-320x200.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"restaurant-gallery-05-160x160.jpg\";s:5:\"width\";i:160;s:6:\"height\";i:160;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:33:\"restaurant-gallery-05-768x480.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"boldthemes_grid\";a:4:{s:4:\"file\";s:33:\"restaurant-gallery-05-540x337.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:337;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_11\";a:4:{s:4:\"file\";s:33:\"restaurant-gallery-05-540x540.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_22\";a:4:{s:4:\"file\";s:34:\"restaurant-gallery-05-1080x737.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:737;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_21\";a:4:{s:4:\"file\";s:34:\"restaurant-gallery-05-1080x540.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_12\";a:4:{s:4:\"file\";s:33:\"restaurant-gallery-05-540x737.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:737;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_latest_posts\";a:4:{s:4:\"file\";s:33:\"restaurant-gallery-05-320x240.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_grid_gallery\";a:4:{s:4:\"file\";s:33:\"restaurant-gallery-05-540x405.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:33:\"restaurant-gallery-05-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:33:\"restaurant-gallery-05-600x375.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:33:\"restaurant-gallery-05-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `smrc_postmeta` VALUES (46,769,'_wp_attached_file','2016/03/restaurant-offer-02.jpg');
INSERT INTO `smrc_postmeta` VALUES (47,769,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:533;s:4:\"file\";s:31:\"2016/03/restaurant-offer-02.jpg\";s:5:\"sizes\";a:14:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:31:\"restaurant-offer-02-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:31:\"restaurant-offer-02-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:31:\"restaurant-offer-02-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"restaurant-offer-02-320x213.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:213;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"restaurant-offer-02-160x160.jpg\";s:5:\"width\";i:160;s:6:\"height\";i:160;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:31:\"restaurant-offer-02-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"boldthemes_grid\";a:4:{s:4:\"file\";s:31:\"restaurant-offer-02-540x360.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_11\";a:4:{s:4:\"file\";s:31:\"restaurant-offer-02-540x533.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:533;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_12\";a:4:{s:4:\"file\";s:31:\"restaurant-offer-02-540x533.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:533;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_latest_posts\";a:4:{s:4:\"file\";s:31:\"restaurant-offer-02-320x240.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_grid_gallery\";a:4:{s:4:\"file\";s:31:\"restaurant-offer-02-540x405.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:31:\"restaurant-offer-02-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:31:\"restaurant-offer-02-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:31:\"restaurant-offer-02-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `smrc_postmeta` VALUES (48,784,'_wp_attached_file','2016/03/attractions-petco-park-04.jpg');
INSERT INTO `smrc_postmeta` VALUES (49,784,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:1067;s:4:\"file\";s:37:\"2016/03/attractions-petco-park-04.jpg\";s:5:\"sizes\";a:18:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:37:\"attractions-petco-park-04-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:37:\"attractions-petco-park-04-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:37:\"attractions-petco-park-04-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:37:\"attractions-petco-park-04-320x213.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:213;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:38:\"attractions-petco-park-04-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:37:\"attractions-petco-park-04-160x160.jpg\";s:5:\"width\";i:160;s:6:\"height\";i:160;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:37:\"attractions-petco-park-04-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:39:\"attractions-petco-park-04-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"boldthemes_grid\";a:4:{s:4:\"file\";s:37:\"attractions-petco-park-04-540x360.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_11\";a:4:{s:4:\"file\";s:37:\"attractions-petco-park-04-540x540.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_22\";a:4:{s:4:\"file\";s:39:\"attractions-petco-park-04-1080x1067.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:1067;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_21\";a:4:{s:4:\"file\";s:38:\"attractions-petco-park-04-1080x540.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_12\";a:4:{s:4:\"file\";s:38:\"attractions-petco-park-04-540x1067.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:1067;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_latest_posts\";a:4:{s:4:\"file\";s:37:\"attractions-petco-park-04-320x240.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_grid_gallery\";a:4:{s:4:\"file\";s:37:\"attractions-petco-park-04-540x405.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:37:\"attractions-petco-park-04-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:37:\"attractions-petco-park-04-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:37:\"attractions-petco-park-04-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `smrc_postmeta` VALUES (50,785,'_wp_attached_file','2016/03/attractions-petco-park-05.jpg');
INSERT INTO `smrc_postmeta` VALUES (51,785,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:1200;s:4:\"file\";s:37:\"2016/03/attractions-petco-park-05.jpg\";s:5:\"sizes\";a:18:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:37:\"attractions-petco-park-05-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:37:\"attractions-petco-park-05-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:37:\"attractions-petco-park-05-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:37:\"attractions-petco-park-05-320x240.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:38:\"attractions-petco-park-05-1200x900.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:37:\"attractions-petco-park-05-160x160.jpg\";s:5:\"width\";i:160;s:6:\"height\";i:160;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:37:\"attractions-petco-park-05-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:39:\"attractions-petco-park-05-1536x1152.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"boldthemes_grid\";a:4:{s:4:\"file\";s:37:\"attractions-petco-park-05-540x405.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_11\";a:4:{s:4:\"file\";s:37:\"attractions-petco-park-05-540x540.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_22\";a:4:{s:4:\"file\";s:39:\"attractions-petco-park-05-1080x1080.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:1080;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_21\";a:4:{s:4:\"file\";s:38:\"attractions-petco-park-05-1080x540.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_12\";a:4:{s:4:\"file\";s:38:\"attractions-petco-park-05-540x1080.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:1080;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_latest_posts\";a:4:{s:4:\"file\";s:37:\"attractions-petco-park-05-320x240.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_grid_gallery\";a:4:{s:4:\"file\";s:37:\"attractions-petco-park-05-540x405.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:37:\"attractions-petco-park-05-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:37:\"attractions-petco-park-05-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:37:\"attractions-petco-park-05-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `smrc_postmeta` VALUES (52,750,'_wp_attached_file','2016/03/spa-gallery-16.jpg');
INSERT INTO `smrc_postmeta` VALUES (53,750,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:1200;s:4:\"file\";s:26:\"2016/03/spa-gallery-16.jpg\";s:5:\"sizes\";a:18:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:26:\"spa-gallery-16-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:26:\"spa-gallery-16-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:26:\"spa-gallery-16-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"spa-gallery-16-320x240.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:27:\"spa-gallery-16-1200x900.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"spa-gallery-16-160x160.jpg\";s:5:\"width\";i:160;s:6:\"height\";i:160;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:26:\"spa-gallery-16-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:28:\"spa-gallery-16-1536x1152.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"boldthemes_grid\";a:4:{s:4:\"file\";s:26:\"spa-gallery-16-540x405.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_11\";a:4:{s:4:\"file\";s:26:\"spa-gallery-16-540x540.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_22\";a:4:{s:4:\"file\";s:28:\"spa-gallery-16-1080x1080.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:1080;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_21\";a:4:{s:4:\"file\";s:27:\"spa-gallery-16-1080x540.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_12\";a:4:{s:4:\"file\";s:27:\"spa-gallery-16-540x1080.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:1080;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_latest_posts\";a:4:{s:4:\"file\";s:26:\"spa-gallery-16-320x240.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_grid_gallery\";a:4:{s:4:\"file\";s:26:\"spa-gallery-16-540x405.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:26:\"spa-gallery-16-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:26:\"spa-gallery-16-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:26:\"spa-gallery-16-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `smrc_postmeta` VALUES (54,783,'_wp_attached_file','2016/03/attractions-petco-park-03.jpg');
INSERT INTO `smrc_postmeta` VALUES (55,783,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:475;s:4:\"file\";s:37:\"2016/03/attractions-petco-park-03.jpg\";s:5:\"sizes\";a:18:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:37:\"attractions-petco-park-03-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:37:\"attractions-petco-park-03-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:37:\"attractions-petco-park-03-600x178.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:178;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:36:\"attractions-petco-park-03-320x95.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:95;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:38:\"attractions-petco-park-03-1200x356.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:356;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:37:\"attractions-petco-park-03-160x160.jpg\";s:5:\"width\";i:160;s:6:\"height\";i:160;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:37:\"attractions-petco-park-03-768x228.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:228;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:38:\"attractions-petco-park-03-1536x456.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:456;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"boldthemes_grid\";a:4:{s:4:\"file\";s:37:\"attractions-petco-park-03-540x160.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:160;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_11\";a:4:{s:4:\"file\";s:37:\"attractions-petco-park-03-540x475.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:475;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_22\";a:4:{s:4:\"file\";s:38:\"attractions-petco-park-03-1080x475.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:475;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_21\";a:4:{s:4:\"file\";s:38:\"attractions-petco-park-03-1080x475.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:475;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_12\";a:4:{s:4:\"file\";s:37:\"attractions-petco-park-03-540x475.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:475;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_latest_posts\";a:4:{s:4:\"file\";s:37:\"attractions-petco-park-03-320x240.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_grid_gallery\";a:4:{s:4:\"file\";s:37:\"attractions-petco-park-03-540x405.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:37:\"attractions-petco-park-03-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:37:\"attractions-petco-park-03-600x178.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:178;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:37:\"attractions-petco-park-03-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `smrc_postmeta` VALUES (56,782,'_wp_attached_file','2016/03/attractions-petco-park-02.jpg');
INSERT INTO `smrc_postmeta` VALUES (57,782,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:1063;s:4:\"file\";s:37:\"2016/03/attractions-petco-park-02.jpg\";s:5:\"sizes\";a:18:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:37:\"attractions-petco-park-02-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:37:\"attractions-petco-park-02-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:37:\"attractions-petco-park-02-600x399.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:399;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:37:\"attractions-petco-park-02-320x213.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:213;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:38:\"attractions-petco-park-02-1200x797.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:797;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:37:\"attractions-petco-park-02-160x160.jpg\";s:5:\"width\";i:160;s:6:\"height\";i:160;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:37:\"attractions-petco-park-02-768x510.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:510;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:39:\"attractions-petco-park-02-1536x1020.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1020;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"boldthemes_grid\";a:4:{s:4:\"file\";s:37:\"attractions-petco-park-02-540x359.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:359;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_11\";a:4:{s:4:\"file\";s:37:\"attractions-petco-park-02-540x540.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_22\";a:4:{s:4:\"file\";s:39:\"attractions-petco-park-02-1080x1063.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:1063;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_21\";a:4:{s:4:\"file\";s:38:\"attractions-petco-park-02-1080x540.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_12\";a:4:{s:4:\"file\";s:38:\"attractions-petco-park-02-540x1063.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:1063;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_latest_posts\";a:4:{s:4:\"file\";s:37:\"attractions-petco-park-02-320x240.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_grid_gallery\";a:4:{s:4:\"file\";s:37:\"attractions-petco-park-02-540x405.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:37:\"attractions-petco-park-02-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:37:\"attractions-petco-park-02-600x399.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:399;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:37:\"attractions-petco-park-02-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `smrc_postmeta` VALUES (58,768,'_wp_attached_file','2016/03/restaurant-offer-03.jpg');
INSERT INTO `smrc_postmeta` VALUES (59,768,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:532;s:4:\"file\";s:31:\"2016/03/restaurant-offer-03.jpg\";s:5:\"sizes\";a:14:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:31:\"restaurant-offer-03-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:31:\"restaurant-offer-03-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:31:\"restaurant-offer-03-600x399.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:399;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"restaurant-offer-03-320x213.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:213;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"restaurant-offer-03-160x160.jpg\";s:5:\"width\";i:160;s:6:\"height\";i:160;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:31:\"restaurant-offer-03-768x511.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:511;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"boldthemes_grid\";a:4:{s:4:\"file\";s:31:\"restaurant-offer-03-540x359.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:359;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_11\";a:4:{s:4:\"file\";s:31:\"restaurant-offer-03-540x532.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:532;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_12\";a:4:{s:4:\"file\";s:31:\"restaurant-offer-03-540x532.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:532;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_latest_posts\";a:4:{s:4:\"file\";s:31:\"restaurant-offer-03-320x240.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_grid_gallery\";a:4:{s:4:\"file\";s:31:\"restaurant-offer-03-540x405.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:31:\"restaurant-offer-03-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:31:\"restaurant-offer-03-600x399.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:399;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:31:\"restaurant-offer-03-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `smrc_postmeta` VALUES (60,770,'_wp_attached_file','2016/03/restaurant-offer-01.jpg');
INSERT INTO `smrc_postmeta` VALUES (61,770,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:533;s:4:\"file\";s:31:\"2016/03/restaurant-offer-01.jpg\";s:5:\"sizes\";a:14:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:31:\"restaurant-offer-01-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:31:\"restaurant-offer-01-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:31:\"restaurant-offer-01-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"restaurant-offer-01-320x213.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:213;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"restaurant-offer-01-160x160.jpg\";s:5:\"width\";i:160;s:6:\"height\";i:160;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:31:\"restaurant-offer-01-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"boldthemes_grid\";a:4:{s:4:\"file\";s:31:\"restaurant-offer-01-540x360.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_11\";a:4:{s:4:\"file\";s:31:\"restaurant-offer-01-540x533.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:533;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_12\";a:4:{s:4:\"file\";s:31:\"restaurant-offer-01-540x533.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:533;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_latest_posts\";a:4:{s:4:\"file\";s:31:\"restaurant-offer-01-320x240.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_grid_gallery\";a:4:{s:4:\"file\";s:31:\"restaurant-offer-01-540x405.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:31:\"restaurant-offer-01-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:31:\"restaurant-offer-01-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:31:\"restaurant-offer-01-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `smrc_postmeta` VALUES (62,781,'_wp_attached_file','2016/03/attractions-petco-park-01.jpg');
INSERT INTO `smrc_postmeta` VALUES (63,781,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:1200;s:4:\"file\";s:37:\"2016/03/attractions-petco-park-01.jpg\";s:5:\"sizes\";a:18:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:37:\"attractions-petco-park-01-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:37:\"attractions-petco-park-01-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:37:\"attractions-petco-park-01-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:37:\"attractions-petco-park-01-320x240.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:38:\"attractions-petco-park-01-1200x900.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:37:\"attractions-petco-park-01-160x160.jpg\";s:5:\"width\";i:160;s:6:\"height\";i:160;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:37:\"attractions-petco-park-01-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:39:\"attractions-petco-park-01-1536x1152.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"boldthemes_grid\";a:4:{s:4:\"file\";s:37:\"attractions-petco-park-01-540x405.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_11\";a:4:{s:4:\"file\";s:37:\"attractions-petco-park-01-540x540.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_22\";a:4:{s:4:\"file\";s:39:\"attractions-petco-park-01-1080x1080.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:1080;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_21\";a:4:{s:4:\"file\";s:38:\"attractions-petco-park-01-1080x540.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_12\";a:4:{s:4:\"file\";s:38:\"attractions-petco-park-01-540x1080.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:1080;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_latest_posts\";a:4:{s:4:\"file\";s:37:\"attractions-petco-park-01-320x240.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_grid_gallery\";a:4:{s:4:\"file\";s:37:\"attractions-petco-park-01-540x405.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:37:\"attractions-petco-park-01-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:37:\"attractions-petco-park-01-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:37:\"attractions-petco-park-01-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `smrc_postmeta` VALUES (64,767,'_wp_attached_file','2016/03/restaurant-offer-04.jpg');
INSERT INTO `smrc_postmeta` VALUES (65,767,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:533;s:4:\"file\";s:31:\"2016/03/restaurant-offer-04.jpg\";s:5:\"sizes\";a:14:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:31:\"restaurant-offer-04-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:31:\"restaurant-offer-04-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:31:\"restaurant-offer-04-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"restaurant-offer-04-320x213.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:213;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"restaurant-offer-04-160x160.jpg\";s:5:\"width\";i:160;s:6:\"height\";i:160;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:31:\"restaurant-offer-04-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"boldthemes_grid\";a:4:{s:4:\"file\";s:31:\"restaurant-offer-04-540x360.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_11\";a:4:{s:4:\"file\";s:31:\"restaurant-offer-04-540x533.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:533;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_12\";a:4:{s:4:\"file\";s:31:\"restaurant-offer-04-540x533.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:533;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_latest_posts\";a:4:{s:4:\"file\";s:31:\"restaurant-offer-04-320x240.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_grid_gallery\";a:4:{s:4:\"file\";s:31:\"restaurant-offer-04-540x405.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:31:\"restaurant-offer-04-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:31:\"restaurant-offer-04-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:31:\"restaurant-offer-04-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `smrc_postmeta` VALUES (66,730,'_wp_attached_file','2016/03/spa-2.jpg');
INSERT INTO `smrc_postmeta` VALUES (67,730,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:600;s:4:\"file\";s:17:\"2016/03/spa-2.jpg\";s:5:\"sizes\";a:15:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:17:\"spa-2-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:17:\"spa-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:17:\"spa-2-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:17:\"spa-2-320x240.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"spa-2-160x160.jpg\";s:5:\"width\";i:160;s:6:\"height\";i:160;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:17:\"spa-2-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"boldthemes_grid\";a:4:{s:4:\"file\";s:17:\"spa-2-540x405.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_11\";a:4:{s:4:\"file\";s:17:\"spa-2-540x540.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_21\";a:4:{s:4:\"file\";s:17:\"spa-2-800x540.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_12\";a:4:{s:4:\"file\";s:17:\"spa-2-540x600.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_latest_posts\";a:4:{s:4:\"file\";s:17:\"spa-2-320x240.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_grid_gallery\";a:4:{s:4:\"file\";s:17:\"spa-2-540x405.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:17:\"spa-2-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:17:\"spa-2-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:17:\"spa-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `smrc_postmeta` VALUES (68,736,'_wp_attached_file','2016/03/spa-gallery-02.jpg');
INSERT INTO `smrc_postmeta` VALUES (69,736,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:1200;s:4:\"file\";s:26:\"2016/03/spa-gallery-02.jpg\";s:5:\"sizes\";a:18:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:26:\"spa-gallery-02-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:26:\"spa-gallery-02-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:26:\"spa-gallery-02-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"spa-gallery-02-320x240.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:27:\"spa-gallery-02-1200x900.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"spa-gallery-02-160x160.jpg\";s:5:\"width\";i:160;s:6:\"height\";i:160;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:26:\"spa-gallery-02-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:28:\"spa-gallery-02-1536x1152.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"boldthemes_grid\";a:4:{s:4:\"file\";s:26:\"spa-gallery-02-540x405.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_11\";a:4:{s:4:\"file\";s:26:\"spa-gallery-02-540x540.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_22\";a:4:{s:4:\"file\";s:28:\"spa-gallery-02-1080x1080.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:1080;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_21\";a:4:{s:4:\"file\";s:27:\"spa-gallery-02-1080x540.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_12\";a:4:{s:4:\"file\";s:27:\"spa-gallery-02-540x1080.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:1080;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_latest_posts\";a:4:{s:4:\"file\";s:26:\"spa-gallery-02-320x240.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_grid_gallery\";a:4:{s:4:\"file\";s:26:\"spa-gallery-02-540x405.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:26:\"spa-gallery-02-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:26:\"spa-gallery-02-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:26:\"spa-gallery-02-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `smrc_postmeta` VALUES (70,737,'_wp_attached_file','2016/03/spa-gallery-03.jpg');
INSERT INTO `smrc_postmeta` VALUES (71,737,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:960;s:4:\"file\";s:26:\"2016/03/spa-gallery-03.jpg\";s:5:\"sizes\";a:18:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:26:\"spa-gallery-03-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:26:\"spa-gallery-03-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:26:\"spa-gallery-03-600x360.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"spa-gallery-03-320x192.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:192;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:27:\"spa-gallery-03-1200x720.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"spa-gallery-03-160x160.jpg\";s:5:\"width\";i:160;s:6:\"height\";i:160;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:26:\"spa-gallery-03-768x461.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:461;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:27:\"spa-gallery-03-1536x922.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:922;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"boldthemes_grid\";a:4:{s:4:\"file\";s:26:\"spa-gallery-03-540x324.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:324;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_11\";a:4:{s:4:\"file\";s:26:\"spa-gallery-03-540x540.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_22\";a:4:{s:4:\"file\";s:27:\"spa-gallery-03-1080x960.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:960;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_21\";a:4:{s:4:\"file\";s:27:\"spa-gallery-03-1080x540.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_12\";a:4:{s:4:\"file\";s:26:\"spa-gallery-03-540x960.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:960;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_latest_posts\";a:4:{s:4:\"file\";s:26:\"spa-gallery-03-320x240.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_grid_gallery\";a:4:{s:4:\"file\";s:26:\"spa-gallery-03-540x405.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:26:\"spa-gallery-03-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:26:\"spa-gallery-03-600x360.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:26:\"spa-gallery-03-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `smrc_postmeta` VALUES (72,738,'_wp_attached_file','2016/03/spa-gallery-04.jpg');
INSERT INTO `smrc_postmeta` VALUES (73,738,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:960;s:4:\"file\";s:26:\"2016/03/spa-gallery-04.jpg\";s:5:\"sizes\";a:18:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:26:\"spa-gallery-04-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:26:\"spa-gallery-04-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:26:\"spa-gallery-04-600x360.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"spa-gallery-04-320x192.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:192;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:27:\"spa-gallery-04-1200x720.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"spa-gallery-04-160x160.jpg\";s:5:\"width\";i:160;s:6:\"height\";i:160;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:26:\"spa-gallery-04-768x461.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:461;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:27:\"spa-gallery-04-1536x922.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:922;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"boldthemes_grid\";a:4:{s:4:\"file\";s:26:\"spa-gallery-04-540x324.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:324;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_11\";a:4:{s:4:\"file\";s:26:\"spa-gallery-04-540x540.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_22\";a:4:{s:4:\"file\";s:27:\"spa-gallery-04-1080x960.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:960;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_21\";a:4:{s:4:\"file\";s:27:\"spa-gallery-04-1080x540.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_12\";a:4:{s:4:\"file\";s:26:\"spa-gallery-04-540x960.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:960;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_latest_posts\";a:4:{s:4:\"file\";s:26:\"spa-gallery-04-320x240.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_grid_gallery\";a:4:{s:4:\"file\";s:26:\"spa-gallery-04-540x405.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:26:\"spa-gallery-04-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:26:\"spa-gallery-04-600x360.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:26:\"spa-gallery-04-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `smrc_postmeta` VALUES (74,735,'_wp_attached_file','2016/03/spa-gallery-01.jpg');
INSERT INTO `smrc_postmeta` VALUES (75,735,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:1200;s:4:\"file\";s:26:\"2016/03/spa-gallery-01.jpg\";s:5:\"sizes\";a:18:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:26:\"spa-gallery-01-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:26:\"spa-gallery-01-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:26:\"spa-gallery-01-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"spa-gallery-01-320x240.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:27:\"spa-gallery-01-1200x900.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"spa-gallery-01-160x160.jpg\";s:5:\"width\";i:160;s:6:\"height\";i:160;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:26:\"spa-gallery-01-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:28:\"spa-gallery-01-1536x1152.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"boldthemes_grid\";a:4:{s:4:\"file\";s:26:\"spa-gallery-01-540x405.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_11\";a:4:{s:4:\"file\";s:26:\"spa-gallery-01-540x540.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_22\";a:4:{s:4:\"file\";s:28:\"spa-gallery-01-1080x1080.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:1080;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_21\";a:4:{s:4:\"file\";s:27:\"spa-gallery-01-1080x540.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_12\";a:4:{s:4:\"file\";s:27:\"spa-gallery-01-540x1080.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:1080;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_latest_posts\";a:4:{s:4:\"file\";s:26:\"spa-gallery-01-320x240.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_grid_gallery\";a:4:{s:4:\"file\";s:26:\"spa-gallery-01-540x405.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:26:\"spa-gallery-01-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:26:\"spa-gallery-01-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:26:\"spa-gallery-01-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `smrc_postmeta` VALUES (76,731,'_wp_attached_file','2016/03/spa-1.jpg');
INSERT INTO `smrc_postmeta` VALUES (77,731,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:600;s:4:\"file\";s:17:\"2016/03/spa-1.jpg\";s:5:\"sizes\";a:15:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:17:\"spa-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:17:\"spa-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:17:\"spa-1-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:17:\"spa-1-320x240.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"spa-1-160x160.jpg\";s:5:\"width\";i:160;s:6:\"height\";i:160;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:17:\"spa-1-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"boldthemes_grid\";a:4:{s:4:\"file\";s:17:\"spa-1-540x405.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_11\";a:4:{s:4:\"file\";s:17:\"spa-1-540x540.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_21\";a:4:{s:4:\"file\";s:17:\"spa-1-800x540.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_12\";a:4:{s:4:\"file\";s:17:\"spa-1-540x600.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_latest_posts\";a:4:{s:4:\"file\";s:17:\"spa-1-320x240.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_grid_gallery\";a:4:{s:4:\"file\";s:17:\"spa-1-540x405.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:17:\"spa-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:17:\"spa-1-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:17:\"spa-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `smrc_postmeta` VALUES (78,624,'_wp_attached_file','2016/02/summer-overview-07.jpg');
INSERT INTO `smrc_postmeta` VALUES (79,624,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2500;s:6:\"height\";i:976;s:4:\"file\";s:30:\"2016/02/summer-overview-07.jpg\";s:5:\"sizes\";a:19:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:30:\"summer-overview-07-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:30:\"summer-overview-07-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:30:\"summer-overview-07-600x234.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:234;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:30:\"summer-overview-07-320x125.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:125;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:31:\"summer-overview-07-1200x468.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:468;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"summer-overview-07-160x160.jpg\";s:5:\"width\";i:160;s:6:\"height\";i:160;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:30:\"summer-overview-07-768x300.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:31:\"summer-overview-07-1536x600.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:31:\"summer-overview-07-2048x800.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"boldthemes_grid\";a:4:{s:4:\"file\";s:30:\"summer-overview-07-540x211.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:211;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_11\";a:4:{s:4:\"file\";s:30:\"summer-overview-07-540x540.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_22\";a:4:{s:4:\"file\";s:31:\"summer-overview-07-1080x976.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:976;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_21\";a:4:{s:4:\"file\";s:31:\"summer-overview-07-1080x540.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_12\";a:4:{s:4:\"file\";s:30:\"summer-overview-07-540x976.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:976;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_latest_posts\";a:4:{s:4:\"file\";s:30:\"summer-overview-07-320x240.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_grid_gallery\";a:4:{s:4:\"file\";s:30:\"summer-overview-07-540x405.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:30:\"summer-overview-07-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:30:\"summer-overview-07-600x234.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:234;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:30:\"summer-overview-07-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `smrc_postmeta` VALUES (80,725,'_wp_attached_file','2016/02/summer-offer-4.jpg');
INSERT INTO `smrc_postmeta` VALUES (81,725,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:600;s:4:\"file\";s:26:\"2016/02/summer-offer-4.jpg\";s:5:\"sizes\";a:15:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:26:\"summer-offer-4-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:26:\"summer-offer-4-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:26:\"summer-offer-4-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"summer-offer-4-320x240.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"summer-offer-4-160x160.jpg\";s:5:\"width\";i:160;s:6:\"height\";i:160;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:26:\"summer-offer-4-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"boldthemes_grid\";a:4:{s:4:\"file\";s:26:\"summer-offer-4-540x405.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_11\";a:4:{s:4:\"file\";s:26:\"summer-offer-4-540x540.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_21\";a:4:{s:4:\"file\";s:26:\"summer-offer-4-800x540.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_12\";a:4:{s:4:\"file\";s:26:\"summer-offer-4-540x600.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_latest_posts\";a:4:{s:4:\"file\";s:26:\"summer-offer-4-320x240.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_grid_gallery\";a:4:{s:4:\"file\";s:26:\"summer-offer-4-540x405.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:26:\"summer-offer-4-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:26:\"summer-offer-4-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:26:\"summer-offer-4-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `smrc_postmeta` VALUES (82,786,'_wp_attached_file','2016/03/attractions-petco-park-06.jpg');
INSERT INTO `smrc_postmeta` VALUES (83,786,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:1200;s:4:\"file\";s:37:\"2016/03/attractions-petco-park-06.jpg\";s:5:\"sizes\";a:18:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:37:\"attractions-petco-park-06-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:37:\"attractions-petco-park-06-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:37:\"attractions-petco-park-06-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:37:\"attractions-petco-park-06-320x240.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:38:\"attractions-petco-park-06-1200x900.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:37:\"attractions-petco-park-06-160x160.jpg\";s:5:\"width\";i:160;s:6:\"height\";i:160;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:37:\"attractions-petco-park-06-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:39:\"attractions-petco-park-06-1536x1152.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"boldthemes_grid\";a:4:{s:4:\"file\";s:37:\"attractions-petco-park-06-540x405.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_11\";a:4:{s:4:\"file\";s:37:\"attractions-petco-park-06-540x540.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_22\";a:4:{s:4:\"file\";s:39:\"attractions-petco-park-06-1080x1080.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:1080;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_21\";a:4:{s:4:\"file\";s:38:\"attractions-petco-park-06-1080x540.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_12\";a:4:{s:4:\"file\";s:38:\"attractions-petco-park-06-540x1080.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:1080;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_latest_posts\";a:4:{s:4:\"file\";s:37:\"attractions-petco-park-06-320x240.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_grid_gallery\";a:4:{s:4:\"file\";s:37:\"attractions-petco-park-06-540x405.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:37:\"attractions-petco-park-06-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:37:\"attractions-petco-park-06-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:37:\"attractions-petco-park-06-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `smrc_postmeta` VALUES (84,739,'_wp_attached_file','2016/03/spa-gallery-05.jpg');
INSERT INTO `smrc_postmeta` VALUES (85,739,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:960;s:4:\"file\";s:26:\"2016/03/spa-gallery-05.jpg\";s:5:\"sizes\";a:18:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:26:\"spa-gallery-05-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:26:\"spa-gallery-05-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:26:\"spa-gallery-05-600x360.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"spa-gallery-05-320x192.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:192;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:27:\"spa-gallery-05-1200x720.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"spa-gallery-05-160x160.jpg\";s:5:\"width\";i:160;s:6:\"height\";i:160;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:26:\"spa-gallery-05-768x461.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:461;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:27:\"spa-gallery-05-1536x922.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:922;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"boldthemes_grid\";a:4:{s:4:\"file\";s:26:\"spa-gallery-05-540x324.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:324;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_11\";a:4:{s:4:\"file\";s:26:\"spa-gallery-05-540x540.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_22\";a:4:{s:4:\"file\";s:27:\"spa-gallery-05-1080x960.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:960;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_21\";a:4:{s:4:\"file\";s:27:\"spa-gallery-05-1080x540.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_12\";a:4:{s:4:\"file\";s:26:\"spa-gallery-05-540x960.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:960;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_latest_posts\";a:4:{s:4:\"file\";s:26:\"spa-gallery-05-320x240.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_grid_gallery\";a:4:{s:4:\"file\";s:26:\"spa-gallery-05-540x405.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:26:\"spa-gallery-05-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:26:\"spa-gallery-05-600x360.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:26:\"spa-gallery-05-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `smrc_postmeta` VALUES (86,740,'_wp_attached_file','2016/03/spa-gallery-06.jpg');
INSERT INTO `smrc_postmeta` VALUES (87,740,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:960;s:4:\"file\";s:26:\"2016/03/spa-gallery-06.jpg\";s:5:\"sizes\";a:18:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:26:\"spa-gallery-06-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:26:\"spa-gallery-06-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:26:\"spa-gallery-06-600x360.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"spa-gallery-06-320x192.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:192;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:27:\"spa-gallery-06-1200x720.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"spa-gallery-06-160x160.jpg\";s:5:\"width\";i:160;s:6:\"height\";i:160;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:26:\"spa-gallery-06-768x461.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:461;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:27:\"spa-gallery-06-1536x922.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:922;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"boldthemes_grid\";a:4:{s:4:\"file\";s:26:\"spa-gallery-06-540x324.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:324;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_11\";a:4:{s:4:\"file\";s:26:\"spa-gallery-06-540x540.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_22\";a:4:{s:4:\"file\";s:27:\"spa-gallery-06-1080x960.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:960;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_21\";a:4:{s:4:\"file\";s:27:\"spa-gallery-06-1080x540.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_12\";a:4:{s:4:\"file\";s:26:\"spa-gallery-06-540x960.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:960;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_latest_posts\";a:4:{s:4:\"file\";s:26:\"spa-gallery-06-320x240.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_grid_gallery\";a:4:{s:4:\"file\";s:26:\"spa-gallery-06-540x405.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:26:\"spa-gallery-06-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:26:\"spa-gallery-06-600x360.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:26:\"spa-gallery-06-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `smrc_postmeta` VALUES (88,746,'_wp_attached_file','2016/03/spa-gallery-12.jpg');
INSERT INTO `smrc_postmeta` VALUES (89,746,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:1092;s:4:\"file\";s:26:\"2016/03/spa-gallery-12.jpg\";s:5:\"sizes\";a:18:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:26:\"spa-gallery-12-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:26:\"spa-gallery-12-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:26:\"spa-gallery-12-600x410.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:410;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"spa-gallery-12-320x218.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:218;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:27:\"spa-gallery-12-1200x819.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:819;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"spa-gallery-12-160x160.jpg\";s:5:\"width\";i:160;s:6:\"height\";i:160;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:26:\"spa-gallery-12-768x524.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:524;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:28:\"spa-gallery-12-1536x1048.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1048;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"boldthemes_grid\";a:4:{s:4:\"file\";s:26:\"spa-gallery-12-540x369.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:369;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_11\";a:4:{s:4:\"file\";s:26:\"spa-gallery-12-540x540.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_22\";a:4:{s:4:\"file\";s:28:\"spa-gallery-12-1080x1080.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:1080;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_21\";a:4:{s:4:\"file\";s:27:\"spa-gallery-12-1080x540.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_12\";a:4:{s:4:\"file\";s:27:\"spa-gallery-12-540x1080.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:1080;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_latest_posts\";a:4:{s:4:\"file\";s:26:\"spa-gallery-12-320x240.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_grid_gallery\";a:4:{s:4:\"file\";s:26:\"spa-gallery-12-540x405.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:26:\"spa-gallery-12-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:26:\"spa-gallery-12-600x410.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:410;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:26:\"spa-gallery-12-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `smrc_postmeta` VALUES (90,747,'_wp_attached_file','2016/03/spa-gallery-13.jpg');
INSERT INTO `smrc_postmeta` VALUES (91,747,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:1067;s:4:\"file\";s:26:\"2016/03/spa-gallery-13.jpg\";s:5:\"sizes\";a:18:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:26:\"spa-gallery-13-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:26:\"spa-gallery-13-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:26:\"spa-gallery-13-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"spa-gallery-13-320x213.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:213;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:27:\"spa-gallery-13-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"spa-gallery-13-160x160.jpg\";s:5:\"width\";i:160;s:6:\"height\";i:160;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:26:\"spa-gallery-13-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:28:\"spa-gallery-13-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"boldthemes_grid\";a:4:{s:4:\"file\";s:26:\"spa-gallery-13-540x360.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_11\";a:4:{s:4:\"file\";s:26:\"spa-gallery-13-540x540.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_22\";a:4:{s:4:\"file\";s:28:\"spa-gallery-13-1080x1067.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:1067;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_21\";a:4:{s:4:\"file\";s:27:\"spa-gallery-13-1080x540.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_12\";a:4:{s:4:\"file\";s:27:\"spa-gallery-13-540x1067.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:1067;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_latest_posts\";a:4:{s:4:\"file\";s:26:\"spa-gallery-13-320x240.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_grid_gallery\";a:4:{s:4:\"file\";s:26:\"spa-gallery-13-540x405.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:26:\"spa-gallery-13-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:26:\"spa-gallery-13-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:26:\"spa-gallery-13-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `smrc_postmeta` VALUES (92,748,'_wp_attached_file','2016/03/spa-gallery-14.jpg');
INSERT INTO `smrc_postmeta` VALUES (93,748,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:1070;s:4:\"file\";s:26:\"2016/03/spa-gallery-14.jpg\";s:5:\"sizes\";a:18:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:26:\"spa-gallery-14-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:26:\"spa-gallery-14-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:26:\"spa-gallery-14-600x401.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:401;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"spa-gallery-14-320x214.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:27:\"spa-gallery-14-1200x803.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:803;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"spa-gallery-14-160x160.jpg\";s:5:\"width\";i:160;s:6:\"height\";i:160;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:26:\"spa-gallery-14-768x514.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:514;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:28:\"spa-gallery-14-1536x1027.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1027;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"boldthemes_grid\";a:4:{s:4:\"file\";s:26:\"spa-gallery-14-540x361.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:361;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_11\";a:4:{s:4:\"file\";s:26:\"spa-gallery-14-540x540.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_22\";a:4:{s:4:\"file\";s:28:\"spa-gallery-14-1080x1070.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:1070;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_21\";a:4:{s:4:\"file\";s:27:\"spa-gallery-14-1080x540.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_12\";a:4:{s:4:\"file\";s:27:\"spa-gallery-14-540x1070.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:1070;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_latest_posts\";a:4:{s:4:\"file\";s:26:\"spa-gallery-14-320x240.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_grid_gallery\";a:4:{s:4:\"file\";s:26:\"spa-gallery-14-540x405.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:26:\"spa-gallery-14-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:26:\"spa-gallery-14-600x401.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:401;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:26:\"spa-gallery-14-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `smrc_postmeta` VALUES (94,745,'_wp_attached_file','2016/03/spa-gallery-11.jpg');
INSERT INTO `smrc_postmeta` VALUES (95,745,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:960;s:4:\"file\";s:26:\"2016/03/spa-gallery-11.jpg\";s:5:\"sizes\";a:18:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:26:\"spa-gallery-11-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:26:\"spa-gallery-11-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:26:\"spa-gallery-11-600x360.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"spa-gallery-11-320x192.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:192;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:27:\"spa-gallery-11-1200x720.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"spa-gallery-11-160x160.jpg\";s:5:\"width\";i:160;s:6:\"height\";i:160;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:26:\"spa-gallery-11-768x461.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:461;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:27:\"spa-gallery-11-1536x922.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:922;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"boldthemes_grid\";a:4:{s:4:\"file\";s:26:\"spa-gallery-11-540x324.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:324;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_11\";a:4:{s:4:\"file\";s:26:\"spa-gallery-11-540x540.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_22\";a:4:{s:4:\"file\";s:27:\"spa-gallery-11-1080x960.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:960;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_21\";a:4:{s:4:\"file\";s:27:\"spa-gallery-11-1080x540.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_12\";a:4:{s:4:\"file\";s:26:\"spa-gallery-11-540x960.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:960;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_latest_posts\";a:4:{s:4:\"file\";s:26:\"spa-gallery-11-320x240.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_grid_gallery\";a:4:{s:4:\"file\";s:26:\"spa-gallery-11-540x405.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:26:\"spa-gallery-11-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:26:\"spa-gallery-11-600x360.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:26:\"spa-gallery-11-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `smrc_postmeta` VALUES (96,744,'_wp_attached_file','2016/03/spa-gallery-10.jpg');
INSERT INTO `smrc_postmeta` VALUES (97,744,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:960;s:4:\"file\";s:26:\"2016/03/spa-gallery-10.jpg\";s:5:\"sizes\";a:18:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:26:\"spa-gallery-10-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:26:\"spa-gallery-10-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:26:\"spa-gallery-10-600x360.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"spa-gallery-10-320x192.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:192;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:27:\"spa-gallery-10-1200x720.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"spa-gallery-10-160x160.jpg\";s:5:\"width\";i:160;s:6:\"height\";i:160;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:26:\"spa-gallery-10-768x461.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:461;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:27:\"spa-gallery-10-1536x922.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:922;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"boldthemes_grid\";a:4:{s:4:\"file\";s:26:\"spa-gallery-10-540x324.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:324;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_11\";a:4:{s:4:\"file\";s:26:\"spa-gallery-10-540x540.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_22\";a:4:{s:4:\"file\";s:27:\"spa-gallery-10-1080x960.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:960;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_21\";a:4:{s:4:\"file\";s:27:\"spa-gallery-10-1080x540.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_12\";a:4:{s:4:\"file\";s:26:\"spa-gallery-10-540x960.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:960;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_latest_posts\";a:4:{s:4:\"file\";s:26:\"spa-gallery-10-320x240.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_grid_gallery\";a:4:{s:4:\"file\";s:26:\"spa-gallery-10-540x405.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:26:\"spa-gallery-10-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:26:\"spa-gallery-10-600x360.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:26:\"spa-gallery-10-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `smrc_postmeta` VALUES (98,741,'_wp_attached_file','2016/03/spa-gallery-07.jpg');
INSERT INTO `smrc_postmeta` VALUES (99,741,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:960;s:4:\"file\";s:26:\"2016/03/spa-gallery-07.jpg\";s:5:\"sizes\";a:18:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:26:\"spa-gallery-07-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:26:\"spa-gallery-07-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:26:\"spa-gallery-07-600x360.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"spa-gallery-07-320x192.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:192;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:27:\"spa-gallery-07-1200x720.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"spa-gallery-07-160x160.jpg\";s:5:\"width\";i:160;s:6:\"height\";i:160;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:26:\"spa-gallery-07-768x461.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:461;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:27:\"spa-gallery-07-1536x922.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:922;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"boldthemes_grid\";a:4:{s:4:\"file\";s:26:\"spa-gallery-07-540x324.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:324;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_11\";a:4:{s:4:\"file\";s:26:\"spa-gallery-07-540x540.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_22\";a:4:{s:4:\"file\";s:27:\"spa-gallery-07-1080x960.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:960;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_21\";a:4:{s:4:\"file\";s:27:\"spa-gallery-07-1080x540.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_12\";a:4:{s:4:\"file\";s:26:\"spa-gallery-07-540x960.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:960;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_latest_posts\";a:4:{s:4:\"file\";s:26:\"spa-gallery-07-320x240.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_grid_gallery\";a:4:{s:4:\"file\";s:26:\"spa-gallery-07-540x405.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:26:\"spa-gallery-07-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:26:\"spa-gallery-07-600x360.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:26:\"spa-gallery-07-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `smrc_postmeta` VALUES (100,742,'_wp_attached_file','2016/03/spa-gallery-08.jpg');
INSERT INTO `smrc_postmeta` VALUES (101,742,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:960;s:4:\"file\";s:26:\"2016/03/spa-gallery-08.jpg\";s:5:\"sizes\";a:18:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:26:\"spa-gallery-08-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:26:\"spa-gallery-08-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:26:\"spa-gallery-08-600x360.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"spa-gallery-08-320x192.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:192;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:27:\"spa-gallery-08-1200x720.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"spa-gallery-08-160x160.jpg\";s:5:\"width\";i:160;s:6:\"height\";i:160;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:26:\"spa-gallery-08-768x461.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:461;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:27:\"spa-gallery-08-1536x922.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:922;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"boldthemes_grid\";a:4:{s:4:\"file\";s:26:\"spa-gallery-08-540x324.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:324;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_11\";a:4:{s:4:\"file\";s:26:\"spa-gallery-08-540x540.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_22\";a:4:{s:4:\"file\";s:27:\"spa-gallery-08-1080x960.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:960;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_21\";a:4:{s:4:\"file\";s:27:\"spa-gallery-08-1080x540.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_12\";a:4:{s:4:\"file\";s:26:\"spa-gallery-08-540x960.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:960;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_latest_posts\";a:4:{s:4:\"file\";s:26:\"spa-gallery-08-320x240.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_grid_gallery\";a:4:{s:4:\"file\";s:26:\"spa-gallery-08-540x405.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:26:\"spa-gallery-08-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:26:\"spa-gallery-08-600x360.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:26:\"spa-gallery-08-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `smrc_postmeta` VALUES (102,743,'_wp_attached_file','2016/03/spa-gallery-09.jpg');
INSERT INTO `smrc_postmeta` VALUES (103,743,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:960;s:4:\"file\";s:26:\"2016/03/spa-gallery-09.jpg\";s:5:\"sizes\";a:18:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:26:\"spa-gallery-09-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:26:\"spa-gallery-09-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:26:\"spa-gallery-09-600x360.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"spa-gallery-09-320x192.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:192;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:27:\"spa-gallery-09-1200x720.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"spa-gallery-09-160x160.jpg\";s:5:\"width\";i:160;s:6:\"height\";i:160;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:26:\"spa-gallery-09-768x461.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:461;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:27:\"spa-gallery-09-1536x922.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:922;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"boldthemes_grid\";a:4:{s:4:\"file\";s:26:\"spa-gallery-09-540x324.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:324;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_11\";a:4:{s:4:\"file\";s:26:\"spa-gallery-09-540x540.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_22\";a:4:{s:4:\"file\";s:27:\"spa-gallery-09-1080x960.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:960;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_21\";a:4:{s:4:\"file\";s:27:\"spa-gallery-09-1080x540.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_12\";a:4:{s:4:\"file\";s:26:\"spa-gallery-09-540x960.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:960;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_latest_posts\";a:4:{s:4:\"file\";s:26:\"spa-gallery-09-320x240.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_grid_gallery\";a:4:{s:4:\"file\";s:26:\"spa-gallery-09-540x405.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:26:\"spa-gallery-09-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:26:\"spa-gallery-09-600x360.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:26:\"spa-gallery-09-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `smrc_postmeta` VALUES (104,749,'_wp_attached_file','2016/03/spa-gallery-15.jpg');
INSERT INTO `smrc_postmeta` VALUES (105,749,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:1070;s:4:\"file\";s:26:\"2016/03/spa-gallery-15.jpg\";s:5:\"sizes\";a:18:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:26:\"spa-gallery-15-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:26:\"spa-gallery-15-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:26:\"spa-gallery-15-600x401.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:401;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"spa-gallery-15-320x214.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:27:\"spa-gallery-15-1200x803.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:803;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"spa-gallery-15-160x160.jpg\";s:5:\"width\";i:160;s:6:\"height\";i:160;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:26:\"spa-gallery-15-768x514.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:514;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:28:\"spa-gallery-15-1536x1027.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1027;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"boldthemes_grid\";a:4:{s:4:\"file\";s:26:\"spa-gallery-15-540x361.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:361;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_11\";a:4:{s:4:\"file\";s:26:\"spa-gallery-15-540x540.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_22\";a:4:{s:4:\"file\";s:28:\"spa-gallery-15-1080x1070.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:1070;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_21\";a:4:{s:4:\"file\";s:27:\"spa-gallery-15-1080x540.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_12\";a:4:{s:4:\"file\";s:27:\"spa-gallery-15-540x1070.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:1070;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_latest_posts\";a:4:{s:4:\"file\";s:26:\"spa-gallery-15-320x240.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_grid_gallery\";a:4:{s:4:\"file\";s:26:\"spa-gallery-15-540x405.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:26:\"spa-gallery-15-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:26:\"spa-gallery-15-600x401.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:401;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:26:\"spa-gallery-15-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `smrc_postmeta` VALUES (106,954,'_wp_attached_file','2016/09/California-exterior-logo-inverse.png');
INSERT INTO `smrc_postmeta` VALUES (107,954,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:281;s:6:\"height\";i:60;s:4:\"file\";s:44:\"2016/09/California-exterior-logo-inverse.png\";s:5:\"sizes\";a:3:{s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:43:\"California-exterior-logo-inverse-100x60.png\";s:5:\"width\";i:100;s:6:\"height\";i:60;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:43:\"California-exterior-logo-inverse-160x60.png\";s:5:\"width\";i:160;s:6:\"height\";i:60;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:43:\"California-exterior-logo-inverse-100x60.png\";s:5:\"width\";i:100;s:6:\"height\";i:60;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:{}}}');
INSERT INTO `smrc_postmeta` VALUES (108,883,'_wp_attached_file','2016/06/summer-hero-room.jpg');
INSERT INTO `smrc_postmeta` VALUES (109,883,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2500;s:6:\"height\";i:1094;s:4:\"file\";s:28:\"2016/06/summer-hero-room.jpg\";s:5:\"sizes\";a:19:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:28:\"summer-hero-room-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:28:\"summer-hero-room-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:28:\"summer-hero-room-600x263.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:263;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"summer-hero-room-320x140.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:140;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:29:\"summer-hero-room-1200x525.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:525;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"summer-hero-room-160x160.jpg\";s:5:\"width\";i:160;s:6:\"height\";i:160;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:28:\"summer-hero-room-768x336.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:336;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:29:\"summer-hero-room-1536x672.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:672;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:29:\"summer-hero-room-2048x896.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:896;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"boldthemes_grid\";a:4:{s:4:\"file\";s:28:\"summer-hero-room-540x236.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:236;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_11\";a:4:{s:4:\"file\";s:28:\"summer-hero-room-540x540.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_22\";a:4:{s:4:\"file\";s:30:\"summer-hero-room-1080x1080.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:1080;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_21\";a:4:{s:4:\"file\";s:29:\"summer-hero-room-1080x540.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_12\";a:4:{s:4:\"file\";s:29:\"summer-hero-room-540x1080.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:1080;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_latest_posts\";a:4:{s:4:\"file\";s:28:\"summer-hero-room-320x240.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_grid_gallery\";a:4:{s:4:\"file\";s:28:\"summer-hero-room-540x405.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:28:\"summer-hero-room-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:28:\"summer-hero-room-600x263.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:263;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:28:\"summer-hero-room-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `smrc_postmeta` VALUES (110,904,'_wp_attached_file','2016/09/summer-hero-boat-large.jpg');
INSERT INTO `smrc_postmeta` VALUES (111,904,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2500;s:6:\"height\";i:1500;s:4:\"file\";s:34:\"2016/09/summer-hero-boat-large.jpg\";s:5:\"sizes\";a:19:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:34:\"summer-hero-boat-large-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:34:\"summer-hero-boat-large-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:34:\"summer-hero-boat-large-600x360.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:34:\"summer-hero-boat-large-320x192.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:192;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:35:\"summer-hero-boat-large-1200x720.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"summer-hero-boat-large-160x160.jpg\";s:5:\"width\";i:160;s:6:\"height\";i:160;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:34:\"summer-hero-boat-large-768x461.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:461;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:35:\"summer-hero-boat-large-1536x922.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:922;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:36:\"summer-hero-boat-large-2048x1229.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1229;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"boldthemes_grid\";a:4:{s:4:\"file\";s:34:\"summer-hero-boat-large-540x324.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:324;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_11\";a:4:{s:4:\"file\";s:34:\"summer-hero-boat-large-540x540.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_22\";a:4:{s:4:\"file\";s:36:\"summer-hero-boat-large-1080x1080.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:1080;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_21\";a:4:{s:4:\"file\";s:35:\"summer-hero-boat-large-1080x540.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_12\";a:4:{s:4:\"file\";s:35:\"summer-hero-boat-large-540x1080.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:1080;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_latest_posts\";a:4:{s:4:\"file\";s:34:\"summer-hero-boat-large-320x240.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_grid_gallery\";a:4:{s:4:\"file\";s:34:\"summer-hero-boat-large-540x405.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:34:\"summer-hero-boat-large-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:34:\"summer-hero-boat-large-600x360.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:34:\"summer-hero-boat-large-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `smrc_postmeta` VALUES (112,907,'_wp_attached_file','2016/09/summer-hero-pool-overlay-large.jpg');
INSERT INTO `smrc_postmeta` VALUES (113,907,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2500;s:6:\"height\";i:1500;s:4:\"file\";s:42:\"2016/09/summer-hero-pool-overlay-large.jpg\";s:5:\"sizes\";a:19:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:42:\"summer-hero-pool-overlay-large-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:42:\"summer-hero-pool-overlay-large-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:42:\"summer-hero-pool-overlay-large-600x360.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:42:\"summer-hero-pool-overlay-large-320x192.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:192;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:43:\"summer-hero-pool-overlay-large-1200x720.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:42:\"summer-hero-pool-overlay-large-160x160.jpg\";s:5:\"width\";i:160;s:6:\"height\";i:160;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:42:\"summer-hero-pool-overlay-large-768x461.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:461;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:43:\"summer-hero-pool-overlay-large-1536x922.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:922;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:44:\"summer-hero-pool-overlay-large-2048x1229.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1229;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"boldthemes_grid\";a:4:{s:4:\"file\";s:42:\"summer-hero-pool-overlay-large-540x324.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:324;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_11\";a:4:{s:4:\"file\";s:42:\"summer-hero-pool-overlay-large-540x540.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_22\";a:4:{s:4:\"file\";s:44:\"summer-hero-pool-overlay-large-1080x1080.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:1080;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_21\";a:4:{s:4:\"file\";s:43:\"summer-hero-pool-overlay-large-1080x540.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_12\";a:4:{s:4:\"file\";s:43:\"summer-hero-pool-overlay-large-540x1080.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:1080;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_latest_posts\";a:4:{s:4:\"file\";s:42:\"summer-hero-pool-overlay-large-320x240.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_grid_gallery\";a:4:{s:4:\"file\";s:42:\"summer-hero-pool-overlay-large-540x405.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:42:\"summer-hero-pool-overlay-large-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:42:\"summer-hero-pool-overlay-large-600x360.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:42:\"summer-hero-pool-overlay-large-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `smrc_postmeta` VALUES (114,882,'_wp_attached_file','2016/06/summer-hero-greece.jpg');
INSERT INTO `smrc_postmeta` VALUES (115,882,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2500;s:6:\"height\";i:1094;s:4:\"file\";s:30:\"2016/06/summer-hero-greece.jpg\";s:5:\"sizes\";a:19:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:30:\"summer-hero-greece-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:30:\"summer-hero-greece-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:30:\"summer-hero-greece-600x263.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:263;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:30:\"summer-hero-greece-320x140.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:140;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:31:\"summer-hero-greece-1200x525.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:525;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"summer-hero-greece-160x160.jpg\";s:5:\"width\";i:160;s:6:\"height\";i:160;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:30:\"summer-hero-greece-768x336.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:336;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:31:\"summer-hero-greece-1536x672.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:672;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:31:\"summer-hero-greece-2048x896.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:896;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"boldthemes_grid\";a:4:{s:4:\"file\";s:30:\"summer-hero-greece-540x236.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:236;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_11\";a:4:{s:4:\"file\";s:30:\"summer-hero-greece-540x540.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_22\";a:4:{s:4:\"file\";s:32:\"summer-hero-greece-1080x1080.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:1080;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_21\";a:4:{s:4:\"file\";s:31:\"summer-hero-greece-1080x540.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_12\";a:4:{s:4:\"file\";s:31:\"summer-hero-greece-540x1080.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:1080;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_latest_posts\";a:4:{s:4:\"file\";s:30:\"summer-hero-greece-320x240.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_grid_gallery\";a:4:{s:4:\"file\";s:30:\"summer-hero-greece-540x405.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:30:\"summer-hero-greece-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:30:\"summer-hero-greece-600x263.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:263;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:30:\"summer-hero-greece-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `smrc_postmeta` VALUES (116,881,'_wp_attached_file','2016/06/summer-hero-fire.jpg');
INSERT INTO `smrc_postmeta` VALUES (117,881,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2500;s:6:\"height\";i:1094;s:4:\"file\";s:28:\"2016/06/summer-hero-fire.jpg\";s:5:\"sizes\";a:19:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:28:\"summer-hero-fire-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:28:\"summer-hero-fire-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:28:\"summer-hero-fire-600x263.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:263;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"summer-hero-fire-320x140.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:140;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:29:\"summer-hero-fire-1200x525.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:525;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"summer-hero-fire-160x160.jpg\";s:5:\"width\";i:160;s:6:\"height\";i:160;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:28:\"summer-hero-fire-768x336.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:336;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:29:\"summer-hero-fire-1536x672.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:672;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:29:\"summer-hero-fire-2048x896.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:896;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"boldthemes_grid\";a:4:{s:4:\"file\";s:28:\"summer-hero-fire-540x236.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:236;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_11\";a:4:{s:4:\"file\";s:28:\"summer-hero-fire-540x540.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_22\";a:4:{s:4:\"file\";s:30:\"summer-hero-fire-1080x1080.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:1080;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_21\";a:4:{s:4:\"file\";s:29:\"summer-hero-fire-1080x540.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_12\";a:4:{s:4:\"file\";s:29:\"summer-hero-fire-540x1080.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:1080;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_latest_posts\";a:4:{s:4:\"file\";s:28:\"summer-hero-fire-320x240.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_grid_gallery\";a:4:{s:4:\"file\";s:28:\"summer-hero-fire-540x405.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:28:\"summer-hero-fire-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:28:\"summer-hero-fire-600x263.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:263;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:28:\"summer-hero-fire-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `smrc_postmeta` VALUES (118,854,'_wp_attached_file','2016/05/summer-offers-background-2.jpg');
INSERT INTO `smrc_postmeta` VALUES (119,854,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2500;s:6:\"height\";i:1497;s:4:\"file\";s:38:\"2016/05/summer-offers-background-2.jpg\";s:5:\"sizes\";a:19:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:38:\"summer-offers-background-2-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:38:\"summer-offers-background-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:38:\"summer-offers-background-2-600x359.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:359;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:38:\"summer-offers-background-2-320x192.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:192;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:39:\"summer-offers-background-2-1200x719.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:719;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:38:\"summer-offers-background-2-160x160.jpg\";s:5:\"width\";i:160;s:6:\"height\";i:160;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:38:\"summer-offers-background-2-768x460.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:460;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:39:\"summer-offers-background-2-1536x920.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:920;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:40:\"summer-offers-background-2-2048x1226.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1226;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"boldthemes_grid\";a:4:{s:4:\"file\";s:38:\"summer-offers-background-2-540x323.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:323;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_11\";a:4:{s:4:\"file\";s:38:\"summer-offers-background-2-540x540.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_22\";a:4:{s:4:\"file\";s:40:\"summer-offers-background-2-1080x1080.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:1080;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_21\";a:4:{s:4:\"file\";s:39:\"summer-offers-background-2-1080x540.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_12\";a:4:{s:4:\"file\";s:39:\"summer-offers-background-2-540x1080.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:1080;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_latest_posts\";a:4:{s:4:\"file\";s:38:\"summer-offers-background-2-320x240.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_grid_gallery\";a:4:{s:4:\"file\";s:38:\"summer-offers-background-2-540x405.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:38:\"summer-offers-background-2-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:38:\"summer-offers-background-2-600x359.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:359;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:38:\"summer-offers-background-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `smrc_postmeta` VALUES (120,865,'_wp_attached_file','2016/06/summer-logo-light-flat.png');
INSERT INTO `smrc_postmeta` VALUES (121,865,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:281;s:6:\"height\";i:60;s:4:\"file\";s:34:\"2016/06/summer-logo-light-flat.png\";s:5:\"sizes\";a:3:{s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:33:\"summer-logo-light-flat-100x60.png\";s:5:\"width\";i:100;s:6:\"height\";i:60;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"summer-logo-light-flat-160x60.png\";s:5:\"width\";i:160;s:6:\"height\";i:60;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:33:\"summer-logo-light-flat-100x60.png\";s:5:\"width\";i:100;s:6:\"height\";i:60;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:{}}}');
INSERT INTO `smrc_postmeta` VALUES (122,880,'_wp_attached_file','2016/06/summer-hero-boat.jpg');
INSERT INTO `smrc_postmeta` VALUES (123,880,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2500;s:6:\"height\";i:1094;s:4:\"file\";s:28:\"2016/06/summer-hero-boat.jpg\";s:5:\"sizes\";a:19:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:28:\"summer-hero-boat-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:28:\"summer-hero-boat-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:28:\"summer-hero-boat-600x263.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:263;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"summer-hero-boat-320x140.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:140;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:29:\"summer-hero-boat-1200x525.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:525;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"summer-hero-boat-160x160.jpg\";s:5:\"width\";i:160;s:6:\"height\";i:160;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:28:\"summer-hero-boat-768x336.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:336;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:29:\"summer-hero-boat-1536x672.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:672;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:29:\"summer-hero-boat-2048x896.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:896;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"boldthemes_grid\";a:4:{s:4:\"file\";s:28:\"summer-hero-boat-540x236.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:236;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_11\";a:4:{s:4:\"file\";s:28:\"summer-hero-boat-540x540.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_22\";a:4:{s:4:\"file\";s:30:\"summer-hero-boat-1080x1080.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:1080;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_21\";a:4:{s:4:\"file\";s:29:\"summer-hero-boat-1080x540.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_12\";a:4:{s:4:\"file\";s:29:\"summer-hero-boat-540x1080.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:1080;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_latest_posts\";a:4:{s:4:\"file\";s:28:\"summer-hero-boat-320x240.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_grid_gallery\";a:4:{s:4:\"file\";s:28:\"summer-hero-boat-540x405.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:28:\"summer-hero-boat-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:28:\"summer-hero-boat-600x263.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:263;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:28:\"summer-hero-boat-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `smrc_postmeta` VALUES (124,925,'_wp_attached_file','2016/09/summer-hero-exterior-overlay-large.jpg');
INSERT INTO `smrc_postmeta` VALUES (125,925,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2500;s:6:\"height\";i:1500;s:4:\"file\";s:46:\"2016/09/summer-hero-exterior-overlay-large.jpg\";s:5:\"sizes\";a:19:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:46:\"summer-hero-exterior-overlay-large-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:46:\"summer-hero-exterior-overlay-large-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:46:\"summer-hero-exterior-overlay-large-600x360.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:46:\"summer-hero-exterior-overlay-large-320x192.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:192;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:47:\"summer-hero-exterior-overlay-large-1200x720.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:46:\"summer-hero-exterior-overlay-large-160x160.jpg\";s:5:\"width\";i:160;s:6:\"height\";i:160;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:46:\"summer-hero-exterior-overlay-large-768x461.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:461;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:47:\"summer-hero-exterior-overlay-large-1536x922.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:922;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:48:\"summer-hero-exterior-overlay-large-2048x1229.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1229;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"boldthemes_grid\";a:4:{s:4:\"file\";s:46:\"summer-hero-exterior-overlay-large-540x324.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:324;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_11\";a:4:{s:4:\"file\";s:46:\"summer-hero-exterior-overlay-large-540x540.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_22\";a:4:{s:4:\"file\";s:48:\"summer-hero-exterior-overlay-large-1080x1080.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:1080;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_21\";a:4:{s:4:\"file\";s:47:\"summer-hero-exterior-overlay-large-1080x540.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_12\";a:4:{s:4:\"file\";s:47:\"summer-hero-exterior-overlay-large-540x1080.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:1080;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_latest_posts\";a:4:{s:4:\"file\";s:46:\"summer-hero-exterior-overlay-large-320x240.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_grid_gallery\";a:4:{s:4:\"file\";s:46:\"summer-hero-exterior-overlay-large-540x405.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:46:\"summer-hero-exterior-overlay-large-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:46:\"summer-hero-exterior-overlay-large-600x360.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:46:\"summer-hero-exterior-overlay-large-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `smrc_postmeta` VALUES (126,952,'_wp_attached_file','2016/09/California-exterior-pin.png');
INSERT INTO `smrc_postmeta` VALUES (127,952,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:109;s:6:\"height\";i:77;s:4:\"file\";s:35:\"2016/09/California-exterior-pin.png\";s:5:\"sizes\";a:2:{s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:34:\"California-exterior-pin-100x77.png\";s:5:\"width\";i:100;s:6:\"height\";i:77;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:34:\"California-exterior-pin-100x77.png\";s:5:\"width\";i:100;s:6:\"height\";i:77;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:{}}}');
INSERT INTO `smrc_postmeta` VALUES (128,967,'_wp_attached_file','2016/09/California-boat-star-green.png');
INSERT INTO `smrc_postmeta` VALUES (129,967,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:60;s:6:\"height\";i:57;s:4:\"file\";s:38:\"2016/09/California-boat-star-green.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `smrc_postmeta` VALUES (130,968,'_wp_attached_file','2016/09/California-boat-star-brown.png');
INSERT INTO `smrc_postmeta` VALUES (131,968,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:60;s:6:\"height\";i:57;s:4:\"file\";s:38:\"2016/09/California-boat-star-brown.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `smrc_postmeta` VALUES (132,969,'_wp_attached_file','2016/09/California-boat-logo-inverse-2.png');
INSERT INTO `smrc_postmeta` VALUES (133,969,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:281;s:6:\"height\";i:60;s:4:\"file\";s:42:\"2016/09/California-boat-logo-inverse-2.png\";s:5:\"sizes\";a:3:{s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:41:\"California-boat-logo-inverse-2-100x60.png\";s:5:\"width\";i:100;s:6:\"height\";i:60;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:41:\"California-boat-logo-inverse-2-160x60.png\";s:5:\"width\";i:160;s:6:\"height\";i:60;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:41:\"California-boat-logo-inverse-2-100x60.png\";s:5:\"width\";i:100;s:6:\"height\";i:60;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:{}}}');
INSERT INTO `smrc_postmeta` VALUES (134,965,'_wp_attached_file','2016/09/California-boat-pin.png');
INSERT INTO `smrc_postmeta` VALUES (135,965,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:109;s:6:\"height\";i:77;s:4:\"file\";s:31:\"2016/09/California-boat-pin.png\";s:5:\"sizes\";a:2:{s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:30:\"California-boat-pin-100x77.png\";s:5:\"width\";i:100;s:6:\"height\";i:77;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:30:\"California-boat-pin-100x77.png\";s:5:\"width\";i:100;s:6:\"height\";i:77;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:{}}}');
INSERT INTO `smrc_postmeta` VALUES (136,963,'_wp_attached_file','2016/09/California-boat-logo.png');
INSERT INTO `smrc_postmeta` VALUES (137,963,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:281;s:6:\"height\";i:60;s:4:\"file\";s:32:\"2016/09/California-boat-logo.png\";s:5:\"sizes\";a:3:{s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:31:\"California-boat-logo-100x60.png\";s:5:\"width\";i:100;s:6:\"height\";i:60;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"California-boat-logo-160x60.png\";s:5:\"width\";i:160;s:6:\"height\";i:60;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:31:\"California-boat-logo-100x60.png\";s:5:\"width\";i:100;s:6:\"height\";i:60;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:{}}}');
INSERT INTO `smrc_postmeta` VALUES (138,953,'_wp_attached_file','2016/09/California-exterior-logo.png');
INSERT INTO `smrc_postmeta` VALUES (139,953,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:281;s:6:\"height\";i:60;s:4:\"file\";s:36:\"2016/09/California-exterior-logo.png\";s:5:\"sizes\";a:3:{s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:35:\"California-exterior-logo-100x60.png\";s:5:\"width\";i:100;s:6:\"height\";i:60;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"California-exterior-logo-160x60.png\";s:5:\"width\";i:160;s:6:\"height\";i:60;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:35:\"California-exterior-logo-100x60.png\";s:5:\"width\";i:100;s:6:\"height\";i:60;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:{}}}');
INSERT INTO `smrc_postmeta` VALUES (140,622,'_wp_attached_file','2016/02/summer-overview-06.jpg');
INSERT INTO `smrc_postmeta` VALUES (141,622,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:800;s:4:\"file\";s:30:\"2016/02/summer-overview-06.jpg\";s:5:\"sizes\";a:15:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:30:\"summer-overview-06-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:30:\"summer-overview-06-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:30:\"summer-overview-06-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:30:\"summer-overview-06-320x320.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"summer-overview-06-160x160.jpg\";s:5:\"width\";i:160;s:6:\"height\";i:160;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:30:\"summer-overview-06-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"boldthemes_grid\";a:4:{s:4:\"file\";s:30:\"summer-overview-06-540x540.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_11\";a:4:{s:4:\"file\";s:30:\"summer-overview-06-540x540.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_21\";a:4:{s:4:\"file\";s:30:\"summer-overview-06-800x540.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_12\";a:4:{s:4:\"file\";s:30:\"summer-overview-06-540x800.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_latest_posts\";a:4:{s:4:\"file\";s:30:\"summer-overview-06-320x240.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_grid_gallery\";a:4:{s:4:\"file\";s:30:\"summer-overview-06-540x405.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:30:\"summer-overview-06-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:30:\"summer-overview-06-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:30:\"summer-overview-06-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `smrc_postmeta` VALUES (142,962,'_wp_attached_file','2016/09/California-boat-logo-inverse.png');
INSERT INTO `smrc_postmeta` VALUES (143,962,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:281;s:6:\"height\";i:60;s:4:\"file\";s:40:\"2016/09/California-boat-logo-inverse.png\";s:5:\"sizes\";a:3:{s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:39:\"California-boat-logo-inverse-100x60.png\";s:5:\"width\";i:100;s:6:\"height\";i:60;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:39:\"California-boat-logo-inverse-160x60.png\";s:5:\"width\";i:160;s:6:\"height\";i:60;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:39:\"California-boat-logo-inverse-100x60.png\";s:5:\"width\";i:100;s:6:\"height\";i:60;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:{}}}');
INSERT INTO `smrc_postmeta` VALUES (144,844,'_wp_attached_file','2016/05/summer-hero-5.jpg');
INSERT INTO `smrc_postmeta` VALUES (145,844,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2500;s:6:\"height\";i:1094;s:4:\"file\";s:25:\"2016/05/summer-hero-5.jpg\";s:5:\"sizes\";a:19:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:25:\"summer-hero-5-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:25:\"summer-hero-5-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:25:\"summer-hero-5-600x263.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:263;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"summer-hero-5-320x140.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:140;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:26:\"summer-hero-5-1200x525.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:525;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"summer-hero-5-160x160.jpg\";s:5:\"width\";i:160;s:6:\"height\";i:160;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:25:\"summer-hero-5-768x336.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:336;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:26:\"summer-hero-5-1536x672.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:672;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:26:\"summer-hero-5-2048x896.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:896;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"boldthemes_grid\";a:4:{s:4:\"file\";s:25:\"summer-hero-5-540x236.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:236;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_11\";a:4:{s:4:\"file\";s:25:\"summer-hero-5-540x540.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_22\";a:4:{s:4:\"file\";s:27:\"summer-hero-5-1080x1080.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:1080;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_21\";a:4:{s:4:\"file\";s:26:\"summer-hero-5-1080x540.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_12\";a:4:{s:4:\"file\";s:26:\"summer-hero-5-540x1080.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:1080;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_latest_posts\";a:4:{s:4:\"file\";s:25:\"summer-hero-5-320x240.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_grid_gallery\";a:4:{s:4:\"file\";s:25:\"summer-hero-5-540x405.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:25:\"summer-hero-5-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:25:\"summer-hero-5-600x263.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:263;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:25:\"summer-hero-5-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `smrc_postmeta` VALUES (146,843,'_wp_attached_file','2016/05/summer-hero-6.jpg');
INSERT INTO `smrc_postmeta` VALUES (147,843,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2500;s:6:\"height\";i:1094;s:4:\"file\";s:25:\"2016/05/summer-hero-6.jpg\";s:5:\"sizes\";a:19:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:25:\"summer-hero-6-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:25:\"summer-hero-6-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:25:\"summer-hero-6-600x263.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:263;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"summer-hero-6-320x140.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:140;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:26:\"summer-hero-6-1200x525.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:525;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"summer-hero-6-160x160.jpg\";s:5:\"width\";i:160;s:6:\"height\";i:160;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:25:\"summer-hero-6-768x336.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:336;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:26:\"summer-hero-6-1536x672.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:672;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:26:\"summer-hero-6-2048x896.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:896;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"boldthemes_grid\";a:4:{s:4:\"file\";s:25:\"summer-hero-6-540x236.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:236;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_11\";a:4:{s:4:\"file\";s:25:\"summer-hero-6-540x540.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_22\";a:4:{s:4:\"file\";s:27:\"summer-hero-6-1080x1080.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:1080;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_21\";a:4:{s:4:\"file\";s:26:\"summer-hero-6-1080x540.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_12\";a:4:{s:4:\"file\";s:26:\"summer-hero-6-540x1080.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:1080;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_latest_posts\";a:4:{s:4:\"file\";s:25:\"summer-hero-6-320x240.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_grid_gallery\";a:4:{s:4:\"file\";s:25:\"summer-hero-6-540x405.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:25:\"summer-hero-6-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:25:\"summer-hero-6-600x263.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:263;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:25:\"summer-hero-6-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `smrc_postmeta` VALUES (148,795,'_wp_attached_file','2016/03/attractions-zoo-06.jpg');
INSERT INTO `smrc_postmeta` VALUES (149,795,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:1185;s:4:\"file\";s:30:\"2016/03/attractions-zoo-06.jpg\";s:5:\"sizes\";a:18:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:30:\"attractions-zoo-06-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:30:\"attractions-zoo-06-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:30:\"attractions-zoo-06-600x444.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:30:\"attractions-zoo-06-320x237.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:237;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:31:\"attractions-zoo-06-1200x889.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:889;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"attractions-zoo-06-160x160.jpg\";s:5:\"width\";i:160;s:6:\"height\";i:160;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:30:\"attractions-zoo-06-768x569.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:569;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:32:\"attractions-zoo-06-1536x1138.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1138;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"boldthemes_grid\";a:4:{s:4:\"file\";s:30:\"attractions-zoo-06-540x400.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_11\";a:4:{s:4:\"file\";s:30:\"attractions-zoo-06-540x540.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_22\";a:4:{s:4:\"file\";s:32:\"attractions-zoo-06-1080x1080.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:1080;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_21\";a:4:{s:4:\"file\";s:31:\"attractions-zoo-06-1080x540.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_12\";a:4:{s:4:\"file\";s:31:\"attractions-zoo-06-540x1080.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:1080;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_latest_posts\";a:4:{s:4:\"file\";s:30:\"attractions-zoo-06-320x240.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_grid_gallery\";a:4:{s:4:\"file\";s:30:\"attractions-zoo-06-540x405.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:30:\"attractions-zoo-06-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:30:\"attractions-zoo-06-600x444.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:30:\"attractions-zoo-06-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `smrc_postmeta` VALUES (150,796,'_wp_attached_file','2016/03/attractions-uss-midway-01.jpg');
INSERT INTO `smrc_postmeta` VALUES (151,796,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:1269;s:4:\"file\";s:37:\"2016/03/attractions-uss-midway-01.jpg\";s:5:\"sizes\";a:18:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:37:\"attractions-uss-midway-01-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:37:\"attractions-uss-midway-01-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:37:\"attractions-uss-midway-01-600x476.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:476;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:37:\"attractions-uss-midway-01-320x254.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:254;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:38:\"attractions-uss-midway-01-1200x952.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:952;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:37:\"attractions-uss-midway-01-160x160.jpg\";s:5:\"width\";i:160;s:6:\"height\";i:160;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:37:\"attractions-uss-midway-01-768x609.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:609;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:39:\"attractions-uss-midway-01-1536x1218.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1218;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"boldthemes_grid\";a:4:{s:4:\"file\";s:37:\"attractions-uss-midway-01-540x428.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:428;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_11\";a:4:{s:4:\"file\";s:37:\"attractions-uss-midway-01-540x540.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_22\";a:4:{s:4:\"file\";s:39:\"attractions-uss-midway-01-1080x1080.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:1080;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_21\";a:4:{s:4:\"file\";s:38:\"attractions-uss-midway-01-1080x540.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_12\";a:4:{s:4:\"file\";s:38:\"attractions-uss-midway-01-540x1080.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:1080;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_latest_posts\";a:4:{s:4:\"file\";s:37:\"attractions-uss-midway-01-320x240.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_grid_gallery\";a:4:{s:4:\"file\";s:37:\"attractions-uss-midway-01-540x405.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:37:\"attractions-uss-midway-01-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:37:\"attractions-uss-midway-01-600x476.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:476;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:37:\"attractions-uss-midway-01-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `smrc_postmeta` VALUES (152,797,'_wp_attached_file','2016/03/attractions-uss-midway-02.jpg');
INSERT INTO `smrc_postmeta` VALUES (153,797,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:1063;s:4:\"file\";s:37:\"2016/03/attractions-uss-midway-02.jpg\";s:5:\"sizes\";a:18:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:37:\"attractions-uss-midway-02-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:37:\"attractions-uss-midway-02-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:37:\"attractions-uss-midway-02-600x399.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:399;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:37:\"attractions-uss-midway-02-320x213.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:213;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:38:\"attractions-uss-midway-02-1200x797.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:797;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:37:\"attractions-uss-midway-02-160x160.jpg\";s:5:\"width\";i:160;s:6:\"height\";i:160;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:37:\"attractions-uss-midway-02-768x510.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:510;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:39:\"attractions-uss-midway-02-1536x1020.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1020;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"boldthemes_grid\";a:4:{s:4:\"file\";s:37:\"attractions-uss-midway-02-540x359.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:359;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_11\";a:4:{s:4:\"file\";s:37:\"attractions-uss-midway-02-540x540.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_22\";a:4:{s:4:\"file\";s:39:\"attractions-uss-midway-02-1080x1063.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:1063;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_21\";a:4:{s:4:\"file\";s:38:\"attractions-uss-midway-02-1080x540.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_12\";a:4:{s:4:\"file\";s:38:\"attractions-uss-midway-02-540x1063.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:1063;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_latest_posts\";a:4:{s:4:\"file\";s:37:\"attractions-uss-midway-02-320x240.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_grid_gallery\";a:4:{s:4:\"file\";s:37:\"attractions-uss-midway-02-540x405.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:37:\"attractions-uss-midway-02-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:37:\"attractions-uss-midway-02-600x399.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:399;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:37:\"attractions-uss-midway-02-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `smrc_postmeta` VALUES (154,794,'_wp_attached_file','2016/03/attractions-zoo-05.jpg');
INSERT INTO `smrc_postmeta` VALUES (155,794,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:1067;s:4:\"file\";s:30:\"2016/03/attractions-zoo-05.jpg\";s:5:\"sizes\";a:18:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:30:\"attractions-zoo-05-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:30:\"attractions-zoo-05-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:30:\"attractions-zoo-05-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:30:\"attractions-zoo-05-320x213.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:213;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:31:\"attractions-zoo-05-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"attractions-zoo-05-160x160.jpg\";s:5:\"width\";i:160;s:6:\"height\";i:160;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:30:\"attractions-zoo-05-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:32:\"attractions-zoo-05-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"boldthemes_grid\";a:4:{s:4:\"file\";s:30:\"attractions-zoo-05-540x360.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_11\";a:4:{s:4:\"file\";s:30:\"attractions-zoo-05-540x540.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_22\";a:4:{s:4:\"file\";s:32:\"attractions-zoo-05-1080x1067.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:1067;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_21\";a:4:{s:4:\"file\";s:31:\"attractions-zoo-05-1080x540.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_12\";a:4:{s:4:\"file\";s:31:\"attractions-zoo-05-540x1067.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:1067;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_latest_posts\";a:4:{s:4:\"file\";s:30:\"attractions-zoo-05-320x240.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_grid_gallery\";a:4:{s:4:\"file\";s:30:\"attractions-zoo-05-540x405.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:30:\"attractions-zoo-05-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:30:\"attractions-zoo-05-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:30:\"attractions-zoo-05-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `smrc_postmeta` VALUES (156,41,'_wp_attached_file','2016/02/summer-room-4.jpg');
INSERT INTO `smrc_postmeta` VALUES (157,41,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:600;s:4:\"file\";s:25:\"2016/02/summer-room-4.jpg\";s:5:\"sizes\";a:15:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:25:\"summer-room-4-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:25:\"summer-room-4-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:25:\"summer-room-4-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"summer-room-4-320x240.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"summer-room-4-160x160.jpg\";s:5:\"width\";i:160;s:6:\"height\";i:160;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:25:\"summer-room-4-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"boldthemes_grid\";a:4:{s:4:\"file\";s:25:\"summer-room-4-540x405.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_11\";a:4:{s:4:\"file\";s:25:\"summer-room-4-540x540.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_21\";a:4:{s:4:\"file\";s:25:\"summer-room-4-800x540.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_12\";a:4:{s:4:\"file\";s:25:\"summer-room-4-540x600.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_latest_posts\";a:4:{s:4:\"file\";s:25:\"summer-room-4-320x240.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_grid_gallery\";a:4:{s:4:\"file\";s:25:\"summer-room-4-540x405.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:25:\"summer-room-4-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:25:\"summer-room-4-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:25:\"summer-room-4-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `smrc_postmeta` VALUES (158,790,'_wp_attached_file','2016/03/attractions-zoo-02.jpg');
INSERT INTO `smrc_postmeta` VALUES (159,790,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:1232;s:4:\"file\";s:30:\"2016/03/attractions-zoo-02.jpg\";s:5:\"sizes\";a:18:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:30:\"attractions-zoo-02-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:30:\"attractions-zoo-02-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:30:\"attractions-zoo-02-600x462.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:462;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:30:\"attractions-zoo-02-320x246.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:246;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:31:\"attractions-zoo-02-1200x924.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:924;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"attractions-zoo-02-160x160.jpg\";s:5:\"width\";i:160;s:6:\"height\";i:160;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:30:\"attractions-zoo-02-768x591.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:591;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:32:\"attractions-zoo-02-1536x1183.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1183;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"boldthemes_grid\";a:4:{s:4:\"file\";s:30:\"attractions-zoo-02-540x416.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:416;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_11\";a:4:{s:4:\"file\";s:30:\"attractions-zoo-02-540x540.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_22\";a:4:{s:4:\"file\";s:32:\"attractions-zoo-02-1080x1080.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:1080;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_21\";a:4:{s:4:\"file\";s:31:\"attractions-zoo-02-1080x540.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_12\";a:4:{s:4:\"file\";s:31:\"attractions-zoo-02-540x1080.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:1080;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_latest_posts\";a:4:{s:4:\"file\";s:30:\"attractions-zoo-02-320x240.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_grid_gallery\";a:4:{s:4:\"file\";s:30:\"attractions-zoo-02-540x405.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:30:\"attractions-zoo-02-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:30:\"attractions-zoo-02-600x462.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:462;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:30:\"attractions-zoo-02-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `smrc_postmeta` VALUES (160,791,'_wp_attached_file','2016/03/attractions-zoo-01.jpg');
INSERT INTO `smrc_postmeta` VALUES (161,791,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:1085;s:4:\"file\";s:30:\"2016/03/attractions-zoo-01.jpg\";s:5:\"sizes\";a:18:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:30:\"attractions-zoo-01-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:30:\"attractions-zoo-01-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:30:\"attractions-zoo-01-600x407.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:407;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:30:\"attractions-zoo-01-320x217.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:217;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:31:\"attractions-zoo-01-1200x814.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:814;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"attractions-zoo-01-160x160.jpg\";s:5:\"width\";i:160;s:6:\"height\";i:160;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:30:\"attractions-zoo-01-768x521.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:521;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:32:\"attractions-zoo-01-1536x1042.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1042;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"boldthemes_grid\";a:4:{s:4:\"file\";s:30:\"attractions-zoo-01-540x366.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:366;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_11\";a:4:{s:4:\"file\";s:30:\"attractions-zoo-01-540x540.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_22\";a:4:{s:4:\"file\";s:32:\"attractions-zoo-01-1080x1080.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:1080;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_21\";a:4:{s:4:\"file\";s:31:\"attractions-zoo-01-1080x540.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_12\";a:4:{s:4:\"file\";s:31:\"attractions-zoo-01-540x1080.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:1080;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_latest_posts\";a:4:{s:4:\"file\";s:30:\"attractions-zoo-01-320x240.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_grid_gallery\";a:4:{s:4:\"file\";s:30:\"attractions-zoo-01-540x405.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:30:\"attractions-zoo-01-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:30:\"attractions-zoo-01-600x407.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:407;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:30:\"attractions-zoo-01-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `smrc_postmeta` VALUES (162,792,'_wp_attached_file','2016/03/attractions-zoo-03.jpg');
INSERT INTO `smrc_postmeta` VALUES (163,792,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:1067;s:4:\"file\";s:30:\"2016/03/attractions-zoo-03.jpg\";s:5:\"sizes\";a:18:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:30:\"attractions-zoo-03-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:30:\"attractions-zoo-03-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:30:\"attractions-zoo-03-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:30:\"attractions-zoo-03-320x213.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:213;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:31:\"attractions-zoo-03-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"attractions-zoo-03-160x160.jpg\";s:5:\"width\";i:160;s:6:\"height\";i:160;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:30:\"attractions-zoo-03-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:32:\"attractions-zoo-03-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"boldthemes_grid\";a:4:{s:4:\"file\";s:30:\"attractions-zoo-03-540x360.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_11\";a:4:{s:4:\"file\";s:30:\"attractions-zoo-03-540x540.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_22\";a:4:{s:4:\"file\";s:32:\"attractions-zoo-03-1080x1067.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:1067;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_21\";a:4:{s:4:\"file\";s:31:\"attractions-zoo-03-1080x540.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_12\";a:4:{s:4:\"file\";s:31:\"attractions-zoo-03-540x1067.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:1067;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_latest_posts\";a:4:{s:4:\"file\";s:30:\"attractions-zoo-03-320x240.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_grid_gallery\";a:4:{s:4:\"file\";s:30:\"attractions-zoo-03-540x405.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:30:\"attractions-zoo-03-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:30:\"attractions-zoo-03-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:30:\"attractions-zoo-03-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `smrc_postmeta` VALUES (164,798,'_wp_attached_file','2016/03/attractions-uss-midway-03.jpg');
INSERT INTO `smrc_postmeta` VALUES (165,798,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:1063;s:4:\"file\";s:37:\"2016/03/attractions-uss-midway-03.jpg\";s:5:\"sizes\";a:18:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:37:\"attractions-uss-midway-03-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:37:\"attractions-uss-midway-03-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:37:\"attractions-uss-midway-03-600x399.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:399;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:37:\"attractions-uss-midway-03-320x213.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:213;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:38:\"attractions-uss-midway-03-1200x797.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:797;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:37:\"attractions-uss-midway-03-160x160.jpg\";s:5:\"width\";i:160;s:6:\"height\";i:160;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:37:\"attractions-uss-midway-03-768x510.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:510;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:39:\"attractions-uss-midway-03-1536x1020.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1020;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"boldthemes_grid\";a:4:{s:4:\"file\";s:37:\"attractions-uss-midway-03-540x359.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:359;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_11\";a:4:{s:4:\"file\";s:37:\"attractions-uss-midway-03-540x540.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_22\";a:4:{s:4:\"file\";s:39:\"attractions-uss-midway-03-1080x1063.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:1063;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_21\";a:4:{s:4:\"file\";s:38:\"attractions-uss-midway-03-1080x540.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_12\";a:4:{s:4:\"file\";s:38:\"attractions-uss-midway-03-540x1063.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:1063;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_latest_posts\";a:4:{s:4:\"file\";s:37:\"attractions-uss-midway-03-320x240.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_grid_gallery\";a:4:{s:4:\"file\";s:37:\"attractions-uss-midway-03-540x405.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:37:\"attractions-uss-midway-03-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:37:\"attractions-uss-midway-03-600x399.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:399;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:37:\"attractions-uss-midway-03-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `smrc_postmeta` VALUES (166,799,'_wp_attached_file','2016/03/attractions-uss-midway-04.jpg');
INSERT INTO `smrc_postmeta` VALUES (167,799,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:1063;s:4:\"file\";s:37:\"2016/03/attractions-uss-midway-04.jpg\";s:5:\"sizes\";a:18:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:37:\"attractions-uss-midway-04-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:37:\"attractions-uss-midway-04-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:37:\"attractions-uss-midway-04-600x399.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:399;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:37:\"attractions-uss-midway-04-320x213.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:213;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:38:\"attractions-uss-midway-04-1200x797.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:797;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:37:\"attractions-uss-midway-04-160x160.jpg\";s:5:\"width\";i:160;s:6:\"height\";i:160;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:37:\"attractions-uss-midway-04-768x510.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:510;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:39:\"attractions-uss-midway-04-1536x1020.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1020;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"boldthemes_grid\";a:4:{s:4:\"file\";s:37:\"attractions-uss-midway-04-540x359.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:359;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_11\";a:4:{s:4:\"file\";s:37:\"attractions-uss-midway-04-540x540.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_22\";a:4:{s:4:\"file\";s:39:\"attractions-uss-midway-04-1080x1063.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:1063;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_21\";a:4:{s:4:\"file\";s:38:\"attractions-uss-midway-04-1080x540.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_12\";a:4:{s:4:\"file\";s:38:\"attractions-uss-midway-04-540x1063.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:1063;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_latest_posts\";a:4:{s:4:\"file\";s:37:\"attractions-uss-midway-04-320x240.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_grid_gallery\";a:4:{s:4:\"file\";s:37:\"attractions-uss-midway-04-540x405.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:37:\"attractions-uss-midway-04-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:37:\"attractions-uss-midway-04-600x399.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:399;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:37:\"attractions-uss-midway-04-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `smrc_postmeta` VALUES (168,818,'_wp_attached_file','2016/04/kids-03.jpg');
INSERT INTO `smrc_postmeta` VALUES (169,818,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:800;s:4:\"file\";s:19:\"2016/04/kids-03.jpg\";s:5:\"sizes\";a:15:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:19:\"kids-03-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:19:\"kids-03-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:19:\"kids-03-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"kids-03-320x320.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"kids-03-160x160.jpg\";s:5:\"width\";i:160;s:6:\"height\";i:160;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:19:\"kids-03-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"boldthemes_grid\";a:4:{s:4:\"file\";s:19:\"kids-03-540x540.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_11\";a:4:{s:4:\"file\";s:19:\"kids-03-540x540.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_21\";a:4:{s:4:\"file\";s:19:\"kids-03-800x540.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_12\";a:4:{s:4:\"file\";s:19:\"kids-03-540x800.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_latest_posts\";a:4:{s:4:\"file\";s:19:\"kids-03-320x240.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_grid_gallery\";a:4:{s:4:\"file\";s:19:\"kids-03-540x405.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:19:\"kids-03-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:19:\"kids-03-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:19:\"kids-03-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `smrc_postmeta` VALUES (170,833,'_wp_attached_file','2016/05/summer-hero-4.jpg');
INSERT INTO `smrc_postmeta` VALUES (171,833,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2500;s:6:\"height\";i:1094;s:4:\"file\";s:25:\"2016/05/summer-hero-4.jpg\";s:5:\"sizes\";a:19:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:25:\"summer-hero-4-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:25:\"summer-hero-4-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:25:\"summer-hero-4-600x263.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:263;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"summer-hero-4-320x140.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:140;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:26:\"summer-hero-4-1200x525.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:525;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"summer-hero-4-160x160.jpg\";s:5:\"width\";i:160;s:6:\"height\";i:160;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:25:\"summer-hero-4-768x336.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:336;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:26:\"summer-hero-4-1536x672.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:672;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:26:\"summer-hero-4-2048x896.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:896;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"boldthemes_grid\";a:4:{s:4:\"file\";s:25:\"summer-hero-4-540x236.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:236;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_11\";a:4:{s:4:\"file\";s:25:\"summer-hero-4-540x540.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_22\";a:4:{s:4:\"file\";s:27:\"summer-hero-4-1080x1080.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:1080;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_21\";a:4:{s:4:\"file\";s:26:\"summer-hero-4-1080x540.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_12\";a:4:{s:4:\"file\";s:26:\"summer-hero-4-540x1080.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:1080;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_latest_posts\";a:4:{s:4:\"file\";s:25:\"summer-hero-4-320x240.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_grid_gallery\";a:4:{s:4:\"file\";s:25:\"summer-hero-4-540x405.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:25:\"summer-hero-4-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:25:\"summer-hero-4-600x263.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:263;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:25:\"summer-hero-4-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `smrc_postmeta` VALUES (172,834,'_wp_attached_file','2016/05/summer-hero-3.jpg');
INSERT INTO `smrc_postmeta` VALUES (173,834,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2500;s:6:\"height\";i:1094;s:4:\"file\";s:25:\"2016/05/summer-hero-3.jpg\";s:5:\"sizes\";a:19:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:25:\"summer-hero-3-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:25:\"summer-hero-3-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:25:\"summer-hero-3-600x263.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:263;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"summer-hero-3-320x140.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:140;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:26:\"summer-hero-3-1200x525.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:525;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"summer-hero-3-160x160.jpg\";s:5:\"width\";i:160;s:6:\"height\";i:160;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:25:\"summer-hero-3-768x336.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:336;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:26:\"summer-hero-3-1536x672.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:672;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:26:\"summer-hero-3-2048x896.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:896;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"boldthemes_grid\";a:4:{s:4:\"file\";s:25:\"summer-hero-3-540x236.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:236;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_11\";a:4:{s:4:\"file\";s:25:\"summer-hero-3-540x540.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_22\";a:4:{s:4:\"file\";s:27:\"summer-hero-3-1080x1080.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:1080;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_21\";a:4:{s:4:\"file\";s:26:\"summer-hero-3-1080x540.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_12\";a:4:{s:4:\"file\";s:26:\"summer-hero-3-540x1080.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:1080;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_latest_posts\";a:4:{s:4:\"file\";s:25:\"summer-hero-3-320x240.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_grid_gallery\";a:4:{s:4:\"file\";s:25:\"summer-hero-3-540x405.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:25:\"summer-hero-3-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:25:\"summer-hero-3-600x263.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:263;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:25:\"summer-hero-3-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `smrc_postmeta` VALUES (174,817,'_wp_attached_file','2016/04/kids-04.jpg');
INSERT INTO `smrc_postmeta` VALUES (175,817,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:800;s:4:\"file\";s:19:\"2016/04/kids-04.jpg\";s:5:\"sizes\";a:15:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:19:\"kids-04-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:19:\"kids-04-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:19:\"kids-04-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"kids-04-320x320.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"kids-04-160x160.jpg\";s:5:\"width\";i:160;s:6:\"height\";i:160;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:19:\"kids-04-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"boldthemes_grid\";a:4:{s:4:\"file\";s:19:\"kids-04-540x540.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_11\";a:4:{s:4:\"file\";s:19:\"kids-04-540x540.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_21\";a:4:{s:4:\"file\";s:19:\"kids-04-800x540.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_12\";a:4:{s:4:\"file\";s:19:\"kids-04-540x800.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_latest_posts\";a:4:{s:4:\"file\";s:19:\"kids-04-320x240.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_grid_gallery\";a:4:{s:4:\"file\";s:19:\"kids-04-540x405.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:19:\"kids-04-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:19:\"kids-04-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:19:\"kids-04-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `smrc_postmeta` VALUES (176,815,'_wp_attached_file','2016/04/kids-02.jpg');
INSERT INTO `smrc_postmeta` VALUES (177,815,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:800;s:4:\"file\";s:19:\"2016/04/kids-02.jpg\";s:5:\"sizes\";a:15:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:19:\"kids-02-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:19:\"kids-02-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:19:\"kids-02-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"kids-02-320x320.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"kids-02-160x160.jpg\";s:5:\"width\";i:160;s:6:\"height\";i:160;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:19:\"kids-02-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"boldthemes_grid\";a:4:{s:4:\"file\";s:19:\"kids-02-540x540.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_11\";a:4:{s:4:\"file\";s:19:\"kids-02-540x540.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_21\";a:4:{s:4:\"file\";s:19:\"kids-02-800x540.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_12\";a:4:{s:4:\"file\";s:19:\"kids-02-540x800.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_latest_posts\";a:4:{s:4:\"file\";s:19:\"kids-02-320x240.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_grid_gallery\";a:4:{s:4:\"file\";s:19:\"kids-02-540x405.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:19:\"kids-02-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:19:\"kids-02-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:19:\"kids-02-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `smrc_postmeta` VALUES (178,800,'_wp_attached_file','2016/03/attractions-uss-midway-05.jpg');
INSERT INTO `smrc_postmeta` VALUES (179,800,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:1063;s:4:\"file\";s:37:\"2016/03/attractions-uss-midway-05.jpg\";s:5:\"sizes\";a:18:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:37:\"attractions-uss-midway-05-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:37:\"attractions-uss-midway-05-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:37:\"attractions-uss-midway-05-600x399.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:399;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:37:\"attractions-uss-midway-05-320x213.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:213;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:38:\"attractions-uss-midway-05-1200x797.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:797;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:37:\"attractions-uss-midway-05-160x160.jpg\";s:5:\"width\";i:160;s:6:\"height\";i:160;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:37:\"attractions-uss-midway-05-768x510.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:510;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:39:\"attractions-uss-midway-05-1536x1020.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1020;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"boldthemes_grid\";a:4:{s:4:\"file\";s:37:\"attractions-uss-midway-05-540x359.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:359;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_11\";a:4:{s:4:\"file\";s:37:\"attractions-uss-midway-05-540x540.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_22\";a:4:{s:4:\"file\";s:39:\"attractions-uss-midway-05-1080x1063.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:1063;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_21\";a:4:{s:4:\"file\";s:38:\"attractions-uss-midway-05-1080x540.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_12\";a:4:{s:4:\"file\";s:38:\"attractions-uss-midway-05-540x1063.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:1063;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_latest_posts\";a:4:{s:4:\"file\";s:37:\"attractions-uss-midway-05-320x240.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_grid_gallery\";a:4:{s:4:\"file\";s:37:\"attractions-uss-midway-05-540x405.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:37:\"attractions-uss-midway-05-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:37:\"attractions-uss-midway-05-600x399.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:399;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:37:\"attractions-uss-midway-05-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `smrc_postmeta` VALUES (180,801,'_wp_attached_file','2016/03/attractions-uss-midway-06.jpg');
INSERT INTO `smrc_postmeta` VALUES (181,801,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:1063;s:4:\"file\";s:37:\"2016/03/attractions-uss-midway-06.jpg\";s:5:\"sizes\";a:18:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:37:\"attractions-uss-midway-06-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:37:\"attractions-uss-midway-06-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:37:\"attractions-uss-midway-06-600x399.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:399;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:37:\"attractions-uss-midway-06-320x213.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:213;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:38:\"attractions-uss-midway-06-1200x797.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:797;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:37:\"attractions-uss-midway-06-160x160.jpg\";s:5:\"width\";i:160;s:6:\"height\";i:160;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:37:\"attractions-uss-midway-06-768x510.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:510;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:39:\"attractions-uss-midway-06-1536x1020.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1020;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"boldthemes_grid\";a:4:{s:4:\"file\";s:37:\"attractions-uss-midway-06-540x359.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:359;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_11\";a:4:{s:4:\"file\";s:37:\"attractions-uss-midway-06-540x540.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_22\";a:4:{s:4:\"file\";s:39:\"attractions-uss-midway-06-1080x1063.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:1063;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_21\";a:4:{s:4:\"file\";s:38:\"attractions-uss-midway-06-1080x540.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_12\";a:4:{s:4:\"file\";s:38:\"attractions-uss-midway-06-540x1063.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:1063;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_latest_posts\";a:4:{s:4:\"file\";s:37:\"attractions-uss-midway-06-320x240.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_grid_gallery\";a:4:{s:4:\"file\";s:37:\"attractions-uss-midway-06-540x405.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:37:\"attractions-uss-midway-06-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:37:\"attractions-uss-midway-06-600x399.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:399;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:37:\"attractions-uss-midway-06-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `smrc_postmeta` VALUES (182,814,'_wp_attached_file','2016/04/kids-01.jpg');
INSERT INTO `smrc_postmeta` VALUES (183,814,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:800;s:4:\"file\";s:19:\"2016/04/kids-01.jpg\";s:5:\"sizes\";a:15:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:19:\"kids-01-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:19:\"kids-01-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:19:\"kids-01-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"kids-01-320x320.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"kids-01-160x160.jpg\";s:5:\"width\";i:160;s:6:\"height\";i:160;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:19:\"kids-01-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"boldthemes_grid\";a:4:{s:4:\"file\";s:19:\"kids-01-540x540.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_11\";a:4:{s:4:\"file\";s:19:\"kids-01-540x540.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_21\";a:4:{s:4:\"file\";s:19:\"kids-01-800x540.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_12\";a:4:{s:4:\"file\";s:19:\"kids-01-540x800.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_latest_posts\";a:4:{s:4:\"file\";s:19:\"kids-01-320x240.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_grid_gallery\";a:4:{s:4:\"file\";s:19:\"kids-01-540x405.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:19:\"kids-01-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:19:\"kids-01-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:19:\"kids-01-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `smrc_postmeta` VALUES (184,788,'_wp_attached_file','2016/03/attractions-petco-park-07.jpg');
INSERT INTO `smrc_postmeta` VALUES (185,788,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:1200;s:4:\"file\";s:37:\"2016/03/attractions-petco-park-07.jpg\";s:5:\"sizes\";a:18:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:37:\"attractions-petco-park-07-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:37:\"attractions-petco-park-07-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:37:\"attractions-petco-park-07-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:37:\"attractions-petco-park-07-320x240.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:38:\"attractions-petco-park-07-1200x900.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:37:\"attractions-petco-park-07-160x160.jpg\";s:5:\"width\";i:160;s:6:\"height\";i:160;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:37:\"attractions-petco-park-07-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:39:\"attractions-petco-park-07-1536x1152.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"boldthemes_grid\";a:4:{s:4:\"file\";s:37:\"attractions-petco-park-07-540x405.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_11\";a:4:{s:4:\"file\";s:37:\"attractions-petco-park-07-540x540.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_22\";a:4:{s:4:\"file\";s:39:\"attractions-petco-park-07-1080x1080.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:1080;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_21\";a:4:{s:4:\"file\";s:38:\"attractions-petco-park-07-1080x540.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_12\";a:4:{s:4:\"file\";s:38:\"attractions-petco-park-07-540x1080.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:1080;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_latest_posts\";a:4:{s:4:\"file\";s:37:\"attractions-petco-park-07-320x240.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_grid_gallery\";a:4:{s:4:\"file\";s:37:\"attractions-petco-park-07-540x405.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:37:\"attractions-petco-park-07-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:37:\"attractions-petco-park-07-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:37:\"attractions-petco-park-07-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `smrc_postmeta` VALUES (186,793,'_wp_attached_file','2016/03/attractions-zoo-04.jpg');
INSERT INTO `smrc_postmeta` VALUES (187,793,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:1121;s:4:\"file\";s:30:\"2016/03/attractions-zoo-04.jpg\";s:5:\"sizes\";a:18:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:30:\"attractions-zoo-04-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:30:\"attractions-zoo-04-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:30:\"attractions-zoo-04-600x420.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:420;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:30:\"attractions-zoo-04-320x224.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:224;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:31:\"attractions-zoo-04-1200x841.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:841;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"attractions-zoo-04-160x160.jpg\";s:5:\"width\";i:160;s:6:\"height\";i:160;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:30:\"attractions-zoo-04-768x538.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:538;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:32:\"attractions-zoo-04-1536x1076.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1076;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"boldthemes_grid\";a:4:{s:4:\"file\";s:30:\"attractions-zoo-04-540x378.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:378;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_11\";a:4:{s:4:\"file\";s:30:\"attractions-zoo-04-540x540.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_22\";a:4:{s:4:\"file\";s:32:\"attractions-zoo-04-1080x1080.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:1080;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_21\";a:4:{s:4:\"file\";s:31:\"attractions-zoo-04-1080x540.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_12\";a:4:{s:4:\"file\";s:31:\"attractions-zoo-04-540x1080.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:1080;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_latest_posts\";a:4:{s:4:\"file\";s:30:\"attractions-zoo-04-320x240.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_grid_gallery\";a:4:{s:4:\"file\";s:30:\"attractions-zoo-04-540x405.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:30:\"attractions-zoo-04-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:30:\"attractions-zoo-04-600x420.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:420;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:30:\"attractions-zoo-04-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `smrc_postmeta` VALUES (188,460,'_wp_attached_file','2016/03/summer-hotel-04.jpg');
INSERT INTO `smrc_postmeta` VALUES (189,460,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:1000;s:4:\"file\";s:27:\"2016/03/summer-hotel-04.jpg\";s:5:\"sizes\";a:18:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:27:\"summer-hotel-04-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:27:\"summer-hotel-04-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:27:\"summer-hotel-04-600x375.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"summer-hotel-04-320x200.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:28:\"summer-hotel-04-1200x750.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:750;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"summer-hotel-04-160x160.jpg\";s:5:\"width\";i:160;s:6:\"height\";i:160;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:27:\"summer-hotel-04-768x480.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:28:\"summer-hotel-04-1536x960.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:960;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"boldthemes_grid\";a:4:{s:4:\"file\";s:27:\"summer-hotel-04-540x338.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:338;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_11\";a:4:{s:4:\"file\";s:27:\"summer-hotel-04-540x540.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_22\";a:4:{s:4:\"file\";s:29:\"summer-hotel-04-1080x1000.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_21\";a:4:{s:4:\"file\";s:28:\"summer-hotel-04-1080x540.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_12\";a:4:{s:4:\"file\";s:28:\"summer-hotel-04-540x1000.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_latest_posts\";a:4:{s:4:\"file\";s:27:\"summer-hotel-04-320x240.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_grid_gallery\";a:4:{s:4:\"file\";s:27:\"summer-hotel-04-540x405.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:27:\"summer-hotel-04-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:27:\"summer-hotel-04-600x375.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:27:\"summer-hotel-04-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `smrc_postmeta` VALUES (190,459,'_wp_attached_file','2016/03/summer-hotel-03.jpg');
INSERT INTO `smrc_postmeta` VALUES (191,459,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:1000;s:4:\"file\";s:27:\"2016/03/summer-hotel-03.jpg\";s:5:\"sizes\";a:18:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:27:\"summer-hotel-03-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:27:\"summer-hotel-03-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:27:\"summer-hotel-03-600x375.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"summer-hotel-03-320x200.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:28:\"summer-hotel-03-1200x750.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:750;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"summer-hotel-03-160x160.jpg\";s:5:\"width\";i:160;s:6:\"height\";i:160;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:27:\"summer-hotel-03-768x480.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:28:\"summer-hotel-03-1536x960.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:960;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"boldthemes_grid\";a:4:{s:4:\"file\";s:27:\"summer-hotel-03-540x338.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:338;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_11\";a:4:{s:4:\"file\";s:27:\"summer-hotel-03-540x540.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_22\";a:4:{s:4:\"file\";s:29:\"summer-hotel-03-1080x1000.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_21\";a:4:{s:4:\"file\";s:28:\"summer-hotel-03-1080x540.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_12\";a:4:{s:4:\"file\";s:28:\"summer-hotel-03-540x1000.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_latest_posts\";a:4:{s:4:\"file\";s:27:\"summer-hotel-03-320x240.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_grid_gallery\";a:4:{s:4:\"file\";s:27:\"summer-hotel-03-540x405.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:27:\"summer-hotel-03-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:27:\"summer-hotel-03-600x375.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:27:\"summer-hotel-03-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `smrc_postmeta` VALUES (192,458,'_wp_attached_file','2016/03/summer-hotel-02.jpg');
INSERT INTO `smrc_postmeta` VALUES (193,458,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:1000;s:4:\"file\";s:27:\"2016/03/summer-hotel-02.jpg\";s:5:\"sizes\";a:18:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:27:\"summer-hotel-02-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:27:\"summer-hotel-02-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:27:\"summer-hotel-02-600x375.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"summer-hotel-02-320x200.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:28:\"summer-hotel-02-1200x750.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:750;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"summer-hotel-02-160x160.jpg\";s:5:\"width\";i:160;s:6:\"height\";i:160;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:27:\"summer-hotel-02-768x480.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:28:\"summer-hotel-02-1536x960.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:960;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"boldthemes_grid\";a:4:{s:4:\"file\";s:27:\"summer-hotel-02-540x338.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:338;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_11\";a:4:{s:4:\"file\";s:27:\"summer-hotel-02-540x540.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_22\";a:4:{s:4:\"file\";s:29:\"summer-hotel-02-1080x1000.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_21\";a:4:{s:4:\"file\";s:28:\"summer-hotel-02-1080x540.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_12\";a:4:{s:4:\"file\";s:28:\"summer-hotel-02-540x1000.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_latest_posts\";a:4:{s:4:\"file\";s:27:\"summer-hotel-02-320x240.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_grid_gallery\";a:4:{s:4:\"file\";s:27:\"summer-hotel-02-540x405.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:27:\"summer-hotel-02-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:27:\"summer-hotel-02-600x375.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:27:\"summer-hotel-02-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `smrc_postmeta` VALUES (194,461,'_wp_attached_file','2016/03/summer-hotel-05.jpg');
INSERT INTO `smrc_postmeta` VALUES (195,461,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:1000;s:4:\"file\";s:27:\"2016/03/summer-hotel-05.jpg\";s:5:\"sizes\";a:18:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:27:\"summer-hotel-05-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:27:\"summer-hotel-05-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:27:\"summer-hotel-05-600x375.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"summer-hotel-05-320x200.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:28:\"summer-hotel-05-1200x750.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:750;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"summer-hotel-05-160x160.jpg\";s:5:\"width\";i:160;s:6:\"height\";i:160;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:27:\"summer-hotel-05-768x480.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:28:\"summer-hotel-05-1536x960.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:960;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"boldthemes_grid\";a:4:{s:4:\"file\";s:27:\"summer-hotel-05-540x338.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:338;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_11\";a:4:{s:4:\"file\";s:27:\"summer-hotel-05-540x540.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_22\";a:4:{s:4:\"file\";s:29:\"summer-hotel-05-1080x1000.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_21\";a:4:{s:4:\"file\";s:28:\"summer-hotel-05-1080x540.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_12\";a:4:{s:4:\"file\";s:28:\"summer-hotel-05-540x1000.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_latest_posts\";a:4:{s:4:\"file\";s:27:\"summer-hotel-05-320x240.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_grid_gallery\";a:4:{s:4:\"file\";s:27:\"summer-hotel-05-540x405.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:27:\"summer-hotel-05-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:27:\"summer-hotel-05-600x375.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:27:\"summer-hotel-05-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `smrc_postmeta` VALUES (196,462,'_wp_attached_file','2016/03/summer-hotel-06.jpg');
INSERT INTO `smrc_postmeta` VALUES (197,462,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:1000;s:4:\"file\";s:27:\"2016/03/summer-hotel-06.jpg\";s:5:\"sizes\";a:18:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:27:\"summer-hotel-06-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:27:\"summer-hotel-06-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:27:\"summer-hotel-06-600x375.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"summer-hotel-06-320x200.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:28:\"summer-hotel-06-1200x750.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:750;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"summer-hotel-06-160x160.jpg\";s:5:\"width\";i:160;s:6:\"height\";i:160;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:27:\"summer-hotel-06-768x480.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:28:\"summer-hotel-06-1536x960.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:960;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"boldthemes_grid\";a:4:{s:4:\"file\";s:27:\"summer-hotel-06-540x338.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:338;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_11\";a:4:{s:4:\"file\";s:27:\"summer-hotel-06-540x540.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_22\";a:4:{s:4:\"file\";s:29:\"summer-hotel-06-1080x1000.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_21\";a:4:{s:4:\"file\";s:28:\"summer-hotel-06-1080x540.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_12\";a:4:{s:4:\"file\";s:28:\"summer-hotel-06-540x1000.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_latest_posts\";a:4:{s:4:\"file\";s:27:\"summer-hotel-06-320x240.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_grid_gallery\";a:4:{s:4:\"file\";s:27:\"summer-hotel-06-540x405.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:27:\"summer-hotel-06-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:27:\"summer-hotel-06-600x375.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:27:\"summer-hotel-06-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `smrc_postmeta` VALUES (198,464,'_wp_attached_file','2016/03/summer-hotel-08.jpg');
INSERT INTO `smrc_postmeta` VALUES (199,464,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:1000;s:4:\"file\";s:27:\"2016/03/summer-hotel-08.jpg\";s:5:\"sizes\";a:18:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:27:\"summer-hotel-08-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:27:\"summer-hotel-08-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:27:\"summer-hotel-08-600x375.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"summer-hotel-08-320x200.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:28:\"summer-hotel-08-1200x750.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:750;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"summer-hotel-08-160x160.jpg\";s:5:\"width\";i:160;s:6:\"height\";i:160;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:27:\"summer-hotel-08-768x480.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:28:\"summer-hotel-08-1536x960.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:960;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"boldthemes_grid\";a:4:{s:4:\"file\";s:27:\"summer-hotel-08-540x338.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:338;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_11\";a:4:{s:4:\"file\";s:27:\"summer-hotel-08-540x540.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_22\";a:4:{s:4:\"file\";s:29:\"summer-hotel-08-1080x1000.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_21\";a:4:{s:4:\"file\";s:28:\"summer-hotel-08-1080x540.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_12\";a:4:{s:4:\"file\";s:28:\"summer-hotel-08-540x1000.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_latest_posts\";a:4:{s:4:\"file\";s:27:\"summer-hotel-08-320x240.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_grid_gallery\";a:4:{s:4:\"file\";s:27:\"summer-hotel-08-540x405.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:27:\"summer-hotel-08-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:27:\"summer-hotel-08-600x375.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:27:\"summer-hotel-08-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `smrc_postmeta` VALUES (200,463,'_wp_attached_file','2016/03/summer-hotel-07.jpg');
INSERT INTO `smrc_postmeta` VALUES (201,463,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:1000;s:4:\"file\";s:27:\"2016/03/summer-hotel-07.jpg\";s:5:\"sizes\";a:18:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:27:\"summer-hotel-07-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:27:\"summer-hotel-07-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:27:\"summer-hotel-07-600x375.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"summer-hotel-07-320x200.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:28:\"summer-hotel-07-1200x750.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:750;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"summer-hotel-07-160x160.jpg\";s:5:\"width\";i:160;s:6:\"height\";i:160;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:27:\"summer-hotel-07-768x480.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:28:\"summer-hotel-07-1536x960.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:960;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"boldthemes_grid\";a:4:{s:4:\"file\";s:27:\"summer-hotel-07-540x338.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:338;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_11\";a:4:{s:4:\"file\";s:27:\"summer-hotel-07-540x540.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_22\";a:4:{s:4:\"file\";s:29:\"summer-hotel-07-1080x1000.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_21\";a:4:{s:4:\"file\";s:28:\"summer-hotel-07-1080x540.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_12\";a:4:{s:4:\"file\";s:28:\"summer-hotel-07-540x1000.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_latest_posts\";a:4:{s:4:\"file\";s:27:\"summer-hotel-07-320x240.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_grid_gallery\";a:4:{s:4:\"file\";s:27:\"summer-hotel-07-540x405.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:27:\"summer-hotel-07-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:27:\"summer-hotel-07-600x375.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:27:\"summer-hotel-07-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `smrc_postmeta` VALUES (202,457,'_wp_attached_file','2016/03/summer-hotel-01.jpg');
INSERT INTO `smrc_postmeta` VALUES (203,457,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:1000;s:4:\"file\";s:27:\"2016/03/summer-hotel-01.jpg\";s:5:\"sizes\";a:18:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:27:\"summer-hotel-01-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:27:\"summer-hotel-01-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:27:\"summer-hotel-01-600x375.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"summer-hotel-01-320x200.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:28:\"summer-hotel-01-1200x750.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:750;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"summer-hotel-01-160x160.jpg\";s:5:\"width\";i:160;s:6:\"height\";i:160;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:27:\"summer-hotel-01-768x480.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:28:\"summer-hotel-01-1536x960.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:960;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"boldthemes_grid\";a:4:{s:4:\"file\";s:27:\"summer-hotel-01-540x338.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:338;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_11\";a:4:{s:4:\"file\";s:27:\"summer-hotel-01-540x540.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_22\";a:4:{s:4:\"file\";s:29:\"summer-hotel-01-1080x1000.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_21\";a:4:{s:4:\"file\";s:28:\"summer-hotel-01-1080x540.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_12\";a:4:{s:4:\"file\";s:28:\"summer-hotel-01-540x1000.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_latest_posts\";a:4:{s:4:\"file\";s:27:\"summer-hotel-01-320x240.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_grid_gallery\";a:4:{s:4:\"file\";s:27:\"summer-hotel-01-540x405.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:27:\"summer-hotel-01-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:27:\"summer-hotel-01-600x375.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:27:\"summer-hotel-01-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `smrc_postmeta` VALUES (204,454,'_wp_attached_file','2016/02/lazy-weekend-1.jpg');
INSERT INTO `smrc_postmeta` VALUES (205,454,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2500;s:6:\"height\";i:1498;s:4:\"file\";s:26:\"2016/02/lazy-weekend-1.jpg\";s:5:\"sizes\";a:19:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:26:\"lazy-weekend-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:26:\"lazy-weekend-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:26:\"lazy-weekend-1-600x360.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"lazy-weekend-1-320x192.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:192;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:27:\"lazy-weekend-1-1200x719.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:719;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"lazy-weekend-1-160x160.jpg\";s:5:\"width\";i:160;s:6:\"height\";i:160;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:26:\"lazy-weekend-1-768x460.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:460;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:27:\"lazy-weekend-1-1536x920.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:920;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:28:\"lazy-weekend-1-2048x1227.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1227;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"boldthemes_grid\";a:4:{s:4:\"file\";s:26:\"lazy-weekend-1-540x324.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:324;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_11\";a:4:{s:4:\"file\";s:26:\"lazy-weekend-1-540x540.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_22\";a:4:{s:4:\"file\";s:28:\"lazy-weekend-1-1080x1080.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:1080;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_21\";a:4:{s:4:\"file\";s:27:\"lazy-weekend-1-1080x540.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_12\";a:4:{s:4:\"file\";s:27:\"lazy-weekend-1-540x1080.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:1080;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_latest_posts\";a:4:{s:4:\"file\";s:26:\"lazy-weekend-1-320x240.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_grid_gallery\";a:4:{s:4:\"file\";s:26:\"lazy-weekend-1-540x405.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:26:\"lazy-weekend-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:26:\"lazy-weekend-1-600x360.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:26:\"lazy-weekend-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `smrc_postmeta` VALUES (206,446,'_wp_attached_file','2016/02/summer-testimonial-3.jpg');
INSERT INTO `smrc_postmeta` VALUES (207,446,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:336;s:6:\"height\";i:336;s:4:\"file\";s:32:\"2016/02/summer-testimonial-3.jpg\";s:5:\"sizes\";a:7:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:32:\"summer-testimonial-3-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:32:\"summer-testimonial-3-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"summer-testimonial-3-320x320.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"summer-testimonial-3-160x160.jpg\";s:5:\"width\";i:160;s:6:\"height\";i:160;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_latest_posts\";a:4:{s:4:\"file\";s:32:\"summer-testimonial-3-320x240.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:32:\"summer-testimonial-3-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:32:\"summer-testimonial-3-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `smrc_postmeta` VALUES (208,378,'_wp_attached_file','2016/02/summer-single-room-8.jpg');
INSERT INTO `smrc_postmeta` VALUES (209,378,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1180;s:6:\"height\";i:737;s:4:\"file\";s:32:\"2016/02/summer-single-room-8.jpg\";s:5:\"sizes\";a:16:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:32:\"summer-single-room-8-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:32:\"summer-single-room-8-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:32:\"summer-single-room-8-600x375.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"summer-single-room-8-320x200.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"summer-single-room-8-160x160.jpg\";s:5:\"width\";i:160;s:6:\"height\";i:160;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:32:\"summer-single-room-8-768x480.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"boldthemes_grid\";a:4:{s:4:\"file\";s:32:\"summer-single-room-8-540x337.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:337;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_11\";a:4:{s:4:\"file\";s:32:\"summer-single-room-8-540x540.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_22\";a:4:{s:4:\"file\";s:33:\"summer-single-room-8-1080x737.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:737;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_21\";a:4:{s:4:\"file\";s:33:\"summer-single-room-8-1080x540.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_12\";a:4:{s:4:\"file\";s:32:\"summer-single-room-8-540x737.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:737;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_latest_posts\";a:4:{s:4:\"file\";s:32:\"summer-single-room-8-320x240.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_grid_gallery\";a:4:{s:4:\"file\";s:32:\"summer-single-room-8-540x405.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:32:\"summer-single-room-8-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:32:\"summer-single-room-8-600x375.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:32:\"summer-single-room-8-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `smrc_postmeta` VALUES (210,377,'_wp_attached_file','2016/02/summer-single-room-7.jpg');
INSERT INTO `smrc_postmeta` VALUES (211,377,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1180;s:6:\"height\";i:737;s:4:\"file\";s:32:\"2016/02/summer-single-room-7.jpg\";s:5:\"sizes\";a:16:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:32:\"summer-single-room-7-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:32:\"summer-single-room-7-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:32:\"summer-single-room-7-600x375.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"summer-single-room-7-320x200.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"summer-single-room-7-160x160.jpg\";s:5:\"width\";i:160;s:6:\"height\";i:160;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:32:\"summer-single-room-7-768x480.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"boldthemes_grid\";a:4:{s:4:\"file\";s:32:\"summer-single-room-7-540x337.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:337;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_11\";a:4:{s:4:\"file\";s:32:\"summer-single-room-7-540x540.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_22\";a:4:{s:4:\"file\";s:33:\"summer-single-room-7-1080x737.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:737;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_21\";a:4:{s:4:\"file\";s:33:\"summer-single-room-7-1080x540.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_12\";a:4:{s:4:\"file\";s:32:\"summer-single-room-7-540x737.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:737;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_latest_posts\";a:4:{s:4:\"file\";s:32:\"summer-single-room-7-320x240.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_grid_gallery\";a:4:{s:4:\"file\";s:32:\"summer-single-room-7-540x405.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:32:\"summer-single-room-7-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:32:\"summer-single-room-7-600x375.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:32:\"summer-single-room-7-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `smrc_postmeta` VALUES (212,447,'_wp_attached_file','2016/02/summer-testimonial-2.jpg');
INSERT INTO `smrc_postmeta` VALUES (213,447,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:336;s:6:\"height\";i:336;s:4:\"file\";s:32:\"2016/02/summer-testimonial-2.jpg\";s:5:\"sizes\";a:7:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:32:\"summer-testimonial-2-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:32:\"summer-testimonial-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"summer-testimonial-2-320x320.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"summer-testimonial-2-160x160.jpg\";s:5:\"width\";i:160;s:6:\"height\";i:160;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_latest_posts\";a:4:{s:4:\"file\";s:32:\"summer-testimonial-2-320x240.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:32:\"summer-testimonial-2-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:32:\"summer-testimonial-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `smrc_postmeta` VALUES (214,451,'_wp_attached_file','2016/02/wedding.jpg');
INSERT INTO `smrc_postmeta` VALUES (215,451,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2500;s:6:\"height\";i:1498;s:4:\"file\";s:19:\"2016/02/wedding.jpg\";s:5:\"sizes\";a:19:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:19:\"wedding-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:19:\"wedding-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:19:\"wedding-600x360.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"wedding-320x192.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:192;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:20:\"wedding-1200x719.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:719;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"wedding-160x160.jpg\";s:5:\"width\";i:160;s:6:\"height\";i:160;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:19:\"wedding-768x460.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:460;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:20:\"wedding-1536x920.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:920;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:21:\"wedding-2048x1227.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1227;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"boldthemes_grid\";a:4:{s:4:\"file\";s:19:\"wedding-540x324.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:324;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_11\";a:4:{s:4:\"file\";s:19:\"wedding-540x540.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_22\";a:4:{s:4:\"file\";s:21:\"wedding-1080x1080.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:1080;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_21\";a:4:{s:4:\"file\";s:20:\"wedding-1080x540.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_12\";a:4:{s:4:\"file\";s:20:\"wedding-540x1080.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:1080;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_latest_posts\";a:4:{s:4:\"file\";s:19:\"wedding-320x240.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_grid_gallery\";a:4:{s:4:\"file\";s:19:\"wedding-540x405.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:19:\"wedding-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:19:\"wedding-600x360.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:19:\"wedding-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `smrc_postmeta` VALUES (216,453,'_wp_attached_file','2016/02/family-1.jpg');
INSERT INTO `smrc_postmeta` VALUES (217,453,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2500;s:6:\"height\";i:1498;s:4:\"file\";s:20:\"2016/02/family-1.jpg\";s:5:\"sizes\";a:19:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:20:\"family-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:20:\"family-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:20:\"family-1-600x360.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"family-1-320x192.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:192;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"family-1-1200x719.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:719;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"family-1-160x160.jpg\";s:5:\"width\";i:160;s:6:\"height\";i:160;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:20:\"family-1-768x460.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:460;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:21:\"family-1-1536x920.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:920;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:22:\"family-1-2048x1227.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1227;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"boldthemes_grid\";a:4:{s:4:\"file\";s:20:\"family-1-540x324.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:324;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_11\";a:4:{s:4:\"file\";s:20:\"family-1-540x540.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_22\";a:4:{s:4:\"file\";s:22:\"family-1-1080x1080.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:1080;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_21\";a:4:{s:4:\"file\";s:21:\"family-1-1080x540.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_12\";a:4:{s:4:\"file\";s:21:\"family-1-540x1080.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:1080;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_latest_posts\";a:4:{s:4:\"file\";s:20:\"family-1-320x240.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_grid_gallery\";a:4:{s:4:\"file\";s:20:\"family-1-540x405.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:20:\"family-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:20:\"family-1-600x360.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:20:\"family-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `smrc_postmeta` VALUES (218,465,'_wp_attached_file','2016/03/summer-hotel-09.jpg');
INSERT INTO `smrc_postmeta` VALUES (219,465,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:1000;s:4:\"file\";s:27:\"2016/03/summer-hotel-09.jpg\";s:5:\"sizes\";a:18:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:27:\"summer-hotel-09-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:27:\"summer-hotel-09-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:27:\"summer-hotel-09-600x375.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"summer-hotel-09-320x200.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:28:\"summer-hotel-09-1200x750.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:750;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"summer-hotel-09-160x160.jpg\";s:5:\"width\";i:160;s:6:\"height\";i:160;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:27:\"summer-hotel-09-768x480.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:28:\"summer-hotel-09-1536x960.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:960;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"boldthemes_grid\";a:4:{s:4:\"file\";s:27:\"summer-hotel-09-540x338.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:338;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_11\";a:4:{s:4:\"file\";s:27:\"summer-hotel-09-540x540.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_22\";a:4:{s:4:\"file\";s:29:\"summer-hotel-09-1080x1000.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_21\";a:4:{s:4:\"file\";s:28:\"summer-hotel-09-1080x540.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_12\";a:4:{s:4:\"file\";s:28:\"summer-hotel-09-540x1000.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_latest_posts\";a:4:{s:4:\"file\";s:27:\"summer-hotel-09-320x240.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_grid_gallery\";a:4:{s:4:\"file\";s:27:\"summer-hotel-09-540x405.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:27:\"summer-hotel-09-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:27:\"summer-hotel-09-600x375.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:27:\"summer-hotel-09-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `smrc_postmeta` VALUES (220,466,'_wp_attached_file','2016/03/summer-hotel-10.jpg');
INSERT INTO `smrc_postmeta` VALUES (221,466,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:1000;s:4:\"file\";s:27:\"2016/03/summer-hotel-10.jpg\";s:5:\"sizes\";a:18:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:27:\"summer-hotel-10-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:27:\"summer-hotel-10-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:27:\"summer-hotel-10-600x375.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"summer-hotel-10-320x200.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:28:\"summer-hotel-10-1200x750.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:750;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"summer-hotel-10-160x160.jpg\";s:5:\"width\";i:160;s:6:\"height\";i:160;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:27:\"summer-hotel-10-768x480.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:28:\"summer-hotel-10-1536x960.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:960;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"boldthemes_grid\";a:4:{s:4:\"file\";s:27:\"summer-hotel-10-540x338.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:338;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_11\";a:4:{s:4:\"file\";s:27:\"summer-hotel-10-540x540.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_22\";a:4:{s:4:\"file\";s:29:\"summer-hotel-10-1080x1000.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_21\";a:4:{s:4:\"file\";s:28:\"summer-hotel-10-1080x540.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_12\";a:4:{s:4:\"file\";s:28:\"summer-hotel-10-540x1000.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_latest_posts\";a:4:{s:4:\"file\";s:27:\"summer-hotel-10-320x240.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_grid_gallery\";a:4:{s:4:\"file\";s:27:\"summer-hotel-10-540x405.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:27:\"summer-hotel-10-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:27:\"summer-hotel-10-600x375.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:27:\"summer-hotel-10-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `smrc_postmeta` VALUES (222,478,'_wp_attached_file','2016/03/summer-activities-07.jpg');
INSERT INTO `smrc_postmeta` VALUES (223,478,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:1000;s:4:\"file\";s:32:\"2016/03/summer-activities-07.jpg\";s:5:\"sizes\";a:18:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:32:\"summer-activities-07-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:32:\"summer-activities-07-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:32:\"summer-activities-07-600x375.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"summer-activities-07-320x200.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:33:\"summer-activities-07-1200x750.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:750;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"summer-activities-07-160x160.jpg\";s:5:\"width\";i:160;s:6:\"height\";i:160;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:32:\"summer-activities-07-768x480.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:33:\"summer-activities-07-1536x960.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:960;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"boldthemes_grid\";a:4:{s:4:\"file\";s:32:\"summer-activities-07-540x338.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:338;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_11\";a:4:{s:4:\"file\";s:32:\"summer-activities-07-540x540.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_22\";a:4:{s:4:\"file\";s:34:\"summer-activities-07-1080x1000.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_21\";a:4:{s:4:\"file\";s:33:\"summer-activities-07-1080x540.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_12\";a:4:{s:4:\"file\";s:33:\"summer-activities-07-540x1000.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_latest_posts\";a:4:{s:4:\"file\";s:32:\"summer-activities-07-320x240.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_grid_gallery\";a:4:{s:4:\"file\";s:32:\"summer-activities-07-540x405.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:32:\"summer-activities-07-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:32:\"summer-activities-07-600x375.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:32:\"summer-activities-07-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `smrc_postmeta` VALUES (224,477,'_wp_attached_file','2016/03/summer-activities-06.jpg');
INSERT INTO `smrc_postmeta` VALUES (225,477,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:1000;s:4:\"file\";s:32:\"2016/03/summer-activities-06.jpg\";s:5:\"sizes\";a:18:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:32:\"summer-activities-06-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:32:\"summer-activities-06-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:32:\"summer-activities-06-600x375.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"summer-activities-06-320x200.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:33:\"summer-activities-06-1200x750.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:750;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"summer-activities-06-160x160.jpg\";s:5:\"width\";i:160;s:6:\"height\";i:160;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:32:\"summer-activities-06-768x480.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:33:\"summer-activities-06-1536x960.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:960;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"boldthemes_grid\";a:4:{s:4:\"file\";s:32:\"summer-activities-06-540x338.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:338;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_11\";a:4:{s:4:\"file\";s:32:\"summer-activities-06-540x540.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_22\";a:4:{s:4:\"file\";s:34:\"summer-activities-06-1080x1000.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_21\";a:4:{s:4:\"file\";s:33:\"summer-activities-06-1080x540.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_12\";a:4:{s:4:\"file\";s:33:\"summer-activities-06-540x1000.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_latest_posts\";a:4:{s:4:\"file\";s:32:\"summer-activities-06-320x240.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_grid_gallery\";a:4:{s:4:\"file\";s:32:\"summer-activities-06-540x405.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:32:\"summer-activities-06-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:32:\"summer-activities-06-600x375.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:32:\"summer-activities-06-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `smrc_postmeta` VALUES (226,476,'_wp_attached_file','2016/03/summer-activities-05.jpg');
INSERT INTO `smrc_postmeta` VALUES (227,476,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:1000;s:4:\"file\";s:32:\"2016/03/summer-activities-05.jpg\";s:5:\"sizes\";a:18:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:32:\"summer-activities-05-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:32:\"summer-activities-05-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:32:\"summer-activities-05-600x375.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"summer-activities-05-320x200.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:33:\"summer-activities-05-1200x750.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:750;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"summer-activities-05-160x160.jpg\";s:5:\"width\";i:160;s:6:\"height\";i:160;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:32:\"summer-activities-05-768x480.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:33:\"summer-activities-05-1536x960.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:960;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"boldthemes_grid\";a:4:{s:4:\"file\";s:32:\"summer-activities-05-540x338.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:338;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_11\";a:4:{s:4:\"file\";s:32:\"summer-activities-05-540x540.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_22\";a:4:{s:4:\"file\";s:34:\"summer-activities-05-1080x1000.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_21\";a:4:{s:4:\"file\";s:33:\"summer-activities-05-1080x540.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_12\";a:4:{s:4:\"file\";s:33:\"summer-activities-05-540x1000.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_latest_posts\";a:4:{s:4:\"file\";s:32:\"summer-activities-05-320x240.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_grid_gallery\";a:4:{s:4:\"file\";s:32:\"summer-activities-05-540x405.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:32:\"summer-activities-05-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:32:\"summer-activities-05-600x375.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:32:\"summer-activities-05-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `smrc_postmeta` VALUES (228,479,'_wp_attached_file','2016/03/summer-room-00.jpg');
INSERT INTO `smrc_postmeta` VALUES (229,479,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:1000;s:4:\"file\";s:26:\"2016/03/summer-room-00.jpg\";s:5:\"sizes\";a:18:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:26:\"summer-room-00-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:26:\"summer-room-00-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:26:\"summer-room-00-600x375.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"summer-room-00-320x200.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:27:\"summer-room-00-1200x750.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:750;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"summer-room-00-160x160.jpg\";s:5:\"width\";i:160;s:6:\"height\";i:160;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:26:\"summer-room-00-768x480.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:27:\"summer-room-00-1536x960.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:960;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"boldthemes_grid\";a:4:{s:4:\"file\";s:26:\"summer-room-00-540x338.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:338;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_11\";a:4:{s:4:\"file\";s:26:\"summer-room-00-540x540.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_22\";a:4:{s:4:\"file\";s:28:\"summer-room-00-1080x1000.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_21\";a:4:{s:4:\"file\";s:27:\"summer-room-00-1080x540.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_12\";a:4:{s:4:\"file\";s:27:\"summer-room-00-540x1000.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_latest_posts\";a:4:{s:4:\"file\";s:26:\"summer-room-00-320x240.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_grid_gallery\";a:4:{s:4:\"file\";s:26:\"summer-room-00-540x405.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:26:\"summer-room-00-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:26:\"summer-room-00-600x375.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:26:\"summer-room-00-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `smrc_postmeta` VALUES (230,480,'_wp_attached_file','2016/03/summer-room-01.jpg');
INSERT INTO `smrc_postmeta` VALUES (231,480,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:1000;s:4:\"file\";s:26:\"2016/03/summer-room-01.jpg\";s:5:\"sizes\";a:18:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:26:\"summer-room-01-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:26:\"summer-room-01-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:26:\"summer-room-01-600x375.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"summer-room-01-320x200.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:27:\"summer-room-01-1200x750.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:750;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"summer-room-01-160x160.jpg\";s:5:\"width\";i:160;s:6:\"height\";i:160;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:26:\"summer-room-01-768x480.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:27:\"summer-room-01-1536x960.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:960;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"boldthemes_grid\";a:4:{s:4:\"file\";s:26:\"summer-room-01-540x338.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:338;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_11\";a:4:{s:4:\"file\";s:26:\"summer-room-01-540x540.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_22\";a:4:{s:4:\"file\";s:28:\"summer-room-01-1080x1000.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_21\";a:4:{s:4:\"file\";s:27:\"summer-room-01-1080x540.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_12\";a:4:{s:4:\"file\";s:27:\"summer-room-01-540x1000.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_latest_posts\";a:4:{s:4:\"file\";s:26:\"summer-room-01-320x240.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_grid_gallery\";a:4:{s:4:\"file\";s:26:\"summer-room-01-540x405.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:26:\"summer-room-01-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:26:\"summer-room-01-600x375.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:26:\"summer-room-01-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `smrc_postmeta` VALUES (232,482,'_wp_attached_file','2016/03/summer-room-03.jpg');
INSERT INTO `smrc_postmeta` VALUES (233,482,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:1000;s:4:\"file\";s:26:\"2016/03/summer-room-03.jpg\";s:5:\"sizes\";a:18:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:26:\"summer-room-03-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:26:\"summer-room-03-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:26:\"summer-room-03-600x375.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"summer-room-03-320x200.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:27:\"summer-room-03-1200x750.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:750;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"summer-room-03-160x160.jpg\";s:5:\"width\";i:160;s:6:\"height\";i:160;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:26:\"summer-room-03-768x480.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:27:\"summer-room-03-1536x960.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:960;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"boldthemes_grid\";a:4:{s:4:\"file\";s:26:\"summer-room-03-540x338.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:338;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_11\";a:4:{s:4:\"file\";s:26:\"summer-room-03-540x540.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_22\";a:4:{s:4:\"file\";s:28:\"summer-room-03-1080x1000.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_21\";a:4:{s:4:\"file\";s:27:\"summer-room-03-1080x540.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_12\";a:4:{s:4:\"file\";s:27:\"summer-room-03-540x1000.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_latest_posts\";a:4:{s:4:\"file\";s:26:\"summer-room-03-320x240.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_grid_gallery\";a:4:{s:4:\"file\";s:26:\"summer-room-03-540x405.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:26:\"summer-room-03-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:26:\"summer-room-03-600x375.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:26:\"summer-room-03-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `smrc_postmeta` VALUES (234,481,'_wp_attached_file','2016/03/summer-room-02.jpg');
INSERT INTO `smrc_postmeta` VALUES (235,481,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:1000;s:4:\"file\";s:26:\"2016/03/summer-room-02.jpg\";s:5:\"sizes\";a:18:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:26:\"summer-room-02-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:26:\"summer-room-02-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:26:\"summer-room-02-600x375.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"summer-room-02-320x200.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:27:\"summer-room-02-1200x750.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:750;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"summer-room-02-160x160.jpg\";s:5:\"width\";i:160;s:6:\"height\";i:160;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:26:\"summer-room-02-768x480.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:27:\"summer-room-02-1536x960.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:960;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"boldthemes_grid\";a:4:{s:4:\"file\";s:26:\"summer-room-02-540x338.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:338;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_11\";a:4:{s:4:\"file\";s:26:\"summer-room-02-540x540.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_22\";a:4:{s:4:\"file\";s:28:\"summer-room-02-1080x1000.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_21\";a:4:{s:4:\"file\";s:27:\"summer-room-02-1080x540.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_12\";a:4:{s:4:\"file\";s:27:\"summer-room-02-540x1000.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_latest_posts\";a:4:{s:4:\"file\";s:26:\"summer-room-02-320x240.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_grid_gallery\";a:4:{s:4:\"file\";s:26:\"summer-room-02-540x405.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:26:\"summer-room-02-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:26:\"summer-room-02-600x375.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:26:\"summer-room-02-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `smrc_postmeta` VALUES (236,475,'_wp_attached_file','2016/03/summer-activities-04.jpg');
INSERT INTO `smrc_postmeta` VALUES (237,475,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:1000;s:4:\"file\";s:32:\"2016/03/summer-activities-04.jpg\";s:5:\"sizes\";a:18:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:32:\"summer-activities-04-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:32:\"summer-activities-04-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:32:\"summer-activities-04-600x375.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"summer-activities-04-320x200.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:33:\"summer-activities-04-1200x750.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:750;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"summer-activities-04-160x160.jpg\";s:5:\"width\";i:160;s:6:\"height\";i:160;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:32:\"summer-activities-04-768x480.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:33:\"summer-activities-04-1536x960.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:960;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"boldthemes_grid\";a:4:{s:4:\"file\";s:32:\"summer-activities-04-540x338.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:338;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_11\";a:4:{s:4:\"file\";s:32:\"summer-activities-04-540x540.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_22\";a:4:{s:4:\"file\";s:34:\"summer-activities-04-1080x1000.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_21\";a:4:{s:4:\"file\";s:33:\"summer-activities-04-1080x540.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_12\";a:4:{s:4:\"file\";s:33:\"summer-activities-04-540x1000.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_latest_posts\";a:4:{s:4:\"file\";s:32:\"summer-activities-04-320x240.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_grid_gallery\";a:4:{s:4:\"file\";s:32:\"summer-activities-04-540x405.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:32:\"summer-activities-04-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:32:\"summer-activities-04-600x375.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:32:\"summer-activities-04-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `smrc_postmeta` VALUES (238,474,'_wp_attached_file','2016/03/summer-activities-03.jpg');
INSERT INTO `smrc_postmeta` VALUES (239,474,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:1000;s:4:\"file\";s:32:\"2016/03/summer-activities-03.jpg\";s:5:\"sizes\";a:18:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:32:\"summer-activities-03-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:32:\"summer-activities-03-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:32:\"summer-activities-03-600x375.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"summer-activities-03-320x200.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:33:\"summer-activities-03-1200x750.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:750;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"summer-activities-03-160x160.jpg\";s:5:\"width\";i:160;s:6:\"height\";i:160;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:32:\"summer-activities-03-768x480.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:33:\"summer-activities-03-1536x960.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:960;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"boldthemes_grid\";a:4:{s:4:\"file\";s:32:\"summer-activities-03-540x338.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:338;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_11\";a:4:{s:4:\"file\";s:32:\"summer-activities-03-540x540.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_22\";a:4:{s:4:\"file\";s:34:\"summer-activities-03-1080x1000.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_21\";a:4:{s:4:\"file\";s:33:\"summer-activities-03-1080x540.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_12\";a:4:{s:4:\"file\";s:33:\"summer-activities-03-540x1000.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_latest_posts\";a:4:{s:4:\"file\";s:32:\"summer-activities-03-320x240.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_grid_gallery\";a:4:{s:4:\"file\";s:32:\"summer-activities-03-540x405.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:32:\"summer-activities-03-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:32:\"summer-activities-03-600x375.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:32:\"summer-activities-03-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `smrc_postmeta` VALUES (240,469,'_wp_attached_file','2016/03/summer-beach-03.jpg');
INSERT INTO `smrc_postmeta` VALUES (241,469,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:1000;s:4:\"file\";s:27:\"2016/03/summer-beach-03.jpg\";s:5:\"sizes\";a:18:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:27:\"summer-beach-03-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:27:\"summer-beach-03-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:27:\"summer-beach-03-600x375.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"summer-beach-03-320x200.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:28:\"summer-beach-03-1200x750.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:750;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"summer-beach-03-160x160.jpg\";s:5:\"width\";i:160;s:6:\"height\";i:160;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:27:\"summer-beach-03-768x480.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:28:\"summer-beach-03-1536x960.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:960;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"boldthemes_grid\";a:4:{s:4:\"file\";s:27:\"summer-beach-03-540x338.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:338;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_11\";a:4:{s:4:\"file\";s:27:\"summer-beach-03-540x540.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_22\";a:4:{s:4:\"file\";s:29:\"summer-beach-03-1080x1000.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_21\";a:4:{s:4:\"file\";s:28:\"summer-beach-03-1080x540.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_12\";a:4:{s:4:\"file\";s:28:\"summer-beach-03-540x1000.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_latest_posts\";a:4:{s:4:\"file\";s:27:\"summer-beach-03-320x240.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_grid_gallery\";a:4:{s:4:\"file\";s:27:\"summer-beach-03-540x405.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:27:\"summer-beach-03-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:27:\"summer-beach-03-600x375.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:27:\"summer-beach-03-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `smrc_postmeta` VALUES (242,468,'_wp_attached_file','2016/03/summer-beach-02.jpg');
INSERT INTO `smrc_postmeta` VALUES (243,468,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:1000;s:4:\"file\";s:27:\"2016/03/summer-beach-02.jpg\";s:5:\"sizes\";a:18:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:27:\"summer-beach-02-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:27:\"summer-beach-02-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:27:\"summer-beach-02-600x375.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"summer-beach-02-320x200.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:28:\"summer-beach-02-1200x750.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:750;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"summer-beach-02-160x160.jpg\";s:5:\"width\";i:160;s:6:\"height\";i:160;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:27:\"summer-beach-02-768x480.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:28:\"summer-beach-02-1536x960.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:960;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"boldthemes_grid\";a:4:{s:4:\"file\";s:27:\"summer-beach-02-540x338.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:338;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_11\";a:4:{s:4:\"file\";s:27:\"summer-beach-02-540x540.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_22\";a:4:{s:4:\"file\";s:29:\"summer-beach-02-1080x1000.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_21\";a:4:{s:4:\"file\";s:28:\"summer-beach-02-1080x540.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_12\";a:4:{s:4:\"file\";s:28:\"summer-beach-02-540x1000.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_latest_posts\";a:4:{s:4:\"file\";s:27:\"summer-beach-02-320x240.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_grid_gallery\";a:4:{s:4:\"file\";s:27:\"summer-beach-02-540x405.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:27:\"summer-beach-02-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:27:\"summer-beach-02-600x375.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:27:\"summer-beach-02-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `smrc_postmeta` VALUES (244,467,'_wp_attached_file','2016/03/summer-beach-01.jpg');
INSERT INTO `smrc_postmeta` VALUES (245,467,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:1000;s:4:\"file\";s:27:\"2016/03/summer-beach-01.jpg\";s:5:\"sizes\";a:18:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:27:\"summer-beach-01-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:27:\"summer-beach-01-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:27:\"summer-beach-01-600x375.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"summer-beach-01-320x200.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:28:\"summer-beach-01-1200x750.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:750;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"summer-beach-01-160x160.jpg\";s:5:\"width\";i:160;s:6:\"height\";i:160;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:27:\"summer-beach-01-768x480.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:28:\"summer-beach-01-1536x960.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:960;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"boldthemes_grid\";a:4:{s:4:\"file\";s:27:\"summer-beach-01-540x338.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:338;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_11\";a:4:{s:4:\"file\";s:27:\"summer-beach-01-540x540.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_22\";a:4:{s:4:\"file\";s:29:\"summer-beach-01-1080x1000.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_21\";a:4:{s:4:\"file\";s:28:\"summer-beach-01-1080x540.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_12\";a:4:{s:4:\"file\";s:28:\"summer-beach-01-540x1000.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_latest_posts\";a:4:{s:4:\"file\";s:27:\"summer-beach-01-320x240.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_grid_gallery\";a:4:{s:4:\"file\";s:27:\"summer-beach-01-540x405.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:27:\"summer-beach-01-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:27:\"summer-beach-01-600x375.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:27:\"summer-beach-01-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `smrc_postmeta` VALUES (246,470,'_wp_attached_file','2016/03/summer-beach-04.jpg');
INSERT INTO `smrc_postmeta` VALUES (247,470,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:1000;s:4:\"file\";s:27:\"2016/03/summer-beach-04.jpg\";s:5:\"sizes\";a:18:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:27:\"summer-beach-04-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:27:\"summer-beach-04-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:27:\"summer-beach-04-600x375.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"summer-beach-04-320x200.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:28:\"summer-beach-04-1200x750.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:750;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"summer-beach-04-160x160.jpg\";s:5:\"width\";i:160;s:6:\"height\";i:160;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:27:\"summer-beach-04-768x480.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:28:\"summer-beach-04-1536x960.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:960;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"boldthemes_grid\";a:4:{s:4:\"file\";s:27:\"summer-beach-04-540x338.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:338;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_11\";a:4:{s:4:\"file\";s:27:\"summer-beach-04-540x540.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_22\";a:4:{s:4:\"file\";s:29:\"summer-beach-04-1080x1000.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_21\";a:4:{s:4:\"file\";s:28:\"summer-beach-04-1080x540.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_12\";a:4:{s:4:\"file\";s:28:\"summer-beach-04-540x1000.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_latest_posts\";a:4:{s:4:\"file\";s:27:\"summer-beach-04-320x240.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_grid_gallery\";a:4:{s:4:\"file\";s:27:\"summer-beach-04-540x405.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:27:\"summer-beach-04-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:27:\"summer-beach-04-600x375.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:27:\"summer-beach-04-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `smrc_postmeta` VALUES (248,471,'_wp_attached_file','2016/03/summer-beach-05.jpg');
INSERT INTO `smrc_postmeta` VALUES (249,471,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:1000;s:4:\"file\";s:27:\"2016/03/summer-beach-05.jpg\";s:5:\"sizes\";a:18:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:27:\"summer-beach-05-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:27:\"summer-beach-05-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:27:\"summer-beach-05-600x375.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"summer-beach-05-320x200.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:28:\"summer-beach-05-1200x750.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:750;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"summer-beach-05-160x160.jpg\";s:5:\"width\";i:160;s:6:\"height\";i:160;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:27:\"summer-beach-05-768x480.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:28:\"summer-beach-05-1536x960.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:960;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"boldthemes_grid\";a:4:{s:4:\"file\";s:27:\"summer-beach-05-540x338.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:338;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_11\";a:4:{s:4:\"file\";s:27:\"summer-beach-05-540x540.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_22\";a:4:{s:4:\"file\";s:29:\"summer-beach-05-1080x1000.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_21\";a:4:{s:4:\"file\";s:28:\"summer-beach-05-1080x540.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_12\";a:4:{s:4:\"file\";s:28:\"summer-beach-05-540x1000.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_latest_posts\";a:4:{s:4:\"file\";s:27:\"summer-beach-05-320x240.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_grid_gallery\";a:4:{s:4:\"file\";s:27:\"summer-beach-05-540x405.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:27:\"summer-beach-05-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:27:\"summer-beach-05-600x375.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:27:\"summer-beach-05-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `smrc_postmeta` VALUES (250,473,'_wp_attached_file','2016/03/summer-activities-02.jpg');
INSERT INTO `smrc_postmeta` VALUES (251,473,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:1000;s:4:\"file\";s:32:\"2016/03/summer-activities-02.jpg\";s:5:\"sizes\";a:18:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:32:\"summer-activities-02-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:32:\"summer-activities-02-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:32:\"summer-activities-02-600x375.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"summer-activities-02-320x200.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:33:\"summer-activities-02-1200x750.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:750;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"summer-activities-02-160x160.jpg\";s:5:\"width\";i:160;s:6:\"height\";i:160;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:32:\"summer-activities-02-768x480.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:33:\"summer-activities-02-1536x960.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:960;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"boldthemes_grid\";a:4:{s:4:\"file\";s:32:\"summer-activities-02-540x338.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:338;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_11\";a:4:{s:4:\"file\";s:32:\"summer-activities-02-540x540.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_22\";a:4:{s:4:\"file\";s:34:\"summer-activities-02-1080x1000.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_21\";a:4:{s:4:\"file\";s:33:\"summer-activities-02-1080x540.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_12\";a:4:{s:4:\"file\";s:33:\"summer-activities-02-540x1000.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_latest_posts\";a:4:{s:4:\"file\";s:32:\"summer-activities-02-320x240.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_grid_gallery\";a:4:{s:4:\"file\";s:32:\"summer-activities-02-540x405.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:32:\"summer-activities-02-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:32:\"summer-activities-02-600x375.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:32:\"summer-activities-02-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `smrc_postmeta` VALUES (252,472,'_wp_attached_file','2016/03/summer-activities-01.jpg');
INSERT INTO `smrc_postmeta` VALUES (253,472,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:1000;s:4:\"file\";s:32:\"2016/03/summer-activities-01.jpg\";s:5:\"sizes\";a:18:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:32:\"summer-activities-01-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:32:\"summer-activities-01-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:32:\"summer-activities-01-600x375.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"summer-activities-01-320x200.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:33:\"summer-activities-01-1200x750.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:750;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"summer-activities-01-160x160.jpg\";s:5:\"width\";i:160;s:6:\"height\";i:160;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:32:\"summer-activities-01-768x480.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:33:\"summer-activities-01-1536x960.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:960;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"boldthemes_grid\";a:4:{s:4:\"file\";s:32:\"summer-activities-01-540x338.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:338;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_11\";a:4:{s:4:\"file\";s:32:\"summer-activities-01-540x540.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_22\";a:4:{s:4:\"file\";s:34:\"summer-activities-01-1080x1000.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_21\";a:4:{s:4:\"file\";s:33:\"summer-activities-01-1080x540.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_12\";a:4:{s:4:\"file\";s:33:\"summer-activities-01-540x1000.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_latest_posts\";a:4:{s:4:\"file\";s:32:\"summer-activities-01-320x240.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_grid_gallery\";a:4:{s:4:\"file\";s:32:\"summer-activities-01-540x405.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:32:\"summer-activities-01-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:32:\"summer-activities-01-600x375.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:32:\"summer-activities-01-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `smrc_postmeta` VALUES (254,376,'_wp_attached_file','2016/02/summer-single-room-6.jpg');
INSERT INTO `smrc_postmeta` VALUES (255,376,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1180;s:6:\"height\";i:737;s:4:\"file\";s:32:\"2016/02/summer-single-room-6.jpg\";s:5:\"sizes\";a:16:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:32:\"summer-single-room-6-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:32:\"summer-single-room-6-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:32:\"summer-single-room-6-600x375.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"summer-single-room-6-320x200.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"summer-single-room-6-160x160.jpg\";s:5:\"width\";i:160;s:6:\"height\";i:160;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:32:\"summer-single-room-6-768x480.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"boldthemes_grid\";a:4:{s:4:\"file\";s:32:\"summer-single-room-6-540x337.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:337;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_11\";a:4:{s:4:\"file\";s:32:\"summer-single-room-6-540x540.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_22\";a:4:{s:4:\"file\";s:33:\"summer-single-room-6-1080x737.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:737;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_21\";a:4:{s:4:\"file\";s:33:\"summer-single-room-6-1080x540.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_12\";a:4:{s:4:\"file\";s:32:\"summer-single-room-6-540x737.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:737;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_latest_posts\";a:4:{s:4:\"file\";s:32:\"summer-single-room-6-320x240.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_grid_gallery\";a:4:{s:4:\"file\";s:32:\"summer-single-room-6-540x405.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:32:\"summer-single-room-6-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:32:\"summer-single-room-6-600x375.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:32:\"summer-single-room-6-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `smrc_postmeta` VALUES (256,375,'_wp_attached_file','2016/02/summer-single-room-5.jpg');
INSERT INTO `smrc_postmeta` VALUES (257,375,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1180;s:6:\"height\";i:737;s:4:\"file\";s:32:\"2016/02/summer-single-room-5.jpg\";s:5:\"sizes\";a:16:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:32:\"summer-single-room-5-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:32:\"summer-single-room-5-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:32:\"summer-single-room-5-600x375.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"summer-single-room-5-320x200.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"summer-single-room-5-160x160.jpg\";s:5:\"width\";i:160;s:6:\"height\";i:160;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:32:\"summer-single-room-5-768x480.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"boldthemes_grid\";a:4:{s:4:\"file\";s:32:\"summer-single-room-5-540x337.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:337;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_11\";a:4:{s:4:\"file\";s:32:\"summer-single-room-5-540x540.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_22\";a:4:{s:4:\"file\";s:33:\"summer-single-room-5-1080x737.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:737;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_21\";a:4:{s:4:\"file\";s:33:\"summer-single-room-5-1080x540.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_12\";a:4:{s:4:\"file\";s:32:\"summer-single-room-5-540x737.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:737;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_latest_posts\";a:4:{s:4:\"file\";s:32:\"summer-single-room-5-320x240.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_grid_gallery\";a:4:{s:4:\"file\";s:32:\"summer-single-room-5-540x405.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:32:\"summer-single-room-5-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:32:\"summer-single-room-5-600x375.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:32:\"summer-single-room-5-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `smrc_postmeta` VALUES (258,73,'_wp_attached_file','2016/02/summer-activity-1.jpg');
INSERT INTO `smrc_postmeta` VALUES (259,73,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:800;s:4:\"file\";s:29:\"2016/02/summer-activity-1.jpg\";s:5:\"sizes\";a:15:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:29:\"summer-activity-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:29:\"summer-activity-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:29:\"summer-activity-1-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"summer-activity-1-320x320.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"summer-activity-1-160x160.jpg\";s:5:\"width\";i:160;s:6:\"height\";i:160;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:29:\"summer-activity-1-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"boldthemes_grid\";a:4:{s:4:\"file\";s:29:\"summer-activity-1-540x540.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_11\";a:4:{s:4:\"file\";s:29:\"summer-activity-1-540x540.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_21\";a:4:{s:4:\"file\";s:29:\"summer-activity-1-800x540.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_12\";a:4:{s:4:\"file\";s:29:\"summer-activity-1-540x800.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_latest_posts\";a:4:{s:4:\"file\";s:29:\"summer-activity-1-320x240.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_grid_gallery\";a:4:{s:4:\"file\";s:29:\"summer-activity-1-540x405.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:29:\"summer-activity-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:29:\"summer-activity-1-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:29:\"summer-activity-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `smrc_postmeta` VALUES (260,69,'_wp_attached_file','2016/02/summer-offer-3.jpg');
INSERT INTO `smrc_postmeta` VALUES (261,69,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:600;s:4:\"file\";s:26:\"2016/02/summer-offer-3.jpg\";s:5:\"sizes\";a:15:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:26:\"summer-offer-3-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:26:\"summer-offer-3-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:26:\"summer-offer-3-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"summer-offer-3-320x240.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"summer-offer-3-160x160.jpg\";s:5:\"width\";i:160;s:6:\"height\";i:160;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:26:\"summer-offer-3-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"boldthemes_grid\";a:4:{s:4:\"file\";s:26:\"summer-offer-3-540x405.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_11\";a:4:{s:4:\"file\";s:26:\"summer-offer-3-540x540.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_21\";a:4:{s:4:\"file\";s:26:\"summer-offer-3-800x540.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_12\";a:4:{s:4:\"file\";s:26:\"summer-offer-3-540x600.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_latest_posts\";a:4:{s:4:\"file\";s:26:\"summer-offer-3-320x240.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_grid_gallery\";a:4:{s:4:\"file\";s:26:\"summer-offer-3-540x405.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:26:\"summer-offer-3-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:26:\"summer-offer-3-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:26:\"summer-offer-3-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `smrc_postmeta` VALUES (262,68,'_wp_attached_file','2016/02/summer-offer-2.jpg');
INSERT INTO `smrc_postmeta` VALUES (263,68,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:600;s:4:\"file\";s:26:\"2016/02/summer-offer-2.jpg\";s:5:\"sizes\";a:15:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:26:\"summer-offer-2-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:26:\"summer-offer-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:26:\"summer-offer-2-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"summer-offer-2-320x240.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"summer-offer-2-160x160.jpg\";s:5:\"width\";i:160;s:6:\"height\";i:160;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:26:\"summer-offer-2-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"boldthemes_grid\";a:4:{s:4:\"file\";s:26:\"summer-offer-2-540x405.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_11\";a:4:{s:4:\"file\";s:26:\"summer-offer-2-540x540.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_21\";a:4:{s:4:\"file\";s:26:\"summer-offer-2-800x540.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_12\";a:4:{s:4:\"file\";s:26:\"summer-offer-2-540x600.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_latest_posts\";a:4:{s:4:\"file\";s:26:\"summer-offer-2-320x240.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_grid_gallery\";a:4:{s:4:\"file\";s:26:\"summer-offer-2-540x405.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:26:\"summer-offer-2-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:26:\"summer-offer-2-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:26:\"summer-offer-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `smrc_postmeta` VALUES (264,74,'_wp_attached_file','2016/02/summer-activity-2.jpg');
INSERT INTO `smrc_postmeta` VALUES (265,74,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:800;s:4:\"file\";s:29:\"2016/02/summer-activity-2.jpg\";s:5:\"sizes\";a:15:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:29:\"summer-activity-2-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:29:\"summer-activity-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:29:\"summer-activity-2-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"summer-activity-2-320x320.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"summer-activity-2-160x160.jpg\";s:5:\"width\";i:160;s:6:\"height\";i:160;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:29:\"summer-activity-2-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"boldthemes_grid\";a:4:{s:4:\"file\";s:29:\"summer-activity-2-540x540.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_11\";a:4:{s:4:\"file\";s:29:\"summer-activity-2-540x540.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_21\";a:4:{s:4:\"file\";s:29:\"summer-activity-2-800x540.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_12\";a:4:{s:4:\"file\";s:29:\"summer-activity-2-540x800.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_latest_posts\";a:4:{s:4:\"file\";s:29:\"summer-activity-2-320x240.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_grid_gallery\";a:4:{s:4:\"file\";s:29:\"summer-activity-2-540x405.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:29:\"summer-activity-2-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:29:\"summer-activity-2-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:29:\"summer-activity-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `smrc_postmeta` VALUES (266,75,'_wp_attached_file','2016/02/summer-activity-3.jpg');
INSERT INTO `smrc_postmeta` VALUES (267,75,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:800;s:4:\"file\";s:29:\"2016/02/summer-activity-3.jpg\";s:5:\"sizes\";a:15:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:29:\"summer-activity-3-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:29:\"summer-activity-3-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:29:\"summer-activity-3-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"summer-activity-3-320x320.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"summer-activity-3-160x160.jpg\";s:5:\"width\";i:160;s:6:\"height\";i:160;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:29:\"summer-activity-3-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"boldthemes_grid\";a:4:{s:4:\"file\";s:29:\"summer-activity-3-540x540.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_11\";a:4:{s:4:\"file\";s:29:\"summer-activity-3-540x540.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_21\";a:4:{s:4:\"file\";s:29:\"summer-activity-3-800x540.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_12\";a:4:{s:4:\"file\";s:29:\"summer-activity-3-540x800.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_latest_posts\";a:4:{s:4:\"file\";s:29:\"summer-activity-3-320x240.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_grid_gallery\";a:4:{s:4:\"file\";s:29:\"summer-activity-3-540x405.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:29:\"summer-activity-3-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:29:\"summer-activity-3-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:29:\"summer-activity-3-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `smrc_postmeta` VALUES (268,78,'_wp_attached_file','2016/02/summer-testimonial.jpg');
INSERT INTO `smrc_postmeta` VALUES (269,78,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:180;s:6:\"height\";i:180;s:4:\"file\";s:30:\"2016/02/summer-testimonial.jpg\";s:5:\"sizes\";a:3:{s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:30:\"summer-testimonial-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"summer-testimonial-160x160.jpg\";s:5:\"width\";i:160;s:6:\"height\";i:160;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:30:\"summer-testimonial-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `smrc_postmeta` VALUES (270,76,'_wp_attached_file','2016/02/summer-activity-4.jpg');
INSERT INTO `smrc_postmeta` VALUES (271,76,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:800;s:4:\"file\";s:29:\"2016/02/summer-activity-4.jpg\";s:5:\"sizes\";a:15:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:29:\"summer-activity-4-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:29:\"summer-activity-4-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:29:\"summer-activity-4-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"summer-activity-4-320x320.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"summer-activity-4-160x160.jpg\";s:5:\"width\";i:160;s:6:\"height\";i:160;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:29:\"summer-activity-4-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"boldthemes_grid\";a:4:{s:4:\"file\";s:29:\"summer-activity-4-540x540.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_11\";a:4:{s:4:\"file\";s:29:\"summer-activity-4-540x540.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_21\";a:4:{s:4:\"file\";s:29:\"summer-activity-4-800x540.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_12\";a:4:{s:4:\"file\";s:29:\"summer-activity-4-540x800.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_latest_posts\";a:4:{s:4:\"file\";s:29:\"summer-activity-4-320x240.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_grid_gallery\";a:4:{s:4:\"file\";s:29:\"summer-activity-4-540x405.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:29:\"summer-activity-4-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:29:\"summer-activity-4-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:29:\"summer-activity-4-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `smrc_postmeta` VALUES (272,67,'_wp_attached_file','2016/02/summer-offer-1.jpg');
INSERT INTO `smrc_postmeta` VALUES (273,67,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:600;s:4:\"file\";s:26:\"2016/02/summer-offer-1.jpg\";s:5:\"sizes\";a:15:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:26:\"summer-offer-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:26:\"summer-offer-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:26:\"summer-offer-1-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"summer-offer-1-320x240.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"summer-offer-1-160x160.jpg\";s:5:\"width\";i:160;s:6:\"height\";i:160;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:26:\"summer-offer-1-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"boldthemes_grid\";a:4:{s:4:\"file\";s:26:\"summer-offer-1-540x405.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_11\";a:4:{s:4:\"file\";s:26:\"summer-offer-1-540x540.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_21\";a:4:{s:4:\"file\";s:26:\"summer-offer-1-800x540.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_12\";a:4:{s:4:\"file\";s:26:\"summer-offer-1-540x600.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_latest_posts\";a:4:{s:4:\"file\";s:26:\"summer-offer-1-320x240.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_grid_gallery\";a:4:{s:4:\"file\";s:26:\"summer-offer-1-540x405.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:26:\"summer-offer-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:26:\"summer-offer-1-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:26:\"summer-offer-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `smrc_postmeta` VALUES (274,66,'_wp_attached_file','2016/02/summer-offers-background.jpg');
INSERT INTO `smrc_postmeta` VALUES (275,66,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2500;s:6:\"height\";i:1497;s:4:\"file\";s:36:\"2016/02/summer-offers-background.jpg\";s:5:\"sizes\";a:19:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:36:\"summer-offers-background-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:36:\"summer-offers-background-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:36:\"summer-offers-background-600x359.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:359;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:36:\"summer-offers-background-320x192.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:192;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:37:\"summer-offers-background-1200x719.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:719;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:36:\"summer-offers-background-160x160.jpg\";s:5:\"width\";i:160;s:6:\"height\";i:160;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:36:\"summer-offers-background-768x460.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:460;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:37:\"summer-offers-background-1536x920.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:920;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:38:\"summer-offers-background-2048x1226.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1226;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"boldthemes_grid\";a:4:{s:4:\"file\";s:36:\"summer-offers-background-540x323.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:323;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_11\";a:4:{s:4:\"file\";s:36:\"summer-offers-background-540x540.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_22\";a:4:{s:4:\"file\";s:38:\"summer-offers-background-1080x1080.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:1080;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_21\";a:4:{s:4:\"file\";s:37:\"summer-offers-background-1080x540.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_12\";a:4:{s:4:\"file\";s:37:\"summer-offers-background-540x1080.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:1080;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_latest_posts\";a:4:{s:4:\"file\";s:36:\"summer-offers-background-320x240.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_grid_gallery\";a:4:{s:4:\"file\";s:36:\"summer-offers-background-540x405.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:36:\"summer-offers-background-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:36:\"summer-offers-background-600x359.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:359;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:36:\"summer-offers-background-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `smrc_postmeta` VALUES (276,44,'_wp_attached_file','2016/02/summer-room-1.jpg');
INSERT INTO `smrc_postmeta` VALUES (277,44,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:600;s:4:\"file\";s:25:\"2016/02/summer-room-1.jpg\";s:5:\"sizes\";a:15:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:25:\"summer-room-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:25:\"summer-room-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:25:\"summer-room-1-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"summer-room-1-320x240.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"summer-room-1-160x160.jpg\";s:5:\"width\";i:160;s:6:\"height\";i:160;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:25:\"summer-room-1-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"boldthemes_grid\";a:4:{s:4:\"file\";s:25:\"summer-room-1-540x405.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_11\";a:4:{s:4:\"file\";s:25:\"summer-room-1-540x540.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_21\";a:4:{s:4:\"file\";s:25:\"summer-room-1-800x540.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_12\";a:4:{s:4:\"file\";s:25:\"summer-room-1-540x600.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_latest_posts\";a:4:{s:4:\"file\";s:25:\"summer-room-1-320x240.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_grid_gallery\";a:4:{s:4:\"file\";s:25:\"summer-room-1-540x405.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:25:\"summer-room-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:25:\"summer-room-1-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:25:\"summer-room-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `smrc_postmeta` VALUES (278,43,'_wp_attached_file','2016/02/summer-room-2.jpg');
INSERT INTO `smrc_postmeta` VALUES (279,43,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:600;s:4:\"file\";s:25:\"2016/02/summer-room-2.jpg\";s:5:\"sizes\";a:15:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:25:\"summer-room-2-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:25:\"summer-room-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:25:\"summer-room-2-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"summer-room-2-320x240.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"summer-room-2-160x160.jpg\";s:5:\"width\";i:160;s:6:\"height\";i:160;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:25:\"summer-room-2-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"boldthemes_grid\";a:4:{s:4:\"file\";s:25:\"summer-room-2-540x405.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_11\";a:4:{s:4:\"file\";s:25:\"summer-room-2-540x540.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_21\";a:4:{s:4:\"file\";s:25:\"summer-room-2-800x540.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_12\";a:4:{s:4:\"file\";s:25:\"summer-room-2-540x600.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_latest_posts\";a:4:{s:4:\"file\";s:25:\"summer-room-2-320x240.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_grid_gallery\";a:4:{s:4:\"file\";s:25:\"summer-room-2-540x405.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:25:\"summer-room-2-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:25:\"summer-room-2-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:25:\"summer-room-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `smrc_postmeta` VALUES (280,42,'_wp_attached_file','2016/02/summer-room-3.jpg');
INSERT INTO `smrc_postmeta` VALUES (281,42,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:600;s:4:\"file\";s:25:\"2016/02/summer-room-3.jpg\";s:5:\"sizes\";a:15:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:25:\"summer-room-3-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:25:\"summer-room-3-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:25:\"summer-room-3-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"summer-room-3-320x240.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"summer-room-3-160x160.jpg\";s:5:\"width\";i:160;s:6:\"height\";i:160;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:25:\"summer-room-3-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"boldthemes_grid\";a:4:{s:4:\"file\";s:25:\"summer-room-3-540x405.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_11\";a:4:{s:4:\"file\";s:25:\"summer-room-3-540x540.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_21\";a:4:{s:4:\"file\";s:25:\"summer-room-3-800x540.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_12\";a:4:{s:4:\"file\";s:25:\"summer-room-3-540x600.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_latest_posts\";a:4:{s:4:\"file\";s:25:\"summer-room-3-320x240.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_grid_gallery\";a:4:{s:4:\"file\";s:25:\"summer-room-3-540x405.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:25:\"summer-room-3-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:25:\"summer-room-3-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:25:\"summer-room-3-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `smrc_postmeta` VALUES (282,46,'_wp_attached_file','2016/02/summer-hero-2.jpg');
INSERT INTO `smrc_postmeta` VALUES (283,46,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2500;s:6:\"height\";i:1094;s:4:\"file\";s:25:\"2016/02/summer-hero-2.jpg\";s:5:\"sizes\";a:19:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:25:\"summer-hero-2-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:25:\"summer-hero-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:25:\"summer-hero-2-600x263.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:263;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"summer-hero-2-320x140.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:140;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:26:\"summer-hero-2-1200x525.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:525;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"summer-hero-2-160x160.jpg\";s:5:\"width\";i:160;s:6:\"height\";i:160;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:25:\"summer-hero-2-768x336.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:336;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:26:\"summer-hero-2-1536x672.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:672;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:26:\"summer-hero-2-2048x896.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:896;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"boldthemes_grid\";a:4:{s:4:\"file\";s:25:\"summer-hero-2-540x236.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:236;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_11\";a:4:{s:4:\"file\";s:25:\"summer-hero-2-540x540.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_22\";a:4:{s:4:\"file\";s:27:\"summer-hero-2-1080x1080.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:1080;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_21\";a:4:{s:4:\"file\";s:26:\"summer-hero-2-1080x540.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_12\";a:4:{s:4:\"file\";s:26:\"summer-hero-2-540x1080.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:1080;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_latest_posts\";a:4:{s:4:\"file\";s:25:\"summer-hero-2-320x240.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_grid_gallery\";a:4:{s:4:\"file\";s:25:\"summer-hero-2-540x405.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:25:\"summer-hero-2-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:25:\"summer-hero-2-600x263.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:263;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:25:\"summer-hero-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `smrc_postmeta` VALUES (284,47,'_wp_attached_file','2016/02/summer-hero-1.jpg');
INSERT INTO `smrc_postmeta` VALUES (285,47,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2500;s:6:\"height\";i:1094;s:4:\"file\";s:25:\"2016/02/summer-hero-1.jpg\";s:5:\"sizes\";a:19:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:25:\"summer-hero-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:25:\"summer-hero-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:25:\"summer-hero-1-600x263.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:263;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"summer-hero-1-320x140.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:140;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:26:\"summer-hero-1-1200x525.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:525;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"summer-hero-1-160x160.jpg\";s:5:\"width\";i:160;s:6:\"height\";i:160;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:25:\"summer-hero-1-768x336.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:336;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:26:\"summer-hero-1-1536x672.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:672;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:26:\"summer-hero-1-2048x896.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:896;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"boldthemes_grid\";a:4:{s:4:\"file\";s:25:\"summer-hero-1-540x236.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:236;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_11\";a:4:{s:4:\"file\";s:25:\"summer-hero-1-540x540.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_22\";a:4:{s:4:\"file\";s:27:\"summer-hero-1-1080x1080.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:1080;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_21\";a:4:{s:4:\"file\";s:26:\"summer-hero-1-1080x540.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_12\";a:4:{s:4:\"file\";s:26:\"summer-hero-1-540x1080.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:1080;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_latest_posts\";a:4:{s:4:\"file\";s:25:\"summer-hero-1-320x240.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_grid_gallery\";a:4:{s:4:\"file\";s:25:\"summer-hero-1-540x405.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:25:\"summer-hero-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:25:\"summer-hero-1-600x263.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:263;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:25:\"summer-hero-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `smrc_postmeta` VALUES (286,49,'_wp_attached_file','2016/02/summer-logo-footer.png');
INSERT INTO `smrc_postmeta` VALUES (287,49,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:198;s:6:\"height\";i:42;s:4:\"file\";s:30:\"2016/02/summer-logo-footer.png\";s:5:\"sizes\";a:3:{s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:29:\"summer-logo-footer-100x42.png\";s:5:\"width\";i:100;s:6:\"height\";i:42;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"summer-logo-footer-160x42.png\";s:5:\"width\";i:160;s:6:\"height\";i:42;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:29:\"summer-logo-footer-100x42.png\";s:5:\"width\";i:100;s:6:\"height\";i:42;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:{}}}');
INSERT INTO `smrc_postmeta` VALUES (288,48,'_wp_attached_file','2016/02/summer-logo.png');
INSERT INTO `smrc_postmeta` VALUES (289,48,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:281;s:6:\"height\";i:60;s:4:\"file\";s:23:\"2016/02/summer-logo.png\";s:5:\"sizes\";a:3:{s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:22:\"summer-logo-100x60.png\";s:5:\"width\";i:100;s:6:\"height\";i:60;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"summer-logo-160x60.png\";s:5:\"width\";i:160;s:6:\"height\";i:60;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:22:\"summer-logo-100x60.png\";s:5:\"width\";i:100;s:6:\"height\";i:60;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:{}}}');
INSERT INTO `smrc_postmeta` VALUES (290,81,'_wp_attached_file','2016/02/summer-about-1-1.jpg');
INSERT INTO `smrc_postmeta` VALUES (291,81,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:780;s:6:\"height\";i:411;s:4:\"file\";s:28:\"2016/02/summer-about-1-1.jpg\";s:5:\"sizes\";a:14:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:28:\"summer-about-1-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:28:\"summer-about-1-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:28:\"summer-about-1-1-600x316.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:316;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"summer-about-1-1-320x169.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"summer-about-1-1-160x160.jpg\";s:5:\"width\";i:160;s:6:\"height\";i:160;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:28:\"summer-about-1-1-768x405.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"boldthemes_grid\";a:4:{s:4:\"file\";s:28:\"summer-about-1-1-540x285.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_11\";a:4:{s:4:\"file\";s:28:\"summer-about-1-1-540x411.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:411;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_12\";a:4:{s:4:\"file\";s:28:\"summer-about-1-1-540x411.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:411;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_latest_posts\";a:4:{s:4:\"file\";s:28:\"summer-about-1-1-320x240.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_grid_gallery\";a:4:{s:4:\"file\";s:28:\"summer-about-1-1-540x405.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:28:\"summer-about-1-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:28:\"summer-about-1-1-600x316.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:316;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:28:\"summer-about-1-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `smrc_postmeta` VALUES (292,82,'_wp_attached_file','2016/02/summer-about-2.jpg');
INSERT INTO `smrc_postmeta` VALUES (293,82,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:780;s:6:\"height\";i:411;s:4:\"file\";s:26:\"2016/02/summer-about-2.jpg\";s:5:\"sizes\";a:14:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:26:\"summer-about-2-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:26:\"summer-about-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:26:\"summer-about-2-600x316.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:316;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"summer-about-2-320x169.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"summer-about-2-160x160.jpg\";s:5:\"width\";i:160;s:6:\"height\";i:160;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:26:\"summer-about-2-768x405.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"boldthemes_grid\";a:4:{s:4:\"file\";s:26:\"summer-about-2-540x285.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_11\";a:4:{s:4:\"file\";s:26:\"summer-about-2-540x411.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:411;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_12\";a:4:{s:4:\"file\";s:26:\"summer-about-2-540x411.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:411;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_latest_posts\";a:4:{s:4:\"file\";s:26:\"summer-about-2-320x240.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_grid_gallery\";a:4:{s:4:\"file\";s:26:\"summer-about-2-540x405.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:26:\"summer-about-2-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:26:\"summer-about-2-600x316.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:316;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:26:\"summer-about-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `smrc_postmeta` VALUES (294,366,'_wp_attached_file','2016/02/summer-icon.png');
INSERT INTO `smrc_postmeta` VALUES (295,366,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:16;s:6:\"height\";i:16;s:4:\"file\";s:23:\"2016/02/summer-icon.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `smrc_postmeta` VALUES (296,342,'_wp_attached_file','2016/02/summer-map-pin.png');
INSERT INTO `smrc_postmeta` VALUES (297,342,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:109;s:6:\"height\";i:77;s:4:\"file\";s:26:\"2016/02/summer-map-pin.png\";s:5:\"sizes\";a:2:{s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:25:\"summer-map-pin-100x77.png\";s:5:\"width\";i:100;s:6:\"height\";i:77;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:25:\"summer-map-pin-100x77.png\";s:5:\"width\";i:100;s:6:\"height\";i:77;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:{}}}');
INSERT INTO `smrc_postmeta` VALUES (298,323,'_wp_attached_file','2016/02/summer-star-red.png');
INSERT INTO `smrc_postmeta` VALUES (299,323,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:60;s:6:\"height\";i:57;s:4:\"file\";s:27:\"2016/02/summer-star-red.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `smrc_postmeta` VALUES (300,371,'_wp_attached_file','2016/02/summer-single-room-1.jpg');
INSERT INTO `smrc_postmeta` VALUES (301,371,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1180;s:6:\"height\";i:737;s:4:\"file\";s:32:\"2016/02/summer-single-room-1.jpg\";s:5:\"sizes\";a:16:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:32:\"summer-single-room-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:32:\"summer-single-room-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:32:\"summer-single-room-1-600x375.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"summer-single-room-1-320x200.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"summer-single-room-1-160x160.jpg\";s:5:\"width\";i:160;s:6:\"height\";i:160;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:32:\"summer-single-room-1-768x480.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"boldthemes_grid\";a:4:{s:4:\"file\";s:32:\"summer-single-room-1-540x337.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:337;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_11\";a:4:{s:4:\"file\";s:32:\"summer-single-room-1-540x540.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_22\";a:4:{s:4:\"file\";s:33:\"summer-single-room-1-1080x737.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:737;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_21\";a:4:{s:4:\"file\";s:33:\"summer-single-room-1-1080x540.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_12\";a:4:{s:4:\"file\";s:32:\"summer-single-room-1-540x737.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:737;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_latest_posts\";a:4:{s:4:\"file\";s:32:\"summer-single-room-1-320x240.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_grid_gallery\";a:4:{s:4:\"file\";s:32:\"summer-single-room-1-540x405.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:32:\"summer-single-room-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:32:\"summer-single-room-1-600x375.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:32:\"summer-single-room-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `smrc_postmeta` VALUES (302,372,'_wp_attached_file','2016/02/summer-single-room-2.jpg');
INSERT INTO `smrc_postmeta` VALUES (303,372,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1180;s:6:\"height\";i:737;s:4:\"file\";s:32:\"2016/02/summer-single-room-2.jpg\";s:5:\"sizes\";a:16:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:32:\"summer-single-room-2-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:32:\"summer-single-room-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:32:\"summer-single-room-2-600x375.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"summer-single-room-2-320x200.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"summer-single-room-2-160x160.jpg\";s:5:\"width\";i:160;s:6:\"height\";i:160;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:32:\"summer-single-room-2-768x480.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"boldthemes_grid\";a:4:{s:4:\"file\";s:32:\"summer-single-room-2-540x337.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:337;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_11\";a:4:{s:4:\"file\";s:32:\"summer-single-room-2-540x540.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_22\";a:4:{s:4:\"file\";s:33:\"summer-single-room-2-1080x737.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:737;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_21\";a:4:{s:4:\"file\";s:33:\"summer-single-room-2-1080x540.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_12\";a:4:{s:4:\"file\";s:32:\"summer-single-room-2-540x737.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:737;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_latest_posts\";a:4:{s:4:\"file\";s:32:\"summer-single-room-2-320x240.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_grid_gallery\";a:4:{s:4:\"file\";s:32:\"summer-single-room-2-540x405.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:32:\"summer-single-room-2-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:32:\"summer-single-room-2-600x375.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:32:\"summer-single-room-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `smrc_postmeta` VALUES (304,374,'_wp_attached_file','2016/02/summer-single-room-4.jpg');
INSERT INTO `smrc_postmeta` VALUES (305,374,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1180;s:6:\"height\";i:737;s:4:\"file\";s:32:\"2016/02/summer-single-room-4.jpg\";s:5:\"sizes\";a:16:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:32:\"summer-single-room-4-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:32:\"summer-single-room-4-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:32:\"summer-single-room-4-600x375.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"summer-single-room-4-320x200.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"summer-single-room-4-160x160.jpg\";s:5:\"width\";i:160;s:6:\"height\";i:160;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:32:\"summer-single-room-4-768x480.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"boldthemes_grid\";a:4:{s:4:\"file\";s:32:\"summer-single-room-4-540x337.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:337;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_11\";a:4:{s:4:\"file\";s:32:\"summer-single-room-4-540x540.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_22\";a:4:{s:4:\"file\";s:33:\"summer-single-room-4-1080x737.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:737;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_21\";a:4:{s:4:\"file\";s:33:\"summer-single-room-4-1080x540.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_12\";a:4:{s:4:\"file\";s:32:\"summer-single-room-4-540x737.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:737;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_latest_posts\";a:4:{s:4:\"file\";s:32:\"summer-single-room-4-320x240.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_grid_gallery\";a:4:{s:4:\"file\";s:32:\"summer-single-room-4-540x405.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:32:\"summer-single-room-4-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:32:\"summer-single-room-4-600x375.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:32:\"summer-single-room-4-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `smrc_postmeta` VALUES (306,373,'_wp_attached_file','2016/02/summer-single-room-3.jpg');
INSERT INTO `smrc_postmeta` VALUES (307,373,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1180;s:6:\"height\";i:737;s:4:\"file\";s:32:\"2016/02/summer-single-room-3.jpg\";s:5:\"sizes\";a:16:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:32:\"summer-single-room-3-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:32:\"summer-single-room-3-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:32:\"summer-single-room-3-600x375.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"summer-single-room-3-320x200.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"summer-single-room-3-160x160.jpg\";s:5:\"width\";i:160;s:6:\"height\";i:160;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:32:\"summer-single-room-3-768x480.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"boldthemes_grid\";a:4:{s:4:\"file\";s:32:\"summer-single-room-3-540x337.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:337;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_11\";a:4:{s:4:\"file\";s:32:\"summer-single-room-3-540x540.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_22\";a:4:{s:4:\"file\";s:33:\"summer-single-room-3-1080x737.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:737;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_21\";a:4:{s:4:\"file\";s:33:\"summer-single-room-3-1080x540.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_12\";a:4:{s:4:\"file\";s:32:\"summer-single-room-3-540x737.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:737;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_latest_posts\";a:4:{s:4:\"file\";s:32:\"summer-single-room-3-320x240.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_grid_gallery\";a:4:{s:4:\"file\";s:32:\"summer-single-room-3-540x405.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:32:\"summer-single-room-3-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:32:\"summer-single-room-3-600x375.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:32:\"summer-single-room-3-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `smrc_postmeta` VALUES (308,621,'_wp_attached_file','2016/02/summer-overview-05.jpg');
INSERT INTO `smrc_postmeta` VALUES (309,621,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:800;s:4:\"file\";s:30:\"2016/02/summer-overview-05.jpg\";s:5:\"sizes\";a:15:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:30:\"summer-overview-05-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:30:\"summer-overview-05-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:30:\"summer-overview-05-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:30:\"summer-overview-05-320x320.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"summer-overview-05-160x160.jpg\";s:5:\"width\";i:160;s:6:\"height\";i:160;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:30:\"summer-overview-05-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"boldthemes_grid\";a:4:{s:4:\"file\";s:30:\"summer-overview-05-540x540.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_11\";a:4:{s:4:\"file\";s:30:\"summer-overview-05-540x540.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_21\";a:4:{s:4:\"file\";s:30:\"summer-overview-05-800x540.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_12\";a:4:{s:4:\"file\";s:30:\"summer-overview-05-540x800.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_latest_posts\";a:4:{s:4:\"file\";s:30:\"summer-overview-05-320x240.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_grid_gallery\";a:4:{s:4:\"file\";s:30:\"summer-overview-05-540x405.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:30:\"summer-overview-05-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:30:\"summer-overview-05-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:30:\"summer-overview-05-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `smrc_postmeta` VALUES (310,321,'_wp_attached_file','2016/02/summer-star-big.png');
INSERT INTO `smrc_postmeta` VALUES (311,321,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1500;s:6:\"height\";i:710;s:4:\"file\";s:27:\"2016/02/summer-star-big.png\";s:5:\"sizes\";a:17:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:27:\"summer-star-big-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:27:\"summer-star-big-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:27:\"summer-star-big-600x284.png\";s:5:\"width\";i:600;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"summer-star-big-320x151.png\";s:5:\"width\";i:320;s:6:\"height\";i:151;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:28:\"summer-star-big-1200x568.png\";s:5:\"width\";i:1200;s:6:\"height\";i:568;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"summer-star-big-160x160.png\";s:5:\"width\";i:160;s:6:\"height\";i:160;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:27:\"summer-star-big-768x364.png\";s:5:\"width\";i:768;s:6:\"height\";i:364;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"boldthemes_grid\";a:4:{s:4:\"file\";s:27:\"summer-star-big-540x256.png\";s:5:\"width\";i:540;s:6:\"height\";i:256;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"boldthemes_grid_11\";a:4:{s:4:\"file\";s:27:\"summer-star-big-540x540.png\";s:5:\"width\";i:540;s:6:\"height\";i:540;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"boldthemes_grid_22\";a:4:{s:4:\"file\";s:28:\"summer-star-big-1080x710.png\";s:5:\"width\";i:1080;s:6:\"height\";i:710;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"boldthemes_grid_21\";a:4:{s:4:\"file\";s:28:\"summer-star-big-1080x540.png\";s:5:\"width\";i:1080;s:6:\"height\";i:540;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"boldthemes_grid_12\";a:4:{s:4:\"file\";s:27:\"summer-star-big-540x710.png\";s:5:\"width\";i:540;s:6:\"height\";i:710;s:9:\"mime-type\";s:9:\"image/png\";}s:23:\"boldthemes_latest_posts\";a:4:{s:4:\"file\";s:27:\"summer-star-big-320x240.png\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:9:\"image/png\";}s:23:\"boldthemes_grid_gallery\";a:4:{s:4:\"file\";s:27:\"summer-star-big-540x405.png\";s:5:\"width\";i:540;s:6:\"height\";i:405;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:27:\"summer-star-big-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:27:\"summer-star-big-600x284.png\";s:5:\"width\";i:600;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:27:\"summer-star-big-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `smrc_postmeta` VALUES (312,85,'_wp_attached_file','2016/02/summer-about-5.jpg');
INSERT INTO `smrc_postmeta` VALUES (313,85,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:780;s:6:\"height\";i:411;s:4:\"file\";s:26:\"2016/02/summer-about-5.jpg\";s:5:\"sizes\";a:14:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:26:\"summer-about-5-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:26:\"summer-about-5-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:26:\"summer-about-5-600x316.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:316;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"summer-about-5-320x169.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"summer-about-5-160x160.jpg\";s:5:\"width\";i:160;s:6:\"height\";i:160;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:26:\"summer-about-5-768x405.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"boldthemes_grid\";a:4:{s:4:\"file\";s:26:\"summer-about-5-540x285.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_11\";a:4:{s:4:\"file\";s:26:\"summer-about-5-540x411.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:411;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_12\";a:4:{s:4:\"file\";s:26:\"summer-about-5-540x411.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:411;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_latest_posts\";a:4:{s:4:\"file\";s:26:\"summer-about-5-320x240.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_grid_gallery\";a:4:{s:4:\"file\";s:26:\"summer-about-5-540x405.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:26:\"summer-about-5-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:26:\"summer-about-5-600x316.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:316;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:26:\"summer-about-5-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `smrc_postmeta` VALUES (314,84,'_wp_attached_file','2016/02/summer-about-4.jpg');
INSERT INTO `smrc_postmeta` VALUES (315,84,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:780;s:6:\"height\";i:411;s:4:\"file\";s:26:\"2016/02/summer-about-4.jpg\";s:5:\"sizes\";a:14:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:26:\"summer-about-4-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:26:\"summer-about-4-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:26:\"summer-about-4-600x316.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:316;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"summer-about-4-320x169.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"summer-about-4-160x160.jpg\";s:5:\"width\";i:160;s:6:\"height\";i:160;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:26:\"summer-about-4-768x405.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"boldthemes_grid\";a:4:{s:4:\"file\";s:26:\"summer-about-4-540x285.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_11\";a:4:{s:4:\"file\";s:26:\"summer-about-4-540x411.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:411;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_12\";a:4:{s:4:\"file\";s:26:\"summer-about-4-540x411.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:411;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_latest_posts\";a:4:{s:4:\"file\";s:26:\"summer-about-4-320x240.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_grid_gallery\";a:4:{s:4:\"file\";s:26:\"summer-about-4-540x405.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:26:\"summer-about-4-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:26:\"summer-about-4-600x316.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:316;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:26:\"summer-about-4-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `smrc_postmeta` VALUES (316,83,'_wp_attached_file','2016/02/summer-about-3.jpg');
INSERT INTO `smrc_postmeta` VALUES (317,83,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:780;s:6:\"height\";i:411;s:4:\"file\";s:26:\"2016/02/summer-about-3.jpg\";s:5:\"sizes\";a:14:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:26:\"summer-about-3-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:26:\"summer-about-3-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:26:\"summer-about-3-600x316.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:316;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"summer-about-3-320x169.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"summer-about-3-160x160.jpg\";s:5:\"width\";i:160;s:6:\"height\";i:160;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:26:\"summer-about-3-768x405.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"boldthemes_grid\";a:4:{s:4:\"file\";s:26:\"summer-about-3-540x285.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_11\";a:4:{s:4:\"file\";s:26:\"summer-about-3-540x411.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:411;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_12\";a:4:{s:4:\"file\";s:26:\"summer-about-3-540x411.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:411;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_latest_posts\";a:4:{s:4:\"file\";s:26:\"summer-about-3-320x240.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_grid_gallery\";a:4:{s:4:\"file\";s:26:\"summer-about-3-540x405.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:26:\"summer-about-3-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:26:\"summer-about-3-600x316.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:316;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:26:\"summer-about-3-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `smrc_postmeta` VALUES (318,311,'_wp_attached_file','2016/02/summer-awards.png');
INSERT INTO `smrc_postmeta` VALUES (319,311,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:279;s:6:\"height\";i:103;s:4:\"file\";s:25:\"2016/02/summer-awards.png\";s:5:\"sizes\";a:3:{s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:25:\"summer-awards-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"summer-awards-160x103.png\";s:5:\"width\";i:160;s:6:\"height\";i:103;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:25:\"summer-awards-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `smrc_postmeta` VALUES (320,313,'_wp_attached_file','2015/08/summer-news-1.jpg');
INSERT INTO `smrc_postmeta` VALUES (321,313,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1080;s:6:\"height\";i:810;s:4:\"file\";s:25:\"2015/08/summer-news-1.jpg\";s:5:\"sizes\";a:15:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:25:\"summer-news-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:25:\"summer-news-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:25:\"summer-news-1-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"summer-news-1-320x240.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"summer-news-1-160x160.jpg\";s:5:\"width\";i:160;s:6:\"height\";i:160;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:25:\"summer-news-1-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"boldthemes_grid\";a:4:{s:4:\"file\";s:25:\"summer-news-1-540x405.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_11\";a:4:{s:4:\"file\";s:25:\"summer-news-1-540x540.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_21\";a:4:{s:4:\"file\";s:26:\"summer-news-1-1080x540.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_12\";a:4:{s:4:\"file\";s:25:\"summer-news-1-540x810.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:810;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_latest_posts\";a:4:{s:4:\"file\";s:25:\"summer-news-1-320x240.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_grid_gallery\";a:4:{s:4:\"file\";s:25:\"summer-news-1-540x405.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:25:\"summer-news-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:25:\"summer-news-1-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:25:\"summer-news-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `smrc_postmeta` VALUES (322,315,'_wp_attached_file','2015/08/summer-news-3.jpg');
INSERT INTO `smrc_postmeta` VALUES (323,315,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1080;s:6:\"height\";i:810;s:4:\"file\";s:25:\"2015/08/summer-news-3.jpg\";s:5:\"sizes\";a:15:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:25:\"summer-news-3-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:25:\"summer-news-3-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:25:\"summer-news-3-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"summer-news-3-320x240.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"summer-news-3-160x160.jpg\";s:5:\"width\";i:160;s:6:\"height\";i:160;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:25:\"summer-news-3-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"boldthemes_grid\";a:4:{s:4:\"file\";s:25:\"summer-news-3-540x405.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_11\";a:4:{s:4:\"file\";s:25:\"summer-news-3-540x540.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_21\";a:4:{s:4:\"file\";s:26:\"summer-news-3-1080x540.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_12\";a:4:{s:4:\"file\";s:25:\"summer-news-3-540x810.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:810;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_latest_posts\";a:4:{s:4:\"file\";s:25:\"summer-news-3-320x240.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_grid_gallery\";a:4:{s:4:\"file\";s:25:\"summer-news-3-540x405.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:25:\"summer-news-3-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:25:\"summer-news-3-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:25:\"summer-news-3-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `smrc_postmeta` VALUES (324,314,'_wp_attached_file','2015/08/summer-news-2.jpg');
INSERT INTO `smrc_postmeta` VALUES (325,314,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1080;s:6:\"height\";i:810;s:4:\"file\";s:25:\"2015/08/summer-news-2.jpg\";s:5:\"sizes\";a:15:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:25:\"summer-news-2-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:25:\"summer-news-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:25:\"summer-news-2-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"summer-news-2-320x240.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"summer-news-2-160x160.jpg\";s:5:\"width\";i:160;s:6:\"height\";i:160;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:25:\"summer-news-2-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"boldthemes_grid\";a:4:{s:4:\"file\";s:25:\"summer-news-2-540x405.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_11\";a:4:{s:4:\"file\";s:25:\"summer-news-2-540x540.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_21\";a:4:{s:4:\"file\";s:26:\"summer-news-2-1080x540.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_12\";a:4:{s:4:\"file\";s:25:\"summer-news-2-540x810.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:810;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_latest_posts\";a:4:{s:4:\"file\";s:25:\"summer-news-2-320x240.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_grid_gallery\";a:4:{s:4:\"file\";s:25:\"summer-news-2-540x405.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:25:\"summer-news-2-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:25:\"summer-news-2-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:25:\"summer-news-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `smrc_postmeta` VALUES (326,483,'_wp_attached_file','2016/03/summer-room-04.jpg');
INSERT INTO `smrc_postmeta` VALUES (327,483,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:1000;s:4:\"file\";s:26:\"2016/03/summer-room-04.jpg\";s:5:\"sizes\";a:18:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:26:\"summer-room-04-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:26:\"summer-room-04-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:26:\"summer-room-04-600x375.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"summer-room-04-320x200.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:27:\"summer-room-04-1200x750.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:750;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"summer-room-04-160x160.jpg\";s:5:\"width\";i:160;s:6:\"height\";i:160;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:26:\"summer-room-04-768x480.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:27:\"summer-room-04-1536x960.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:960;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"boldthemes_grid\";a:4:{s:4:\"file\";s:26:\"summer-room-04-540x338.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:338;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_11\";a:4:{s:4:\"file\";s:26:\"summer-room-04-540x540.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_22\";a:4:{s:4:\"file\";s:28:\"summer-room-04-1080x1000.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_21\";a:4:{s:4:\"file\";s:27:\"summer-room-04-1080x540.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_12\";a:4:{s:4:\"file\";s:27:\"summer-room-04-540x1000.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_latest_posts\";a:4:{s:4:\"file\";s:26:\"summer-room-04-320x240.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_grid_gallery\";a:4:{s:4:\"file\";s:26:\"summer-room-04-540x405.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:26:\"summer-room-04-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:26:\"summer-room-04-600x375.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:26:\"summer-room-04-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `smrc_postmeta` VALUES (328,322,'_wp_attached_file','2016/02/summer-star-brown.png');
INSERT INTO `smrc_postmeta` VALUES (329,322,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:60;s:6:\"height\";i:57;s:4:\"file\";s:29:\"2016/02/summer-star-brown.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `smrc_postmeta` VALUES (330,562,'_wp_attached_file','2016/02/summer-room-6.jpg');
INSERT INTO `smrc_postmeta` VALUES (331,562,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:600;s:4:\"file\";s:25:\"2016/02/summer-room-6.jpg\";s:5:\"sizes\";a:15:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:25:\"summer-room-6-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:25:\"summer-room-6-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:25:\"summer-room-6-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"summer-room-6-320x240.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"summer-room-6-160x160.jpg\";s:5:\"width\";i:160;s:6:\"height\";i:160;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:25:\"summer-room-6-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"boldthemes_grid\";a:4:{s:4:\"file\";s:25:\"summer-room-6-540x405.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_11\";a:4:{s:4:\"file\";s:25:\"summer-room-6-540x540.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_21\";a:4:{s:4:\"file\";s:25:\"summer-room-6-800x540.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_12\";a:4:{s:4:\"file\";s:25:\"summer-room-6-540x600.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_latest_posts\";a:4:{s:4:\"file\";s:25:\"summer-room-6-320x240.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_grid_gallery\";a:4:{s:4:\"file\";s:25:\"summer-room-6-540x405.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:25:\"summer-room-6-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:25:\"summer-room-6-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:25:\"summer-room-6-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `smrc_postmeta` VALUES (332,558,'_wp_attached_file','2016/02/summer-rooms.jpg');
INSERT INTO `smrc_postmeta` VALUES (333,558,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2500;s:6:\"height\";i:1563;s:4:\"file\";s:24:\"2016/02/summer-rooms.jpg\";s:5:\"sizes\";a:19:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:24:\"summer-rooms-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:24:\"summer-rooms-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:24:\"summer-rooms-600x375.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"summer-rooms-320x200.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:25:\"summer-rooms-1200x750.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:750;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"summer-rooms-160x160.jpg\";s:5:\"width\";i:160;s:6:\"height\";i:160;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:24:\"summer-rooms-768x480.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:25:\"summer-rooms-1536x960.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:960;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:26:\"summer-rooms-2048x1280.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"boldthemes_grid\";a:4:{s:4:\"file\";s:24:\"summer-rooms-540x338.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:338;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_11\";a:4:{s:4:\"file\";s:24:\"summer-rooms-540x540.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_22\";a:4:{s:4:\"file\";s:26:\"summer-rooms-1080x1080.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:1080;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_21\";a:4:{s:4:\"file\";s:25:\"summer-rooms-1080x540.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_12\";a:4:{s:4:\"file\";s:25:\"summer-rooms-540x1080.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:1080;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_latest_posts\";a:4:{s:4:\"file\";s:24:\"summer-rooms-320x240.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_grid_gallery\";a:4:{s:4:\"file\";s:24:\"summer-rooms-540x405.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:24:\"summer-rooms-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:24:\"summer-rooms-600x375.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:24:\"summer-rooms-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `smrc_postmeta` VALUES (334,548,'_wp_attached_file','2016/02/summer-amenities-hotel.jpg');
INSERT INTO `smrc_postmeta` VALUES (335,548,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2500;s:6:\"height\";i:1563;s:4:\"file\";s:34:\"2016/02/summer-amenities-hotel.jpg\";s:5:\"sizes\";a:19:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:34:\"summer-amenities-hotel-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:34:\"summer-amenities-hotel-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:34:\"summer-amenities-hotel-600x375.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:34:\"summer-amenities-hotel-320x200.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:35:\"summer-amenities-hotel-1200x750.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:750;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"summer-amenities-hotel-160x160.jpg\";s:5:\"width\";i:160;s:6:\"height\";i:160;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:34:\"summer-amenities-hotel-768x480.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:35:\"summer-amenities-hotel-1536x960.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:960;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:36:\"summer-amenities-hotel-2048x1280.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"boldthemes_grid\";a:4:{s:4:\"file\";s:34:\"summer-amenities-hotel-540x338.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:338;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_11\";a:4:{s:4:\"file\";s:34:\"summer-amenities-hotel-540x540.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_22\";a:4:{s:4:\"file\";s:36:\"summer-amenities-hotel-1080x1080.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:1080;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_21\";a:4:{s:4:\"file\";s:35:\"summer-amenities-hotel-1080x540.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_12\";a:4:{s:4:\"file\";s:35:\"summer-amenities-hotel-540x1080.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:1080;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_latest_posts\";a:4:{s:4:\"file\";s:34:\"summer-amenities-hotel-320x240.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_grid_gallery\";a:4:{s:4:\"file\";s:34:\"summer-amenities-hotel-540x405.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:34:\"summer-amenities-hotel-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:34:\"summer-amenities-hotel-600x375.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:34:\"summer-amenities-hotel-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `smrc_postmeta` VALUES (336,563,'_wp_attached_file','2016/02/summer-room-5.jpg');
INSERT INTO `smrc_postmeta` VALUES (337,563,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:600;s:4:\"file\";s:25:\"2016/02/summer-room-5.jpg\";s:5:\"sizes\";a:15:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:25:\"summer-room-5-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:25:\"summer-room-5-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:25:\"summer-room-5-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"summer-room-5-320x240.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"summer-room-5-160x160.jpg\";s:5:\"width\";i:160;s:6:\"height\";i:160;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:25:\"summer-room-5-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"boldthemes_grid\";a:4:{s:4:\"file\";s:25:\"summer-room-5-540x405.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_11\";a:4:{s:4:\"file\";s:25:\"summer-room-5-540x540.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_21\";a:4:{s:4:\"file\";s:25:\"summer-room-5-800x540.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_12\";a:4:{s:4:\"file\";s:25:\"summer-room-5-540x600.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_latest_posts\";a:4:{s:4:\"file\";s:25:\"summer-room-5-320x240.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_grid_gallery\";a:4:{s:4:\"file\";s:25:\"summer-room-5-540x405.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:25:\"summer-room-5-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:25:\"summer-room-5-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:25:\"summer-room-5-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `smrc_postmeta` VALUES (338,564,'_wp_attached_file','2016/02/summer-room-8.jpg');
INSERT INTO `smrc_postmeta` VALUES (339,564,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:600;s:4:\"file\";s:25:\"2016/02/summer-room-8.jpg\";s:5:\"sizes\";a:15:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:25:\"summer-room-8-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:25:\"summer-room-8-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:25:\"summer-room-8-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"summer-room-8-320x240.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"summer-room-8-160x160.jpg\";s:5:\"width\";i:160;s:6:\"height\";i:160;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:25:\"summer-room-8-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"boldthemes_grid\";a:4:{s:4:\"file\";s:25:\"summer-room-8-540x405.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_11\";a:4:{s:4:\"file\";s:25:\"summer-room-8-540x540.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_21\";a:4:{s:4:\"file\";s:25:\"summer-room-8-800x540.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_12\";a:4:{s:4:\"file\";s:25:\"summer-room-8-540x600.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_latest_posts\";a:4:{s:4:\"file\";s:25:\"summer-room-8-320x240.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_grid_gallery\";a:4:{s:4:\"file\";s:25:\"summer-room-8-540x405.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:25:\"summer-room-8-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:25:\"summer-room-8-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:25:\"summer-room-8-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `smrc_postmeta` VALUES (340,583,'_wp_attached_file','2016/02/summer-news-01.jpg');
INSERT INTO `smrc_postmeta` VALUES (341,583,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1080;s:6:\"height\";i:810;s:4:\"file\";s:26:\"2016/02/summer-news-01.jpg\";s:5:\"sizes\";a:15:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:26:\"summer-news-01-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:26:\"summer-news-01-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:26:\"summer-news-01-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"summer-news-01-320x240.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"summer-news-01-160x160.jpg\";s:5:\"width\";i:160;s:6:\"height\";i:160;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:26:\"summer-news-01-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"boldthemes_grid\";a:4:{s:4:\"file\";s:26:\"summer-news-01-540x405.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_11\";a:4:{s:4:\"file\";s:26:\"summer-news-01-540x540.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_21\";a:4:{s:4:\"file\";s:27:\"summer-news-01-1080x540.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_12\";a:4:{s:4:\"file\";s:26:\"summer-news-01-540x810.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:810;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_latest_posts\";a:4:{s:4:\"file\";s:26:\"summer-news-01-320x240.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_grid_gallery\";a:4:{s:4:\"file\";s:26:\"summer-news-01-540x405.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:26:\"summer-news-01-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:26:\"summer-news-01-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:26:\"summer-news-01-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `smrc_postmeta` VALUES (342,565,'_wp_attached_file','2016/02/summer-room-7.jpg');
INSERT INTO `smrc_postmeta` VALUES (343,565,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:600;s:4:\"file\";s:25:\"2016/02/summer-room-7.jpg\";s:5:\"sizes\";a:15:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:25:\"summer-room-7-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:25:\"summer-room-7-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:25:\"summer-room-7-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"summer-room-7-320x240.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"summer-room-7-160x160.jpg\";s:5:\"width\";i:160;s:6:\"height\";i:160;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:25:\"summer-room-7-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"boldthemes_grid\";a:4:{s:4:\"file\";s:25:\"summer-room-7-540x405.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_11\";a:4:{s:4:\"file\";s:25:\"summer-room-7-540x540.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_21\";a:4:{s:4:\"file\";s:25:\"summer-room-7-800x540.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_12\";a:4:{s:4:\"file\";s:25:\"summer-room-7-540x600.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_latest_posts\";a:4:{s:4:\"file\";s:25:\"summer-room-7-320x240.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_grid_gallery\";a:4:{s:4:\"file\";s:25:\"summer-room-7-540x405.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:25:\"summer-room-7-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:25:\"summer-room-7-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:25:\"summer-room-7-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `smrc_postmeta` VALUES (344,547,'_wp_attached_file','2016/02/summer-amenities-room.jpg');
INSERT INTO `smrc_postmeta` VALUES (345,547,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2500;s:6:\"height\";i:1563;s:4:\"file\";s:33:\"2016/02/summer-amenities-room.jpg\";s:5:\"sizes\";a:19:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:33:\"summer-amenities-room-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:33:\"summer-amenities-room-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:33:\"summer-amenities-room-600x375.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"summer-amenities-room-320x200.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:34:\"summer-amenities-room-1200x750.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:750;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"summer-amenities-room-160x160.jpg\";s:5:\"width\";i:160;s:6:\"height\";i:160;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:33:\"summer-amenities-room-768x480.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:34:\"summer-amenities-room-1536x960.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:960;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:35:\"summer-amenities-room-2048x1280.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"boldthemes_grid\";a:4:{s:4:\"file\";s:33:\"summer-amenities-room-540x338.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:338;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_11\";a:4:{s:4:\"file\";s:33:\"summer-amenities-room-540x540.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_22\";a:4:{s:4:\"file\";s:35:\"summer-amenities-room-1080x1080.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:1080;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_21\";a:4:{s:4:\"file\";s:34:\"summer-amenities-room-1080x540.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_12\";a:4:{s:4:\"file\";s:34:\"summer-amenities-room-540x1080.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:1080;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_latest_posts\";a:4:{s:4:\"file\";s:33:\"summer-amenities-room-320x240.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_grid_gallery\";a:4:{s:4:\"file\";s:33:\"summer-amenities-room-540x405.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:33:\"summer-amenities-room-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:33:\"summer-amenities-room-600x375.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:33:\"summer-amenities-room-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `smrc_postmeta` VALUES (346,531,'_wp_attached_file','2013/06/keychain-5.jpg');
INSERT INTO `smrc_postmeta` VALUES (347,531,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:22:\"2013/06/keychain-5.jpg\";s:5:\"sizes\";a:15:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:22:\"keychain-5-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:22:\"keychain-5-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:22:\"keychain-5-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"keychain-5-320x320.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"keychain-5-160x160.jpg\";s:5:\"width\";i:160;s:6:\"height\";i:160;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:22:\"keychain-5-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"boldthemes_grid\";a:4:{s:4:\"file\";s:22:\"keychain-5-540x540.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_11\";a:4:{s:4:\"file\";s:22:\"keychain-5-540x540.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_21\";a:4:{s:4:\"file\";s:23:\"keychain-5-1000x540.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_12\";a:4:{s:4:\"file\";s:23:\"keychain-5-540x1000.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_latest_posts\";a:4:{s:4:\"file\";s:22:\"keychain-5-320x240.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_grid_gallery\";a:4:{s:4:\"file\";s:22:\"keychain-5-540x405.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:22:\"keychain-5-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:22:\"keychain-5-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:22:\"keychain-5-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `smrc_postmeta` VALUES (348,525,'_wp_attached_file','2013/06/tshirt-white-3.jpg');
INSERT INTO `smrc_postmeta` VALUES (349,525,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:26:\"2013/06/tshirt-white-3.jpg\";s:5:\"sizes\";a:15:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:26:\"tshirt-white-3-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:26:\"tshirt-white-3-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:26:\"tshirt-white-3-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"tshirt-white-3-320x320.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"tshirt-white-3-160x160.jpg\";s:5:\"width\";i:160;s:6:\"height\";i:160;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:26:\"tshirt-white-3-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"boldthemes_grid\";a:4:{s:4:\"file\";s:26:\"tshirt-white-3-540x540.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_11\";a:4:{s:4:\"file\";s:26:\"tshirt-white-3-540x540.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_21\";a:4:{s:4:\"file\";s:27:\"tshirt-white-3-1000x540.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_12\";a:4:{s:4:\"file\";s:27:\"tshirt-white-3-540x1000.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_latest_posts\";a:4:{s:4:\"file\";s:26:\"tshirt-white-3-320x240.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_grid_gallery\";a:4:{s:4:\"file\";s:26:\"tshirt-white-3-540x405.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:26:\"tshirt-white-3-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:26:\"tshirt-white-3-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:26:\"tshirt-white-3-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `smrc_postmeta` VALUES (350,524,'_wp_attached_file','2013/06/tshirt-white-2-back.jpg');
INSERT INTO `smrc_postmeta` VALUES (351,524,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:31:\"2013/06/tshirt-white-2-back.jpg\";s:5:\"sizes\";a:15:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:31:\"tshirt-white-2-back-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:31:\"tshirt-white-2-back-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:31:\"tshirt-white-2-back-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"tshirt-white-2-back-320x320.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"tshirt-white-2-back-160x160.jpg\";s:5:\"width\";i:160;s:6:\"height\";i:160;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:31:\"tshirt-white-2-back-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"boldthemes_grid\";a:4:{s:4:\"file\";s:31:\"tshirt-white-2-back-540x540.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_11\";a:4:{s:4:\"file\";s:31:\"tshirt-white-2-back-540x540.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_21\";a:4:{s:4:\"file\";s:32:\"tshirt-white-2-back-1000x540.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_12\";a:4:{s:4:\"file\";s:32:\"tshirt-white-2-back-540x1000.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_latest_posts\";a:4:{s:4:\"file\";s:31:\"tshirt-white-2-back-320x240.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_grid_gallery\";a:4:{s:4:\"file\";s:31:\"tshirt-white-2-back-540x405.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:31:\"tshirt-white-2-back-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:31:\"tshirt-white-2-back-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:31:\"tshirt-white-2-back-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `smrc_postmeta` VALUES (352,523,'_wp_attached_file','2013/06/tshirt-white-2.jpg');
INSERT INTO `smrc_postmeta` VALUES (353,523,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:26:\"2013/06/tshirt-white-2.jpg\";s:5:\"sizes\";a:15:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:26:\"tshirt-white-2-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:26:\"tshirt-white-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:26:\"tshirt-white-2-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"tshirt-white-2-320x320.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"tshirt-white-2-160x160.jpg\";s:5:\"width\";i:160;s:6:\"height\";i:160;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:26:\"tshirt-white-2-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"boldthemes_grid\";a:4:{s:4:\"file\";s:26:\"tshirt-white-2-540x540.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_11\";a:4:{s:4:\"file\";s:26:\"tshirt-white-2-540x540.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_21\";a:4:{s:4:\"file\";s:27:\"tshirt-white-2-1000x540.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_12\";a:4:{s:4:\"file\";s:27:\"tshirt-white-2-540x1000.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_latest_posts\";a:4:{s:4:\"file\";s:26:\"tshirt-white-2-320x240.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_grid_gallery\";a:4:{s:4:\"file\";s:26:\"tshirt-white-2-540x405.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:26:\"tshirt-white-2-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:26:\"tshirt-white-2-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:26:\"tshirt-white-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `smrc_postmeta` VALUES (354,526,'_wp_attached_file','2013/06/tshirt-white-3-back.jpg');
INSERT INTO `smrc_postmeta` VALUES (355,526,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:31:\"2013/06/tshirt-white-3-back.jpg\";s:5:\"sizes\";a:15:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:31:\"tshirt-white-3-back-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:31:\"tshirt-white-3-back-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:31:\"tshirt-white-3-back-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"tshirt-white-3-back-320x320.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"tshirt-white-3-back-160x160.jpg\";s:5:\"width\";i:160;s:6:\"height\";i:160;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:31:\"tshirt-white-3-back-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"boldthemes_grid\";a:4:{s:4:\"file\";s:31:\"tshirt-white-3-back-540x540.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_11\";a:4:{s:4:\"file\";s:31:\"tshirt-white-3-back-540x540.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_21\";a:4:{s:4:\"file\";s:32:\"tshirt-white-3-back-1000x540.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_12\";a:4:{s:4:\"file\";s:32:\"tshirt-white-3-back-540x1000.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_latest_posts\";a:4:{s:4:\"file\";s:31:\"tshirt-white-3-back-320x240.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_grid_gallery\";a:4:{s:4:\"file\";s:31:\"tshirt-white-3-back-540x405.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:31:\"tshirt-white-3-back-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:31:\"tshirt-white-3-back-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:31:\"tshirt-white-3-back-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `smrc_postmeta` VALUES (356,527,'_wp_attached_file','2013/06/keychain-1.jpg');
INSERT INTO `smrc_postmeta` VALUES (357,527,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:22:\"2013/06/keychain-1.jpg\";s:5:\"sizes\";a:15:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:22:\"keychain-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:22:\"keychain-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:22:\"keychain-1-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"keychain-1-320x320.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"keychain-1-160x160.jpg\";s:5:\"width\";i:160;s:6:\"height\";i:160;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:22:\"keychain-1-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"boldthemes_grid\";a:4:{s:4:\"file\";s:22:\"keychain-1-540x540.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_11\";a:4:{s:4:\"file\";s:22:\"keychain-1-540x540.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_21\";a:4:{s:4:\"file\";s:23:\"keychain-1-1000x540.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_12\";a:4:{s:4:\"file\";s:23:\"keychain-1-540x1000.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_latest_posts\";a:4:{s:4:\"file\";s:22:\"keychain-1-320x240.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_grid_gallery\";a:4:{s:4:\"file\";s:22:\"keychain-1-540x405.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:22:\"keychain-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:22:\"keychain-1-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:22:\"keychain-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `smrc_postmeta` VALUES (358,529,'_wp_attached_file','2013/06/keychain-3.jpg');
INSERT INTO `smrc_postmeta` VALUES (359,529,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:22:\"2013/06/keychain-3.jpg\";s:5:\"sizes\";a:15:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:22:\"keychain-3-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:22:\"keychain-3-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:22:\"keychain-3-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"keychain-3-320x320.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"keychain-3-160x160.jpg\";s:5:\"width\";i:160;s:6:\"height\";i:160;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:22:\"keychain-3-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"boldthemes_grid\";a:4:{s:4:\"file\";s:22:\"keychain-3-540x540.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_11\";a:4:{s:4:\"file\";s:22:\"keychain-3-540x540.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_21\";a:4:{s:4:\"file\";s:23:\"keychain-3-1000x540.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_12\";a:4:{s:4:\"file\";s:23:\"keychain-3-540x1000.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_latest_posts\";a:4:{s:4:\"file\";s:22:\"keychain-3-320x240.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_grid_gallery\";a:4:{s:4:\"file\";s:22:\"keychain-3-540x405.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:22:\"keychain-3-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:22:\"keychain-3-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:22:\"keychain-3-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `smrc_postmeta` VALUES (360,528,'_wp_attached_file','2013/06/keychain-2.jpg');
INSERT INTO `smrc_postmeta` VALUES (361,528,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:22:\"2013/06/keychain-2.jpg\";s:5:\"sizes\";a:15:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:22:\"keychain-2-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:22:\"keychain-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:22:\"keychain-2-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"keychain-2-320x320.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"keychain-2-160x160.jpg\";s:5:\"width\";i:160;s:6:\"height\";i:160;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:22:\"keychain-2-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"boldthemes_grid\";a:4:{s:4:\"file\";s:22:\"keychain-2-540x540.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_11\";a:4:{s:4:\"file\";s:22:\"keychain-2-540x540.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_21\";a:4:{s:4:\"file\";s:23:\"keychain-2-1000x540.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_12\";a:4:{s:4:\"file\";s:23:\"keychain-2-540x1000.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_latest_posts\";a:4:{s:4:\"file\";s:22:\"keychain-2-320x240.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_grid_gallery\";a:4:{s:4:\"file\";s:22:\"keychain-2-540x405.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:22:\"keychain-2-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:22:\"keychain-2-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:22:\"keychain-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `smrc_postmeta` VALUES (362,584,'_wp_attached_file','2016/02/summer-news-02.jpg');
INSERT INTO `smrc_postmeta` VALUES (363,584,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1080;s:6:\"height\";i:810;s:4:\"file\";s:26:\"2016/02/summer-news-02.jpg\";s:5:\"sizes\";a:15:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:26:\"summer-news-02-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:26:\"summer-news-02-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:26:\"summer-news-02-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"summer-news-02-320x240.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"summer-news-02-160x160.jpg\";s:5:\"width\";i:160;s:6:\"height\";i:160;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:26:\"summer-news-02-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"boldthemes_grid\";a:4:{s:4:\"file\";s:26:\"summer-news-02-540x405.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_11\";a:4:{s:4:\"file\";s:26:\"summer-news-02-540x540.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_21\";a:4:{s:4:\"file\";s:27:\"summer-news-02-1080x540.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_12\";a:4:{s:4:\"file\";s:26:\"summer-news-02-540x810.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:810;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_latest_posts\";a:4:{s:4:\"file\";s:26:\"summer-news-02-320x240.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_grid_gallery\";a:4:{s:4:\"file\";s:26:\"summer-news-02-540x405.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:26:\"summer-news-02-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:26:\"summer-news-02-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:26:\"summer-news-02-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `smrc_postmeta` VALUES (364,585,'_wp_attached_file','2016/02/summer-news-03.jpg');
INSERT INTO `smrc_postmeta` VALUES (365,585,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1080;s:6:\"height\";i:810;s:4:\"file\";s:26:\"2016/02/summer-news-03.jpg\";s:5:\"sizes\";a:15:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:26:\"summer-news-03-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:26:\"summer-news-03-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:26:\"summer-news-03-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"summer-news-03-320x240.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"summer-news-03-160x160.jpg\";s:5:\"width\";i:160;s:6:\"height\";i:160;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:26:\"summer-news-03-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"boldthemes_grid\";a:4:{s:4:\"file\";s:26:\"summer-news-03-540x405.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_11\";a:4:{s:4:\"file\";s:26:\"summer-news-03-540x540.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_21\";a:4:{s:4:\"file\";s:27:\"summer-news-03-1080x540.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_12\";a:4:{s:4:\"file\";s:26:\"summer-news-03-540x810.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:810;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_latest_posts\";a:4:{s:4:\"file\";s:26:\"summer-news-03-320x240.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_grid_gallery\";a:4:{s:4:\"file\";s:26:\"summer-news-03-540x405.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:26:\"summer-news-03-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:26:\"summer-news-03-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:26:\"summer-news-03-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `smrc_postmeta` VALUES (366,613,'_wp_attached_file','2015/08/summer-news-14.jpg');
INSERT INTO `smrc_postmeta` VALUES (367,613,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1080;s:6:\"height\";i:810;s:4:\"file\";s:26:\"2015/08/summer-news-14.jpg\";s:5:\"sizes\";a:15:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:26:\"summer-news-14-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:26:\"summer-news-14-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:26:\"summer-news-14-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"summer-news-14-320x240.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"summer-news-14-160x160.jpg\";s:5:\"width\";i:160;s:6:\"height\";i:160;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:26:\"summer-news-14-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"boldthemes_grid\";a:4:{s:4:\"file\";s:26:\"summer-news-14-540x405.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_11\";a:4:{s:4:\"file\";s:26:\"summer-news-14-540x540.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_21\";a:4:{s:4:\"file\";s:27:\"summer-news-14-1080x540.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_12\";a:4:{s:4:\"file\";s:26:\"summer-news-14-540x810.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:810;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_latest_posts\";a:4:{s:4:\"file\";s:26:\"summer-news-14-320x240.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_grid_gallery\";a:4:{s:4:\"file\";s:26:\"summer-news-14-540x405.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:26:\"summer-news-14-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:26:\"summer-news-14-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:26:\"summer-news-14-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `smrc_postmeta` VALUES (368,484,'_wp_attached_file','2016/03/summer-room-05.jpg');
INSERT INTO `smrc_postmeta` VALUES (369,484,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:1000;s:4:\"file\";s:26:\"2016/03/summer-room-05.jpg\";s:5:\"sizes\";a:18:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:26:\"summer-room-05-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:26:\"summer-room-05-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:26:\"summer-room-05-600x375.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"summer-room-05-320x200.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:27:\"summer-room-05-1200x750.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:750;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"summer-room-05-160x160.jpg\";s:5:\"width\";i:160;s:6:\"height\";i:160;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:26:\"summer-room-05-768x480.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:27:\"summer-room-05-1536x960.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:960;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"boldthemes_grid\";a:4:{s:4:\"file\";s:26:\"summer-room-05-540x338.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:338;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_11\";a:4:{s:4:\"file\";s:26:\"summer-room-05-540x540.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_22\";a:4:{s:4:\"file\";s:28:\"summer-room-05-1080x1000.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_21\";a:4:{s:4:\"file\";s:27:\"summer-room-05-1080x540.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_12\";a:4:{s:4:\"file\";s:27:\"summer-room-05-540x1000.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_latest_posts\";a:4:{s:4:\"file\";s:26:\"summer-room-05-320x240.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_grid_gallery\";a:4:{s:4:\"file\";s:26:\"summer-room-05-540x405.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:26:\"summer-room-05-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:26:\"summer-room-05-600x375.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:26:\"summer-room-05-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `smrc_postmeta` VALUES (370,612,'_wp_attached_file','2015/08/summer-news-13.jpg');
INSERT INTO `smrc_postmeta` VALUES (371,612,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1080;s:6:\"height\";i:810;s:4:\"file\";s:26:\"2015/08/summer-news-13.jpg\";s:5:\"sizes\";a:15:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:26:\"summer-news-13-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:26:\"summer-news-13-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:26:\"summer-news-13-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"summer-news-13-320x240.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"summer-news-13-160x160.jpg\";s:5:\"width\";i:160;s:6:\"height\";i:160;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:26:\"summer-news-13-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"boldthemes_grid\";a:4:{s:4:\"file\";s:26:\"summer-news-13-540x405.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_11\";a:4:{s:4:\"file\";s:26:\"summer-news-13-540x540.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_21\";a:4:{s:4:\"file\";s:27:\"summer-news-13-1080x540.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_12\";a:4:{s:4:\"file\";s:26:\"summer-news-13-540x810.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:810;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_latest_posts\";a:4:{s:4:\"file\";s:26:\"summer-news-13-320x240.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_grid_gallery\";a:4:{s:4:\"file\";s:26:\"summer-news-13-540x405.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:26:\"summer-news-13-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:26:\"summer-news-13-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:26:\"summer-news-13-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `smrc_postmeta` VALUES (372,617,'_wp_attached_file','2016/02/summer-overview-01.jpg');
INSERT INTO `smrc_postmeta` VALUES (373,617,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:800;s:4:\"file\";s:30:\"2016/02/summer-overview-01.jpg\";s:5:\"sizes\";a:15:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:30:\"summer-overview-01-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:30:\"summer-overview-01-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:30:\"summer-overview-01-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:30:\"summer-overview-01-320x320.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"summer-overview-01-160x160.jpg\";s:5:\"width\";i:160;s:6:\"height\";i:160;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:30:\"summer-overview-01-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"boldthemes_grid\";a:4:{s:4:\"file\";s:30:\"summer-overview-01-540x540.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_11\";a:4:{s:4:\"file\";s:30:\"summer-overview-01-540x540.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_21\";a:4:{s:4:\"file\";s:30:\"summer-overview-01-800x540.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_12\";a:4:{s:4:\"file\";s:30:\"summer-overview-01-540x800.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_latest_posts\";a:4:{s:4:\"file\";s:30:\"summer-overview-01-320x240.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_grid_gallery\";a:4:{s:4:\"file\";s:30:\"summer-overview-01-540x405.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:30:\"summer-overview-01-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:30:\"summer-overview-01-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:30:\"summer-overview-01-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `smrc_postmeta` VALUES (374,618,'_wp_attached_file','2016/02/summer-overview-02.jpg');
INSERT INTO `smrc_postmeta` VALUES (375,618,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:800;s:4:\"file\";s:30:\"2016/02/summer-overview-02.jpg\";s:5:\"sizes\";a:15:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:30:\"summer-overview-02-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:30:\"summer-overview-02-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:30:\"summer-overview-02-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:30:\"summer-overview-02-320x320.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"summer-overview-02-160x160.jpg\";s:5:\"width\";i:160;s:6:\"height\";i:160;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:30:\"summer-overview-02-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"boldthemes_grid\";a:4:{s:4:\"file\";s:30:\"summer-overview-02-540x540.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_11\";a:4:{s:4:\"file\";s:30:\"summer-overview-02-540x540.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_21\";a:4:{s:4:\"file\";s:30:\"summer-overview-02-800x540.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_12\";a:4:{s:4:\"file\";s:30:\"summer-overview-02-540x800.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_latest_posts\";a:4:{s:4:\"file\";s:30:\"summer-overview-02-320x240.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_grid_gallery\";a:4:{s:4:\"file\";s:30:\"summer-overview-02-540x405.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:30:\"summer-overview-02-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:30:\"summer-overview-02-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:30:\"summer-overview-02-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `smrc_postmeta` VALUES (376,620,'_wp_attached_file','2016/02/summer-overview-04.jpg');
INSERT INTO `smrc_postmeta` VALUES (377,620,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:800;s:4:\"file\";s:30:\"2016/02/summer-overview-04.jpg\";s:5:\"sizes\";a:15:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:30:\"summer-overview-04-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:30:\"summer-overview-04-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:30:\"summer-overview-04-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:30:\"summer-overview-04-320x320.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"summer-overview-04-160x160.jpg\";s:5:\"width\";i:160;s:6:\"height\";i:160;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:30:\"summer-overview-04-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"boldthemes_grid\";a:4:{s:4:\"file\";s:30:\"summer-overview-04-540x540.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_11\";a:4:{s:4:\"file\";s:30:\"summer-overview-04-540x540.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_21\";a:4:{s:4:\"file\";s:30:\"summer-overview-04-800x540.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_12\";a:4:{s:4:\"file\";s:30:\"summer-overview-04-540x800.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_latest_posts\";a:4:{s:4:\"file\";s:30:\"summer-overview-04-320x240.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_grid_gallery\";a:4:{s:4:\"file\";s:30:\"summer-overview-04-540x405.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:30:\"summer-overview-04-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:30:\"summer-overview-04-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:30:\"summer-overview-04-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `smrc_postmeta` VALUES (378,619,'_wp_attached_file','2016/02/summer-overview-03.jpg');
INSERT INTO `smrc_postmeta` VALUES (379,619,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:800;s:4:\"file\";s:30:\"2016/02/summer-overview-03.jpg\";s:5:\"sizes\";a:15:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:30:\"summer-overview-03-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:30:\"summer-overview-03-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:30:\"summer-overview-03-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:30:\"summer-overview-03-320x320.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"summer-overview-03-160x160.jpg\";s:5:\"width\";i:160;s:6:\"height\";i:160;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:30:\"summer-overview-03-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"boldthemes_grid\";a:4:{s:4:\"file\";s:30:\"summer-overview-03-540x540.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_11\";a:4:{s:4:\"file\";s:30:\"summer-overview-03-540x540.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_21\";a:4:{s:4:\"file\";s:30:\"summer-overview-03-800x540.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_12\";a:4:{s:4:\"file\";s:30:\"summer-overview-03-540x800.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_latest_posts\";a:4:{s:4:\"file\";s:30:\"summer-overview-03-320x240.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_grid_gallery\";a:4:{s:4:\"file\";s:30:\"summer-overview-03-540x405.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:30:\"summer-overview-03-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:30:\"summer-overview-03-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:30:\"summer-overview-03-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `smrc_postmeta` VALUES (380,611,'_wp_attached_file','2015/08/summer-news-12.jpg');
INSERT INTO `smrc_postmeta` VALUES (381,611,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1080;s:6:\"height\";i:810;s:4:\"file\";s:26:\"2015/08/summer-news-12.jpg\";s:5:\"sizes\";a:15:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:26:\"summer-news-12-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:26:\"summer-news-12-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:26:\"summer-news-12-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"summer-news-12-320x240.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"summer-news-12-160x160.jpg\";s:5:\"width\";i:160;s:6:\"height\";i:160;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:26:\"summer-news-12-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"boldthemes_grid\";a:4:{s:4:\"file\";s:26:\"summer-news-12-540x405.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_11\";a:4:{s:4:\"file\";s:26:\"summer-news-12-540x540.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_21\";a:4:{s:4:\"file\";s:27:\"summer-news-12-1080x540.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_12\";a:4:{s:4:\"file\";s:26:\"summer-news-12-540x810.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:810;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_latest_posts\";a:4:{s:4:\"file\";s:26:\"summer-news-12-320x240.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_grid_gallery\";a:4:{s:4:\"file\";s:26:\"summer-news-12-540x405.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:26:\"summer-news-12-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:26:\"summer-news-12-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:26:\"summer-news-12-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `smrc_postmeta` VALUES (382,610,'_wp_attached_file','2015/08/summer-news-11.jpg');
INSERT INTO `smrc_postmeta` VALUES (383,610,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1080;s:6:\"height\";i:810;s:4:\"file\";s:26:\"2015/08/summer-news-11.jpg\";s:5:\"sizes\";a:15:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:26:\"summer-news-11-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:26:\"summer-news-11-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:26:\"summer-news-11-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"summer-news-11-320x240.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"summer-news-11-160x160.jpg\";s:5:\"width\";i:160;s:6:\"height\";i:160;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:26:\"summer-news-11-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"boldthemes_grid\";a:4:{s:4:\"file\";s:26:\"summer-news-11-540x405.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_11\";a:4:{s:4:\"file\";s:26:\"summer-news-11-540x540.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_21\";a:4:{s:4:\"file\";s:27:\"summer-news-11-1080x540.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_12\";a:4:{s:4:\"file\";s:26:\"summer-news-11-540x810.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:810;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_latest_posts\";a:4:{s:4:\"file\";s:26:\"summer-news-11-320x240.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_grid_gallery\";a:4:{s:4:\"file\";s:26:\"summer-news-11-540x405.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:26:\"summer-news-11-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:26:\"summer-news-11-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:26:\"summer-news-11-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `smrc_postmeta` VALUES (384,588,'_wp_attached_file','2016/02/summer-news-06.jpg');
INSERT INTO `smrc_postmeta` VALUES (385,588,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1080;s:6:\"height\";i:810;s:4:\"file\";s:26:\"2016/02/summer-news-06.jpg\";s:5:\"sizes\";a:15:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:26:\"summer-news-06-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:26:\"summer-news-06-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:26:\"summer-news-06-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"summer-news-06-320x240.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"summer-news-06-160x160.jpg\";s:5:\"width\";i:160;s:6:\"height\";i:160;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:26:\"summer-news-06-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"boldthemes_grid\";a:4:{s:4:\"file\";s:26:\"summer-news-06-540x405.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_11\";a:4:{s:4:\"file\";s:26:\"summer-news-06-540x540.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_21\";a:4:{s:4:\"file\";s:27:\"summer-news-06-1080x540.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_12\";a:4:{s:4:\"file\";s:26:\"summer-news-06-540x810.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:810;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_latest_posts\";a:4:{s:4:\"file\";s:26:\"summer-news-06-320x240.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_grid_gallery\";a:4:{s:4:\"file\";s:26:\"summer-news-06-540x405.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:26:\"summer-news-06-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:26:\"summer-news-06-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:26:\"summer-news-06-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `smrc_postmeta` VALUES (386,587,'_wp_attached_file','2016/02/summer-news-05.jpg');
INSERT INTO `smrc_postmeta` VALUES (387,587,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1080;s:6:\"height\";i:810;s:4:\"file\";s:26:\"2016/02/summer-news-05.jpg\";s:5:\"sizes\";a:15:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:26:\"summer-news-05-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:26:\"summer-news-05-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:26:\"summer-news-05-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"summer-news-05-320x240.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"summer-news-05-160x160.jpg\";s:5:\"width\";i:160;s:6:\"height\";i:160;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:26:\"summer-news-05-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"boldthemes_grid\";a:4:{s:4:\"file\";s:26:\"summer-news-05-540x405.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_11\";a:4:{s:4:\"file\";s:26:\"summer-news-05-540x540.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_21\";a:4:{s:4:\"file\";s:27:\"summer-news-05-1080x540.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_12\";a:4:{s:4:\"file\";s:26:\"summer-news-05-540x810.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:810;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_latest_posts\";a:4:{s:4:\"file\";s:26:\"summer-news-05-320x240.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_grid_gallery\";a:4:{s:4:\"file\";s:26:\"summer-news-05-540x405.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:26:\"summer-news-05-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:26:\"summer-news-05-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:26:\"summer-news-05-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `smrc_postmeta` VALUES (388,586,'_wp_attached_file','2016/02/summer-news-04.jpg');
INSERT INTO `smrc_postmeta` VALUES (389,586,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1080;s:6:\"height\";i:810;s:4:\"file\";s:26:\"2016/02/summer-news-04.jpg\";s:5:\"sizes\";a:15:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:26:\"summer-news-04-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:26:\"summer-news-04-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:26:\"summer-news-04-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"summer-news-04-320x240.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"summer-news-04-160x160.jpg\";s:5:\"width\";i:160;s:6:\"height\";i:160;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:26:\"summer-news-04-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"boldthemes_grid\";a:4:{s:4:\"file\";s:26:\"summer-news-04-540x405.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_11\";a:4:{s:4:\"file\";s:26:\"summer-news-04-540x540.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_21\";a:4:{s:4:\"file\";s:27:\"summer-news-04-1080x540.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_12\";a:4:{s:4:\"file\";s:26:\"summer-news-04-540x810.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:810;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_latest_posts\";a:4:{s:4:\"file\";s:26:\"summer-news-04-320x240.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_grid_gallery\";a:4:{s:4:\"file\";s:26:\"summer-news-04-540x405.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:26:\"summer-news-04-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:26:\"summer-news-04-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:26:\"summer-news-04-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `smrc_postmeta` VALUES (390,589,'_wp_attached_file','2016/02/summer-news-07.jpg');
INSERT INTO `smrc_postmeta` VALUES (391,589,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1080;s:6:\"height\";i:810;s:4:\"file\";s:26:\"2016/02/summer-news-07.jpg\";s:5:\"sizes\";a:15:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:26:\"summer-news-07-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:26:\"summer-news-07-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:26:\"summer-news-07-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"summer-news-07-320x240.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"summer-news-07-160x160.jpg\";s:5:\"width\";i:160;s:6:\"height\";i:160;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:26:\"summer-news-07-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"boldthemes_grid\";a:4:{s:4:\"file\";s:26:\"summer-news-07-540x405.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_11\";a:4:{s:4:\"file\";s:26:\"summer-news-07-540x540.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_21\";a:4:{s:4:\"file\";s:27:\"summer-news-07-1080x540.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_12\";a:4:{s:4:\"file\";s:26:\"summer-news-07-540x810.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:810;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_latest_posts\";a:4:{s:4:\"file\";s:26:\"summer-news-07-320x240.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_grid_gallery\";a:4:{s:4:\"file\";s:26:\"summer-news-07-540x405.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:26:\"summer-news-07-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:26:\"summer-news-07-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:26:\"summer-news-07-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `smrc_postmeta` VALUES (392,591,'_wp_attached_file','2015/09/summer-news-08.jpg');
INSERT INTO `smrc_postmeta` VALUES (393,591,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1080;s:6:\"height\";i:810;s:4:\"file\";s:26:\"2015/09/summer-news-08.jpg\";s:5:\"sizes\";a:15:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:26:\"summer-news-08-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:26:\"summer-news-08-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:26:\"summer-news-08-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"summer-news-08-320x240.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"summer-news-08-160x160.jpg\";s:5:\"width\";i:160;s:6:\"height\";i:160;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:26:\"summer-news-08-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"boldthemes_grid\";a:4:{s:4:\"file\";s:26:\"summer-news-08-540x405.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_11\";a:4:{s:4:\"file\";s:26:\"summer-news-08-540x540.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_21\";a:4:{s:4:\"file\";s:27:\"summer-news-08-1080x540.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_12\";a:4:{s:4:\"file\";s:26:\"summer-news-08-540x810.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:810;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_latest_posts\";a:4:{s:4:\"file\";s:26:\"summer-news-08-320x240.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_grid_gallery\";a:4:{s:4:\"file\";s:26:\"summer-news-08-540x405.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:26:\"summer-news-08-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:26:\"summer-news-08-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:26:\"summer-news-08-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `smrc_postmeta` VALUES (394,606,'_wp_attached_file','2015/09/summer-news-10.jpg');
INSERT INTO `smrc_postmeta` VALUES (395,606,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1080;s:6:\"height\";i:810;s:4:\"file\";s:26:\"2015/09/summer-news-10.jpg\";s:5:\"sizes\";a:15:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:26:\"summer-news-10-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:26:\"summer-news-10-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:26:\"summer-news-10-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"summer-news-10-320x240.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"summer-news-10-160x160.jpg\";s:5:\"width\";i:160;s:6:\"height\";i:160;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:26:\"summer-news-10-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"boldthemes_grid\";a:4:{s:4:\"file\";s:26:\"summer-news-10-540x405.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_11\";a:4:{s:4:\"file\";s:26:\"summer-news-10-540x540.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_21\";a:4:{s:4:\"file\";s:27:\"summer-news-10-1080x540.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_12\";a:4:{s:4:\"file\";s:26:\"summer-news-10-540x810.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:810;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_latest_posts\";a:4:{s:4:\"file\";s:26:\"summer-news-10-320x240.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_grid_gallery\";a:4:{s:4:\"file\";s:26:\"summer-news-10-540x405.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:26:\"summer-news-10-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:26:\"summer-news-10-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:26:\"summer-news-10-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `smrc_postmeta` VALUES (396,595,'_wp_attached_file','2015/08/summer-news-09.jpg');
INSERT INTO `smrc_postmeta` VALUES (397,595,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1080;s:6:\"height\";i:810;s:4:\"file\";s:26:\"2015/08/summer-news-09.jpg\";s:5:\"sizes\";a:15:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:26:\"summer-news-09-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:26:\"summer-news-09-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:26:\"summer-news-09-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"summer-news-09-320x240.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"summer-news-09-160x160.jpg\";s:5:\"width\";i:160;s:6:\"height\";i:160;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:26:\"summer-news-09-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"boldthemes_grid\";a:4:{s:4:\"file\";s:26:\"summer-news-09-540x405.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_11\";a:4:{s:4:\"file\";s:26:\"summer-news-09-540x540.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_21\";a:4:{s:4:\"file\";s:27:\"summer-news-09-1080x540.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_12\";a:4:{s:4:\"file\";s:26:\"summer-news-09-540x810.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:810;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_latest_posts\";a:4:{s:4:\"file\";s:26:\"summer-news-09-320x240.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_grid_gallery\";a:4:{s:4:\"file\";s:26:\"summer-news-09-540x405.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:26:\"summer-news-09-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:26:\"summer-news-09-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:26:\"summer-news-09-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `smrc_postmeta` VALUES (398,522,'_wp_attached_file','2013/06/tshirt-white-1-back.jpg');
INSERT INTO `smrc_postmeta` VALUES (399,522,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:31:\"2013/06/tshirt-white-1-back.jpg\";s:5:\"sizes\";a:15:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:31:\"tshirt-white-1-back-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:31:\"tshirt-white-1-back-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:31:\"tshirt-white-1-back-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"tshirt-white-1-back-320x320.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"tshirt-white-1-back-160x160.jpg\";s:5:\"width\";i:160;s:6:\"height\";i:160;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:31:\"tshirt-white-1-back-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"boldthemes_grid\";a:4:{s:4:\"file\";s:31:\"tshirt-white-1-back-540x540.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_11\";a:4:{s:4:\"file\";s:31:\"tshirt-white-1-back-540x540.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_21\";a:4:{s:4:\"file\";s:32:\"tshirt-white-1-back-1000x540.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_12\";a:4:{s:4:\"file\";s:32:\"tshirt-white-1-back-540x1000.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_latest_posts\";a:4:{s:4:\"file\";s:31:\"tshirt-white-1-back-320x240.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_grid_gallery\";a:4:{s:4:\"file\";s:31:\"tshirt-white-1-back-540x405.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:31:\"tshirt-white-1-back-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:31:\"tshirt-white-1-back-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:31:\"tshirt-white-1-back-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `smrc_postmeta` VALUES (400,530,'_wp_attached_file','2013/06/keychain-4.jpg');
INSERT INTO `smrc_postmeta` VALUES (401,530,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:22:\"2013/06/keychain-4.jpg\";s:5:\"sizes\";a:15:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:22:\"keychain-4-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:22:\"keychain-4-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:22:\"keychain-4-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"keychain-4-320x320.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"keychain-4-160x160.jpg\";s:5:\"width\";i:160;s:6:\"height\";i:160;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:22:\"keychain-4-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"boldthemes_grid\";a:4:{s:4:\"file\";s:22:\"keychain-4-540x540.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_11\";a:4:{s:4:\"file\";s:22:\"keychain-4-540x540.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_21\";a:4:{s:4:\"file\";s:23:\"keychain-4-1000x540.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_12\";a:4:{s:4:\"file\";s:23:\"keychain-4-540x1000.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_latest_posts\";a:4:{s:4:\"file\";s:22:\"keychain-4-320x240.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_grid_gallery\";a:4:{s:4:\"file\";s:22:\"keychain-4-540x405.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:22:\"keychain-4-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:22:\"keychain-4-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:22:\"keychain-4-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `smrc_postmeta` VALUES (402,496,'_wp_attached_file','2016/03/summer-room-17.jpg');
INSERT INTO `smrc_postmeta` VALUES (403,496,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:1000;s:4:\"file\";s:26:\"2016/03/summer-room-17.jpg\";s:5:\"sizes\";a:18:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:26:\"summer-room-17-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:26:\"summer-room-17-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:26:\"summer-room-17-600x375.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"summer-room-17-320x200.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:27:\"summer-room-17-1200x750.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:750;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"summer-room-17-160x160.jpg\";s:5:\"width\";i:160;s:6:\"height\";i:160;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:26:\"summer-room-17-768x480.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:27:\"summer-room-17-1536x960.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:960;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"boldthemes_grid\";a:4:{s:4:\"file\";s:26:\"summer-room-17-540x338.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:338;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_11\";a:4:{s:4:\"file\";s:26:\"summer-room-17-540x540.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_22\";a:4:{s:4:\"file\";s:28:\"summer-room-17-1080x1000.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_21\";a:4:{s:4:\"file\";s:27:\"summer-room-17-1080x540.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_12\";a:4:{s:4:\"file\";s:27:\"summer-room-17-540x1000.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_latest_posts\";a:4:{s:4:\"file\";s:26:\"summer-room-17-320x240.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_grid_gallery\";a:4:{s:4:\"file\";s:26:\"summer-room-17-540x405.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:26:\"summer-room-17-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:26:\"summer-room-17-600x375.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:26:\"summer-room-17-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `smrc_postmeta` VALUES (404,495,'_wp_attached_file','2016/03/summer-room-16.jpg');
INSERT INTO `smrc_postmeta` VALUES (405,495,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:1000;s:4:\"file\";s:26:\"2016/03/summer-room-16.jpg\";s:5:\"sizes\";a:18:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:26:\"summer-room-16-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:26:\"summer-room-16-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:26:\"summer-room-16-600x375.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"summer-room-16-320x200.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:27:\"summer-room-16-1200x750.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:750;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"summer-room-16-160x160.jpg\";s:5:\"width\";i:160;s:6:\"height\";i:160;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:26:\"summer-room-16-768x480.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:27:\"summer-room-16-1536x960.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:960;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"boldthemes_grid\";a:4:{s:4:\"file\";s:26:\"summer-room-16-540x338.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:338;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_11\";a:4:{s:4:\"file\";s:26:\"summer-room-16-540x540.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_22\";a:4:{s:4:\"file\";s:28:\"summer-room-16-1080x1000.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_21\";a:4:{s:4:\"file\";s:27:\"summer-room-16-1080x540.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_12\";a:4:{s:4:\"file\";s:27:\"summer-room-16-540x1000.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_latest_posts\";a:4:{s:4:\"file\";s:26:\"summer-room-16-320x240.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_grid_gallery\";a:4:{s:4:\"file\";s:26:\"summer-room-16-540x405.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:26:\"summer-room-16-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:26:\"summer-room-16-600x375.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:26:\"summer-room-16-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `smrc_postmeta` VALUES (406,521,'_wp_attached_file','2013/06/tshirt-white-1.jpg');
INSERT INTO `smrc_postmeta` VALUES (407,521,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:26:\"2013/06/tshirt-white-1.jpg\";s:5:\"sizes\";a:15:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:26:\"tshirt-white-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:26:\"tshirt-white-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:26:\"tshirt-white-1-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"tshirt-white-1-320x320.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"tshirt-white-1-160x160.jpg\";s:5:\"width\";i:160;s:6:\"height\";i:160;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:26:\"tshirt-white-1-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"boldthemes_grid\";a:4:{s:4:\"file\";s:26:\"tshirt-white-1-540x540.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_11\";a:4:{s:4:\"file\";s:26:\"tshirt-white-1-540x540.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_21\";a:4:{s:4:\"file\";s:27:\"tshirt-white-1-1000x540.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_12\";a:4:{s:4:\"file\";s:27:\"tshirt-white-1-540x1000.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_latest_posts\";a:4:{s:4:\"file\";s:26:\"tshirt-white-1-320x240.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_grid_gallery\";a:4:{s:4:\"file\";s:26:\"tshirt-white-1-540x405.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:26:\"tshirt-white-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:26:\"tshirt-white-1-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:26:\"tshirt-white-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `smrc_postmeta` VALUES (408,500,'_wp_attached_file','2013/06/mug-brown-california.jpg');
INSERT INTO `smrc_postmeta` VALUES (409,500,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:32:\"2013/06/mug-brown-california.jpg\";s:5:\"sizes\";a:15:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:32:\"mug-brown-california-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:32:\"mug-brown-california-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:32:\"mug-brown-california-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"mug-brown-california-320x320.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"mug-brown-california-160x160.jpg\";s:5:\"width\";i:160;s:6:\"height\";i:160;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:32:\"mug-brown-california-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"boldthemes_grid\";a:4:{s:4:\"file\";s:32:\"mug-brown-california-540x540.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_11\";a:4:{s:4:\"file\";s:32:\"mug-brown-california-540x540.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_21\";a:4:{s:4:\"file\";s:33:\"mug-brown-california-1000x540.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_12\";a:4:{s:4:\"file\";s:33:\"mug-brown-california-540x1000.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_latest_posts\";a:4:{s:4:\"file\";s:32:\"mug-brown-california-320x240.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_grid_gallery\";a:4:{s:4:\"file\";s:32:\"mug-brown-california-540x405.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:32:\"mug-brown-california-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:32:\"mug-brown-california-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:32:\"mug-brown-california-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `smrc_postmeta` VALUES (410,501,'_wp_attached_file','2013/06/mug-brown-california-star.jpg');
INSERT INTO `smrc_postmeta` VALUES (411,501,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:37:\"2013/06/mug-brown-california-star.jpg\";s:5:\"sizes\";a:15:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:37:\"mug-brown-california-star-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:37:\"mug-brown-california-star-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:37:\"mug-brown-california-star-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:37:\"mug-brown-california-star-320x320.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:37:\"mug-brown-california-star-160x160.jpg\";s:5:\"width\";i:160;s:6:\"height\";i:160;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:37:\"mug-brown-california-star-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"boldthemes_grid\";a:4:{s:4:\"file\";s:37:\"mug-brown-california-star-540x540.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_11\";a:4:{s:4:\"file\";s:37:\"mug-brown-california-star-540x540.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_21\";a:4:{s:4:\"file\";s:38:\"mug-brown-california-star-1000x540.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_12\";a:4:{s:4:\"file\";s:38:\"mug-brown-california-star-540x1000.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_latest_posts\";a:4:{s:4:\"file\";s:37:\"mug-brown-california-star-320x240.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_grid_gallery\";a:4:{s:4:\"file\";s:37:\"mug-brown-california-star-540x405.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:37:\"mug-brown-california-star-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:37:\"mug-brown-california-star-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:37:\"mug-brown-california-star-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `smrc_postmeta` VALUES (412,503,'_wp_attached_file','2013/06/mug-red-california.jpg');
INSERT INTO `smrc_postmeta` VALUES (413,503,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:30:\"2013/06/mug-red-california.jpg\";s:5:\"sizes\";a:15:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:30:\"mug-red-california-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:30:\"mug-red-california-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:30:\"mug-red-california-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:30:\"mug-red-california-320x320.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"mug-red-california-160x160.jpg\";s:5:\"width\";i:160;s:6:\"height\";i:160;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:30:\"mug-red-california-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"boldthemes_grid\";a:4:{s:4:\"file\";s:30:\"mug-red-california-540x540.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_11\";a:4:{s:4:\"file\";s:30:\"mug-red-california-540x540.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_21\";a:4:{s:4:\"file\";s:31:\"mug-red-california-1000x540.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_12\";a:4:{s:4:\"file\";s:31:\"mug-red-california-540x1000.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_latest_posts\";a:4:{s:4:\"file\";s:30:\"mug-red-california-320x240.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_grid_gallery\";a:4:{s:4:\"file\";s:30:\"mug-red-california-540x405.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:30:\"mug-red-california-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:30:\"mug-red-california-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:30:\"mug-red-california-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `smrc_postmeta` VALUES (414,502,'_wp_attached_file','2013/06/mug-brown-california-star-big.jpg');
INSERT INTO `smrc_postmeta` VALUES (415,502,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:41:\"2013/06/mug-brown-california-star-big.jpg\";s:5:\"sizes\";a:15:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:41:\"mug-brown-california-star-big-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:41:\"mug-brown-california-star-big-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:41:\"mug-brown-california-star-big-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:41:\"mug-brown-california-star-big-320x320.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:41:\"mug-brown-california-star-big-160x160.jpg\";s:5:\"width\";i:160;s:6:\"height\";i:160;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:41:\"mug-brown-california-star-big-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"boldthemes_grid\";a:4:{s:4:\"file\";s:41:\"mug-brown-california-star-big-540x540.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_11\";a:4:{s:4:\"file\";s:41:\"mug-brown-california-star-big-540x540.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_21\";a:4:{s:4:\"file\";s:42:\"mug-brown-california-star-big-1000x540.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_12\";a:4:{s:4:\"file\";s:42:\"mug-brown-california-star-big-540x1000.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_latest_posts\";a:4:{s:4:\"file\";s:41:\"mug-brown-california-star-big-320x240.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_grid_gallery\";a:4:{s:4:\"file\";s:41:\"mug-brown-california-star-big-540x405.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:41:\"mug-brown-california-star-big-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:41:\"mug-brown-california-star-big-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:41:\"mug-brown-california-star-big-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `smrc_postmeta` VALUES (416,493,'_wp_attached_file','2016/03/summer-room-14.jpg');
INSERT INTO `smrc_postmeta` VALUES (417,493,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:1000;s:4:\"file\";s:26:\"2016/03/summer-room-14.jpg\";s:5:\"sizes\";a:18:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:26:\"summer-room-14-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:26:\"summer-room-14-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:26:\"summer-room-14-600x375.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"summer-room-14-320x200.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:27:\"summer-room-14-1200x750.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:750;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"summer-room-14-160x160.jpg\";s:5:\"width\";i:160;s:6:\"height\";i:160;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:26:\"summer-room-14-768x480.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:27:\"summer-room-14-1536x960.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:960;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"boldthemes_grid\";a:4:{s:4:\"file\";s:26:\"summer-room-14-540x338.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:338;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_11\";a:4:{s:4:\"file\";s:26:\"summer-room-14-540x540.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_22\";a:4:{s:4:\"file\";s:28:\"summer-room-14-1080x1000.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_21\";a:4:{s:4:\"file\";s:27:\"summer-room-14-1080x540.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_12\";a:4:{s:4:\"file\";s:27:\"summer-room-14-540x1000.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_latest_posts\";a:4:{s:4:\"file\";s:26:\"summer-room-14-320x240.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_grid_gallery\";a:4:{s:4:\"file\";s:26:\"summer-room-14-540x405.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:26:\"summer-room-14-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:26:\"summer-room-14-600x375.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:26:\"summer-room-14-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `smrc_postmeta` VALUES (418,492,'_wp_attached_file','2016/03/summer-room-13.jpg');
INSERT INTO `smrc_postmeta` VALUES (419,492,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:1000;s:4:\"file\";s:26:\"2016/03/summer-room-13.jpg\";s:5:\"sizes\";a:18:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:26:\"summer-room-13-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:26:\"summer-room-13-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:26:\"summer-room-13-600x375.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"summer-room-13-320x200.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:27:\"summer-room-13-1200x750.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:750;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"summer-room-13-160x160.jpg\";s:5:\"width\";i:160;s:6:\"height\";i:160;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:26:\"summer-room-13-768x480.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:27:\"summer-room-13-1536x960.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:960;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"boldthemes_grid\";a:4:{s:4:\"file\";s:26:\"summer-room-13-540x338.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:338;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_11\";a:4:{s:4:\"file\";s:26:\"summer-room-13-540x540.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_22\";a:4:{s:4:\"file\";s:28:\"summer-room-13-1080x1000.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_21\";a:4:{s:4:\"file\";s:27:\"summer-room-13-1080x540.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_12\";a:4:{s:4:\"file\";s:27:\"summer-room-13-540x1000.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_latest_posts\";a:4:{s:4:\"file\";s:26:\"summer-room-13-320x240.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_grid_gallery\";a:4:{s:4:\"file\";s:26:\"summer-room-13-540x405.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:26:\"summer-room-13-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:26:\"summer-room-13-600x375.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:26:\"summer-room-13-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `smrc_postmeta` VALUES (420,487,'_wp_attached_file','2016/03/summer-room-08.jpg');
INSERT INTO `smrc_postmeta` VALUES (421,487,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:1000;s:4:\"file\";s:26:\"2016/03/summer-room-08.jpg\";s:5:\"sizes\";a:18:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:26:\"summer-room-08-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:26:\"summer-room-08-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:26:\"summer-room-08-600x375.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"summer-room-08-320x200.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:27:\"summer-room-08-1200x750.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:750;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"summer-room-08-160x160.jpg\";s:5:\"width\";i:160;s:6:\"height\";i:160;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:26:\"summer-room-08-768x480.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:27:\"summer-room-08-1536x960.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:960;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"boldthemes_grid\";a:4:{s:4:\"file\";s:26:\"summer-room-08-540x338.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:338;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_11\";a:4:{s:4:\"file\";s:26:\"summer-room-08-540x540.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_22\";a:4:{s:4:\"file\";s:28:\"summer-room-08-1080x1000.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_21\";a:4:{s:4:\"file\";s:27:\"summer-room-08-1080x540.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_12\";a:4:{s:4:\"file\";s:27:\"summer-room-08-540x1000.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_latest_posts\";a:4:{s:4:\"file\";s:26:\"summer-room-08-320x240.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_grid_gallery\";a:4:{s:4:\"file\";s:26:\"summer-room-08-540x405.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:26:\"summer-room-08-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:26:\"summer-room-08-600x375.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:26:\"summer-room-08-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `smrc_postmeta` VALUES (422,486,'_wp_attached_file','2016/03/summer-room-07.jpg');
INSERT INTO `smrc_postmeta` VALUES (423,486,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:1000;s:4:\"file\";s:26:\"2016/03/summer-room-07.jpg\";s:5:\"sizes\";a:18:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:26:\"summer-room-07-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:26:\"summer-room-07-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:26:\"summer-room-07-600x375.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"summer-room-07-320x200.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:27:\"summer-room-07-1200x750.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:750;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"summer-room-07-160x160.jpg\";s:5:\"width\";i:160;s:6:\"height\";i:160;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:26:\"summer-room-07-768x480.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:27:\"summer-room-07-1536x960.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:960;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"boldthemes_grid\";a:4:{s:4:\"file\";s:26:\"summer-room-07-540x338.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:338;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_11\";a:4:{s:4:\"file\";s:26:\"summer-room-07-540x540.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_22\";a:4:{s:4:\"file\";s:28:\"summer-room-07-1080x1000.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_21\";a:4:{s:4:\"file\";s:27:\"summer-room-07-1080x540.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_12\";a:4:{s:4:\"file\";s:27:\"summer-room-07-540x1000.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_latest_posts\";a:4:{s:4:\"file\";s:26:\"summer-room-07-320x240.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_grid_gallery\";a:4:{s:4:\"file\";s:26:\"summer-room-07-540x405.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:26:\"summer-room-07-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:26:\"summer-room-07-600x375.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:26:\"summer-room-07-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `smrc_postmeta` VALUES (424,485,'_wp_attached_file','2016/03/summer-room-06.jpg');
INSERT INTO `smrc_postmeta` VALUES (425,485,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:1000;s:4:\"file\";s:26:\"2016/03/summer-room-06.jpg\";s:5:\"sizes\";a:18:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:26:\"summer-room-06-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:26:\"summer-room-06-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:26:\"summer-room-06-600x375.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"summer-room-06-320x200.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:27:\"summer-room-06-1200x750.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:750;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"summer-room-06-160x160.jpg\";s:5:\"width\";i:160;s:6:\"height\";i:160;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:26:\"summer-room-06-768x480.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:27:\"summer-room-06-1536x960.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:960;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"boldthemes_grid\";a:4:{s:4:\"file\";s:26:\"summer-room-06-540x338.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:338;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_11\";a:4:{s:4:\"file\";s:26:\"summer-room-06-540x540.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_22\";a:4:{s:4:\"file\";s:28:\"summer-room-06-1080x1000.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_21\";a:4:{s:4:\"file\";s:27:\"summer-room-06-1080x540.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_12\";a:4:{s:4:\"file\";s:27:\"summer-room-06-540x1000.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_latest_posts\";a:4:{s:4:\"file\";s:26:\"summer-room-06-320x240.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_grid_gallery\";a:4:{s:4:\"file\";s:26:\"summer-room-06-540x405.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:26:\"summer-room-06-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:26:\"summer-room-06-600x375.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:26:\"summer-room-06-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `smrc_postmeta` VALUES (426,488,'_wp_attached_file','2016/03/summer-room-09.jpg');
INSERT INTO `smrc_postmeta` VALUES (427,488,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:1000;s:4:\"file\";s:26:\"2016/03/summer-room-09.jpg\";s:5:\"sizes\";a:18:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:26:\"summer-room-09-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:26:\"summer-room-09-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:26:\"summer-room-09-600x375.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"summer-room-09-320x200.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:27:\"summer-room-09-1200x750.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:750;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"summer-room-09-160x160.jpg\";s:5:\"width\";i:160;s:6:\"height\";i:160;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:26:\"summer-room-09-768x480.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:27:\"summer-room-09-1536x960.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:960;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"boldthemes_grid\";a:4:{s:4:\"file\";s:26:\"summer-room-09-540x338.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:338;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_11\";a:4:{s:4:\"file\";s:26:\"summer-room-09-540x540.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_22\";a:4:{s:4:\"file\";s:28:\"summer-room-09-1080x1000.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_21\";a:4:{s:4:\"file\";s:27:\"summer-room-09-1080x540.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_12\";a:4:{s:4:\"file\";s:27:\"summer-room-09-540x1000.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_latest_posts\";a:4:{s:4:\"file\";s:26:\"summer-room-09-320x240.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_grid_gallery\";a:4:{s:4:\"file\";s:26:\"summer-room-09-540x405.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:26:\"summer-room-09-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:26:\"summer-room-09-600x375.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:26:\"summer-room-09-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `smrc_postmeta` VALUES (428,489,'_wp_attached_file','2016/03/summer-room-10.jpg');
INSERT INTO `smrc_postmeta` VALUES (429,489,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:1000;s:4:\"file\";s:26:\"2016/03/summer-room-10.jpg\";s:5:\"sizes\";a:18:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:26:\"summer-room-10-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:26:\"summer-room-10-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:26:\"summer-room-10-600x375.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"summer-room-10-320x200.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:27:\"summer-room-10-1200x750.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:750;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"summer-room-10-160x160.jpg\";s:5:\"width\";i:160;s:6:\"height\";i:160;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:26:\"summer-room-10-768x480.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:27:\"summer-room-10-1536x960.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:960;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"boldthemes_grid\";a:4:{s:4:\"file\";s:26:\"summer-room-10-540x338.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:338;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_11\";a:4:{s:4:\"file\";s:26:\"summer-room-10-540x540.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_22\";a:4:{s:4:\"file\";s:28:\"summer-room-10-1080x1000.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_21\";a:4:{s:4:\"file\";s:27:\"summer-room-10-1080x540.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_12\";a:4:{s:4:\"file\";s:27:\"summer-room-10-540x1000.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_latest_posts\";a:4:{s:4:\"file\";s:26:\"summer-room-10-320x240.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_grid_gallery\";a:4:{s:4:\"file\";s:26:\"summer-room-10-540x405.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:26:\"summer-room-10-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:26:\"summer-room-10-600x375.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:26:\"summer-room-10-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `smrc_postmeta` VALUES (430,491,'_wp_attached_file','2016/03/summer-room-12.jpg');
INSERT INTO `smrc_postmeta` VALUES (431,491,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:1000;s:4:\"file\";s:26:\"2016/03/summer-room-12.jpg\";s:5:\"sizes\";a:18:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:26:\"summer-room-12-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:26:\"summer-room-12-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:26:\"summer-room-12-600x375.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"summer-room-12-320x200.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:27:\"summer-room-12-1200x750.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:750;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"summer-room-12-160x160.jpg\";s:5:\"width\";i:160;s:6:\"height\";i:160;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:26:\"summer-room-12-768x480.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:27:\"summer-room-12-1536x960.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:960;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"boldthemes_grid\";a:4:{s:4:\"file\";s:26:\"summer-room-12-540x338.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:338;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_11\";a:4:{s:4:\"file\";s:26:\"summer-room-12-540x540.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_22\";a:4:{s:4:\"file\";s:28:\"summer-room-12-1080x1000.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_21\";a:4:{s:4:\"file\";s:27:\"summer-room-12-1080x540.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_12\";a:4:{s:4:\"file\";s:27:\"summer-room-12-540x1000.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_latest_posts\";a:4:{s:4:\"file\";s:26:\"summer-room-12-320x240.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_grid_gallery\";a:4:{s:4:\"file\";s:26:\"summer-room-12-540x405.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:26:\"summer-room-12-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:26:\"summer-room-12-600x375.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:26:\"summer-room-12-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `smrc_postmeta` VALUES (432,490,'_wp_attached_file','2016/03/summer-room-11.jpg');
INSERT INTO `smrc_postmeta` VALUES (433,490,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:1000;s:4:\"file\";s:26:\"2016/03/summer-room-11.jpg\";s:5:\"sizes\";a:18:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:26:\"summer-room-11-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:26:\"summer-room-11-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:26:\"summer-room-11-600x375.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"summer-room-11-320x200.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:27:\"summer-room-11-1200x750.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:750;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"summer-room-11-160x160.jpg\";s:5:\"width\";i:160;s:6:\"height\";i:160;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:26:\"summer-room-11-768x480.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:27:\"summer-room-11-1536x960.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:960;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"boldthemes_grid\";a:4:{s:4:\"file\";s:26:\"summer-room-11-540x338.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:338;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_11\";a:4:{s:4:\"file\";s:26:\"summer-room-11-540x540.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_22\";a:4:{s:4:\"file\";s:28:\"summer-room-11-1080x1000.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_21\";a:4:{s:4:\"file\";s:27:\"summer-room-11-1080x540.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_12\";a:4:{s:4:\"file\";s:27:\"summer-room-11-540x1000.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_latest_posts\";a:4:{s:4:\"file\";s:26:\"summer-room-11-320x240.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_grid_gallery\";a:4:{s:4:\"file\";s:26:\"summer-room-11-540x405.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:26:\"summer-room-11-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:26:\"summer-room-11-600x375.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:26:\"summer-room-11-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `smrc_postmeta` VALUES (434,504,'_wp_attached_file','2013/06/mug-red-california-star.jpg');
INSERT INTO `smrc_postmeta` VALUES (435,504,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:35:\"2013/06/mug-red-california-star.jpg\";s:5:\"sizes\";a:15:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:35:\"mug-red-california-star-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:35:\"mug-red-california-star-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:35:\"mug-red-california-star-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"mug-red-california-star-320x320.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"mug-red-california-star-160x160.jpg\";s:5:\"width\";i:160;s:6:\"height\";i:160;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:35:\"mug-red-california-star-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"boldthemes_grid\";a:4:{s:4:\"file\";s:35:\"mug-red-california-star-540x540.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_11\";a:4:{s:4:\"file\";s:35:\"mug-red-california-star-540x540.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_21\";a:4:{s:4:\"file\";s:36:\"mug-red-california-star-1000x540.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_12\";a:4:{s:4:\"file\";s:36:\"mug-red-california-star-540x1000.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_latest_posts\";a:4:{s:4:\"file\";s:35:\"mug-red-california-star-320x240.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_grid_gallery\";a:4:{s:4:\"file\";s:35:\"mug-red-california-star-540x405.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:35:\"mug-red-california-star-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:35:\"mug-red-california-star-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:35:\"mug-red-california-star-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `smrc_postmeta` VALUES (436,494,'_wp_attached_file','2016/03/summer-room-15.jpg');
INSERT INTO `smrc_postmeta` VALUES (437,494,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:1000;s:4:\"file\";s:26:\"2016/03/summer-room-15.jpg\";s:5:\"sizes\";a:18:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:26:\"summer-room-15-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:26:\"summer-room-15-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:26:\"summer-room-15-600x375.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"summer-room-15-320x200.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:27:\"summer-room-15-1200x750.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:750;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"summer-room-15-160x160.jpg\";s:5:\"width\";i:160;s:6:\"height\";i:160;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:26:\"summer-room-15-768x480.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:27:\"summer-room-15-1536x960.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:960;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"boldthemes_grid\";a:4:{s:4:\"file\";s:26:\"summer-room-15-540x338.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:338;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_11\";a:4:{s:4:\"file\";s:26:\"summer-room-15-540x540.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_22\";a:4:{s:4:\"file\";s:28:\"summer-room-15-1080x1000.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_21\";a:4:{s:4:\"file\";s:27:\"summer-room-15-1080x540.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_12\";a:4:{s:4:\"file\";s:27:\"summer-room-15-540x1000.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_latest_posts\";a:4:{s:4:\"file\";s:26:\"summer-room-15-320x240.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_grid_gallery\";a:4:{s:4:\"file\";s:26:\"summer-room-15-540x405.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:26:\"summer-room-15-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:26:\"summer-room-15-600x375.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:26:\"summer-room-15-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `smrc_postmeta` VALUES (438,519,'_wp_attached_file','2013/06/tshirt-red-3.jpg');
INSERT INTO `smrc_postmeta` VALUES (439,519,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:24:\"2013/06/tshirt-red-3.jpg\";s:5:\"sizes\";a:15:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:24:\"tshirt-red-3-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:24:\"tshirt-red-3-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:24:\"tshirt-red-3-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"tshirt-red-3-320x320.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"tshirt-red-3-160x160.jpg\";s:5:\"width\";i:160;s:6:\"height\";i:160;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:24:\"tshirt-red-3-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"boldthemes_grid\";a:4:{s:4:\"file\";s:24:\"tshirt-red-3-540x540.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_11\";a:4:{s:4:\"file\";s:24:\"tshirt-red-3-540x540.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_21\";a:4:{s:4:\"file\";s:25:\"tshirt-red-3-1000x540.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_12\";a:4:{s:4:\"file\";s:25:\"tshirt-red-3-540x1000.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_latest_posts\";a:4:{s:4:\"file\";s:24:\"tshirt-red-3-320x240.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_grid_gallery\";a:4:{s:4:\"file\";s:24:\"tshirt-red-3-540x405.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:24:\"tshirt-red-3-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:24:\"tshirt-red-3-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:24:\"tshirt-red-3-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `smrc_postmeta` VALUES (440,520,'_wp_attached_file','2013/06/tshirt-red-3-back.jpg');
INSERT INTO `smrc_postmeta` VALUES (441,520,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:29:\"2013/06/tshirt-red-3-back.jpg\";s:5:\"sizes\";a:15:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:29:\"tshirt-red-3-back-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:29:\"tshirt-red-3-back-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:29:\"tshirt-red-3-back-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"tshirt-red-3-back-320x320.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"tshirt-red-3-back-160x160.jpg\";s:5:\"width\";i:160;s:6:\"height\";i:160;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:29:\"tshirt-red-3-back-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"boldthemes_grid\";a:4:{s:4:\"file\";s:29:\"tshirt-red-3-back-540x540.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_11\";a:4:{s:4:\"file\";s:29:\"tshirt-red-3-back-540x540.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_21\";a:4:{s:4:\"file\";s:30:\"tshirt-red-3-back-1000x540.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_12\";a:4:{s:4:\"file\";s:30:\"tshirt-red-3-back-540x1000.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_latest_posts\";a:4:{s:4:\"file\";s:29:\"tshirt-red-3-back-320x240.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_grid_gallery\";a:4:{s:4:\"file\";s:29:\"tshirt-red-3-back-540x405.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:29:\"tshirt-red-3-back-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:29:\"tshirt-red-3-back-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:29:\"tshirt-red-3-back-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `smrc_postmeta` VALUES (442,514,'_wp_attached_file','2013/06/tshirt-brown-2-back.jpg');
INSERT INTO `smrc_postmeta` VALUES (443,514,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:31:\"2013/06/tshirt-brown-2-back.jpg\";s:5:\"sizes\";a:15:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:31:\"tshirt-brown-2-back-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:31:\"tshirt-brown-2-back-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:31:\"tshirt-brown-2-back-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"tshirt-brown-2-back-320x320.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"tshirt-brown-2-back-160x160.jpg\";s:5:\"width\";i:160;s:6:\"height\";i:160;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:31:\"tshirt-brown-2-back-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"boldthemes_grid\";a:4:{s:4:\"file\";s:31:\"tshirt-brown-2-back-540x540.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_11\";a:4:{s:4:\"file\";s:31:\"tshirt-brown-2-back-540x540.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_21\";a:4:{s:4:\"file\";s:32:\"tshirt-brown-2-back-1000x540.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_12\";a:4:{s:4:\"file\";s:32:\"tshirt-brown-2-back-540x1000.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_latest_posts\";a:4:{s:4:\"file\";s:31:\"tshirt-brown-2-back-320x240.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_grid_gallery\";a:4:{s:4:\"file\";s:31:\"tshirt-brown-2-back-540x405.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:31:\"tshirt-brown-2-back-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:31:\"tshirt-brown-2-back-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:31:\"tshirt-brown-2-back-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `smrc_postmeta` VALUES (444,518,'_wp_attached_file','2013/06/tshirt-red-2-back.jpg');
INSERT INTO `smrc_postmeta` VALUES (445,518,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:29:\"2013/06/tshirt-red-2-back.jpg\";s:5:\"sizes\";a:15:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:29:\"tshirt-red-2-back-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:29:\"tshirt-red-2-back-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:29:\"tshirt-red-2-back-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"tshirt-red-2-back-320x320.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"tshirt-red-2-back-160x160.jpg\";s:5:\"width\";i:160;s:6:\"height\";i:160;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:29:\"tshirt-red-2-back-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"boldthemes_grid\";a:4:{s:4:\"file\";s:29:\"tshirt-red-2-back-540x540.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_11\";a:4:{s:4:\"file\";s:29:\"tshirt-red-2-back-540x540.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_21\";a:4:{s:4:\"file\";s:30:\"tshirt-red-2-back-1000x540.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_12\";a:4:{s:4:\"file\";s:30:\"tshirt-red-2-back-540x1000.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_latest_posts\";a:4:{s:4:\"file\";s:29:\"tshirt-red-2-back-320x240.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_grid_gallery\";a:4:{s:4:\"file\";s:29:\"tshirt-red-2-back-540x405.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:29:\"tshirt-red-2-back-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:29:\"tshirt-red-2-back-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:29:\"tshirt-red-2-back-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `smrc_postmeta` VALUES (446,517,'_wp_attached_file','2013/06/tshirt-red-2.jpg');
INSERT INTO `smrc_postmeta` VALUES (447,517,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:24:\"2013/06/tshirt-red-2.jpg\";s:5:\"sizes\";a:15:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:24:\"tshirt-red-2-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:24:\"tshirt-red-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:24:\"tshirt-red-2-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"tshirt-red-2-320x320.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"tshirt-red-2-160x160.jpg\";s:5:\"width\";i:160;s:6:\"height\";i:160;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:24:\"tshirt-red-2-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"boldthemes_grid\";a:4:{s:4:\"file\";s:24:\"tshirt-red-2-540x540.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_11\";a:4:{s:4:\"file\";s:24:\"tshirt-red-2-540x540.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_21\";a:4:{s:4:\"file\";s:25:\"tshirt-red-2-1000x540.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_12\";a:4:{s:4:\"file\";s:25:\"tshirt-red-2-540x1000.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_latest_posts\";a:4:{s:4:\"file\";s:24:\"tshirt-red-2-320x240.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_grid_gallery\";a:4:{s:4:\"file\";s:24:\"tshirt-red-2-540x405.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:24:\"tshirt-red-2-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:24:\"tshirt-red-2-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:24:\"tshirt-red-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `smrc_postmeta` VALUES (448,516,'_wp_attached_file','2013/06/tshirt-red-1-back.jpg');
INSERT INTO `smrc_postmeta` VALUES (449,516,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:29:\"2013/06/tshirt-red-1-back.jpg\";s:5:\"sizes\";a:15:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:29:\"tshirt-red-1-back-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:29:\"tshirt-red-1-back-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:29:\"tshirt-red-1-back-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"tshirt-red-1-back-320x320.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"tshirt-red-1-back-160x160.jpg\";s:5:\"width\";i:160;s:6:\"height\";i:160;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:29:\"tshirt-red-1-back-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"boldthemes_grid\";a:4:{s:4:\"file\";s:29:\"tshirt-red-1-back-540x540.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_11\";a:4:{s:4:\"file\";s:29:\"tshirt-red-1-back-540x540.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_21\";a:4:{s:4:\"file\";s:30:\"tshirt-red-1-back-1000x540.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_12\";a:4:{s:4:\"file\";s:30:\"tshirt-red-1-back-540x1000.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_latest_posts\";a:4:{s:4:\"file\";s:29:\"tshirt-red-1-back-320x240.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_grid_gallery\";a:4:{s:4:\"file\";s:29:\"tshirt-red-1-back-540x405.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:29:\"tshirt-red-1-back-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:29:\"tshirt-red-1-back-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:29:\"tshirt-red-1-back-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `smrc_postmeta` VALUES (450,505,'_wp_attached_file','2013/06/mug-red-california-star-big.jpg');
INSERT INTO `smrc_postmeta` VALUES (451,505,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:39:\"2013/06/mug-red-california-star-big.jpg\";s:5:\"sizes\";a:15:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:39:\"mug-red-california-star-big-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:39:\"mug-red-california-star-big-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:39:\"mug-red-california-star-big-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:39:\"mug-red-california-star-big-320x320.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:39:\"mug-red-california-star-big-160x160.jpg\";s:5:\"width\";i:160;s:6:\"height\";i:160;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:39:\"mug-red-california-star-big-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"boldthemes_grid\";a:4:{s:4:\"file\";s:39:\"mug-red-california-star-big-540x540.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_11\";a:4:{s:4:\"file\";s:39:\"mug-red-california-star-big-540x540.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_21\";a:4:{s:4:\"file\";s:40:\"mug-red-california-star-big-1000x540.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_12\";a:4:{s:4:\"file\";s:40:\"mug-red-california-star-big-540x1000.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_latest_posts\";a:4:{s:4:\"file\";s:39:\"mug-red-california-star-big-320x240.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_grid_gallery\";a:4:{s:4:\"file\";s:39:\"mug-red-california-star-big-540x405.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:39:\"mug-red-california-star-big-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:39:\"mug-red-california-star-big-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:39:\"mug-red-california-star-big-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `smrc_postmeta` VALUES (452,515,'_wp_attached_file','2013/06/tshirt-red-1.jpg');
INSERT INTO `smrc_postmeta` VALUES (453,515,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:24:\"2013/06/tshirt-red-1.jpg\";s:5:\"sizes\";a:15:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:24:\"tshirt-red-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:24:\"tshirt-red-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:24:\"tshirt-red-1-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"tshirt-red-1-320x320.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"tshirt-red-1-160x160.jpg\";s:5:\"width\";i:160;s:6:\"height\";i:160;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:24:\"tshirt-red-1-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"boldthemes_grid\";a:4:{s:4:\"file\";s:24:\"tshirt-red-1-540x540.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_11\";a:4:{s:4:\"file\";s:24:\"tshirt-red-1-540x540.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_21\";a:4:{s:4:\"file\";s:25:\"tshirt-red-1-1000x540.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_12\";a:4:{s:4:\"file\";s:25:\"tshirt-red-1-540x1000.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_latest_posts\";a:4:{s:4:\"file\";s:24:\"tshirt-red-1-320x240.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_grid_gallery\";a:4:{s:4:\"file\";s:24:\"tshirt-red-1-540x405.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:24:\"tshirt-red-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:24:\"tshirt-red-1-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:24:\"tshirt-red-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `smrc_postmeta` VALUES (454,513,'_wp_attached_file','2013/06/tshirt-brown-2.jpg');
INSERT INTO `smrc_postmeta` VALUES (455,513,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:26:\"2013/06/tshirt-brown-2.jpg\";s:5:\"sizes\";a:15:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:26:\"tshirt-brown-2-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:26:\"tshirt-brown-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:26:\"tshirt-brown-2-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"tshirt-brown-2-320x320.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"tshirt-brown-2-160x160.jpg\";s:5:\"width\";i:160;s:6:\"height\";i:160;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:26:\"tshirt-brown-2-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"boldthemes_grid\";a:4:{s:4:\"file\";s:26:\"tshirt-brown-2-540x540.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_11\";a:4:{s:4:\"file\";s:26:\"tshirt-brown-2-540x540.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_21\";a:4:{s:4:\"file\";s:27:\"tshirt-brown-2-1000x540.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_12\";a:4:{s:4:\"file\";s:27:\"tshirt-brown-2-540x1000.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_latest_posts\";a:4:{s:4:\"file\";s:26:\"tshirt-brown-2-320x240.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_grid_gallery\";a:4:{s:4:\"file\";s:26:\"tshirt-brown-2-540x405.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:26:\"tshirt-brown-2-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:26:\"tshirt-brown-2-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:26:\"tshirt-brown-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `smrc_postmeta` VALUES (456,508,'_wp_attached_file','2013/06/mug-white-star.jpg');
INSERT INTO `smrc_postmeta` VALUES (457,508,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:26:\"2013/06/mug-white-star.jpg\";s:5:\"sizes\";a:15:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:26:\"mug-white-star-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:26:\"mug-white-star-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:26:\"mug-white-star-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"mug-white-star-320x320.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"mug-white-star-160x160.jpg\";s:5:\"width\";i:160;s:6:\"height\";i:160;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:26:\"mug-white-star-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"boldthemes_grid\";a:4:{s:4:\"file\";s:26:\"mug-white-star-540x540.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_11\";a:4:{s:4:\"file\";s:26:\"mug-white-star-540x540.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_21\";a:4:{s:4:\"file\";s:27:\"mug-white-star-1000x540.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_12\";a:4:{s:4:\"file\";s:27:\"mug-white-star-540x1000.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_latest_posts\";a:4:{s:4:\"file\";s:26:\"mug-white-star-320x240.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_grid_gallery\";a:4:{s:4:\"file\";s:26:\"mug-white-star-540x405.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:26:\"mug-white-star-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:26:\"mug-white-star-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:26:\"mug-white-star-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `smrc_postmeta` VALUES (458,507,'_wp_attached_file','2013/06/mug-white-california.jpg');
INSERT INTO `smrc_postmeta` VALUES (459,507,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:32:\"2013/06/mug-white-california.jpg\";s:5:\"sizes\";a:15:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:32:\"mug-white-california-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:32:\"mug-white-california-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:32:\"mug-white-california-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"mug-white-california-320x320.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"mug-white-california-160x160.jpg\";s:5:\"width\";i:160;s:6:\"height\";i:160;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:32:\"mug-white-california-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"boldthemes_grid\";a:4:{s:4:\"file\";s:32:\"mug-white-california-540x540.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_11\";a:4:{s:4:\"file\";s:32:\"mug-white-california-540x540.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_21\";a:4:{s:4:\"file\";s:33:\"mug-white-california-1000x540.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_12\";a:4:{s:4:\"file\";s:33:\"mug-white-california-540x1000.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_latest_posts\";a:4:{s:4:\"file\";s:32:\"mug-white-california-320x240.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_grid_gallery\";a:4:{s:4:\"file\";s:32:\"mug-white-california-540x405.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:32:\"mug-white-california-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:32:\"mug-white-california-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:32:\"mug-white-california-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `smrc_postmeta` VALUES (460,506,'_wp_attached_file','2013/06/mug-white-bear.jpg');
INSERT INTO `smrc_postmeta` VALUES (461,506,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:26:\"2013/06/mug-white-bear.jpg\";s:5:\"sizes\";a:15:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:26:\"mug-white-bear-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:26:\"mug-white-bear-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:26:\"mug-white-bear-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"mug-white-bear-320x320.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"mug-white-bear-160x160.jpg\";s:5:\"width\";i:160;s:6:\"height\";i:160;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:26:\"mug-white-bear-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"boldthemes_grid\";a:4:{s:4:\"file\";s:26:\"mug-white-bear-540x540.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_11\";a:4:{s:4:\"file\";s:26:\"mug-white-bear-540x540.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_21\";a:4:{s:4:\"file\";s:27:\"mug-white-bear-1000x540.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_12\";a:4:{s:4:\"file\";s:27:\"mug-white-bear-540x1000.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_latest_posts\";a:4:{s:4:\"file\";s:26:\"mug-white-bear-320x240.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_grid_gallery\";a:4:{s:4:\"file\";s:26:\"mug-white-bear-540x405.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:26:\"mug-white-bear-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:26:\"mug-white-bear-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:26:\"mug-white-bear-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `smrc_postmeta` VALUES (462,509,'_wp_attached_file','2013/06/poster-1.jpg');
INSERT INTO `smrc_postmeta` VALUES (463,509,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:20:\"2013/06/poster-1.jpg\";s:5:\"sizes\";a:15:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:20:\"poster-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:20:\"poster-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:20:\"poster-1-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"poster-1-320x320.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"poster-1-160x160.jpg\";s:5:\"width\";i:160;s:6:\"height\";i:160;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:20:\"poster-1-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"boldthemes_grid\";a:4:{s:4:\"file\";s:20:\"poster-1-540x540.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_11\";a:4:{s:4:\"file\";s:20:\"poster-1-540x540.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_21\";a:4:{s:4:\"file\";s:21:\"poster-1-1000x540.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_12\";a:4:{s:4:\"file\";s:21:\"poster-1-540x1000.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_latest_posts\";a:4:{s:4:\"file\";s:20:\"poster-1-320x240.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_grid_gallery\";a:4:{s:4:\"file\";s:20:\"poster-1-540x405.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:20:\"poster-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:20:\"poster-1-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:20:\"poster-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `smrc_postmeta` VALUES (464,510,'_wp_attached_file','2013/06/poster-2.jpg');
INSERT INTO `smrc_postmeta` VALUES (465,510,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:20:\"2013/06/poster-2.jpg\";s:5:\"sizes\";a:15:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:20:\"poster-2-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:20:\"poster-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:20:\"poster-2-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"poster-2-320x320.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"poster-2-160x160.jpg\";s:5:\"width\";i:160;s:6:\"height\";i:160;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:20:\"poster-2-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"boldthemes_grid\";a:4:{s:4:\"file\";s:20:\"poster-2-540x540.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_11\";a:4:{s:4:\"file\";s:20:\"poster-2-540x540.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_21\";a:4:{s:4:\"file\";s:21:\"poster-2-1000x540.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_12\";a:4:{s:4:\"file\";s:21:\"poster-2-540x1000.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_latest_posts\";a:4:{s:4:\"file\";s:20:\"poster-2-320x240.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_grid_gallery\";a:4:{s:4:\"file\";s:20:\"poster-2-540x405.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:20:\"poster-2-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:20:\"poster-2-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:20:\"poster-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `smrc_postmeta` VALUES (466,512,'_wp_attached_file','2013/06/tshirt-brown-1-back.jpg');
INSERT INTO `smrc_postmeta` VALUES (467,512,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:31:\"2013/06/tshirt-brown-1-back.jpg\";s:5:\"sizes\";a:15:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:31:\"tshirt-brown-1-back-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:31:\"tshirt-brown-1-back-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:31:\"tshirt-brown-1-back-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"tshirt-brown-1-back-320x320.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"tshirt-brown-1-back-160x160.jpg\";s:5:\"width\";i:160;s:6:\"height\";i:160;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:31:\"tshirt-brown-1-back-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"boldthemes_grid\";a:4:{s:4:\"file\";s:31:\"tshirt-brown-1-back-540x540.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_11\";a:4:{s:4:\"file\";s:31:\"tshirt-brown-1-back-540x540.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_21\";a:4:{s:4:\"file\";s:32:\"tshirt-brown-1-back-1000x540.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_12\";a:4:{s:4:\"file\";s:32:\"tshirt-brown-1-back-540x1000.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_latest_posts\";a:4:{s:4:\"file\";s:31:\"tshirt-brown-1-back-320x240.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_grid_gallery\";a:4:{s:4:\"file\";s:31:\"tshirt-brown-1-back-540x405.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:31:\"tshirt-brown-1-back-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:31:\"tshirt-brown-1-back-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:31:\"tshirt-brown-1-back-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `smrc_postmeta` VALUES (468,511,'_wp_attached_file','2013/06/tshirt-brown-1.jpg');
INSERT INTO `smrc_postmeta` VALUES (469,511,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:26:\"2013/06/tshirt-brown-1.jpg\";s:5:\"sizes\";a:15:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:26:\"tshirt-brown-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:26:\"tshirt-brown-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:26:\"tshirt-brown-1-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"tshirt-brown-1-320x320.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"tshirt-brown-1-160x160.jpg\";s:5:\"width\";i:160;s:6:\"height\";i:160;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:26:\"tshirt-brown-1-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"boldthemes_grid\";a:4:{s:4:\"file\";s:26:\"tshirt-brown-1-540x540.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_11\";a:4:{s:4:\"file\";s:26:\"tshirt-brown-1-540x540.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_21\";a:4:{s:4:\"file\";s:27:\"tshirt-brown-1-1000x540.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_12\";a:4:{s:4:\"file\";s:27:\"tshirt-brown-1-540x1000.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_latest_posts\";a:4:{s:4:\"file\";s:26:\"tshirt-brown-1-320x240.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_grid_gallery\";a:4:{s:4:\"file\";s:26:\"tshirt-brown-1-540x405.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:26:\"tshirt-brown-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:26:\"tshirt-brown-1-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:26:\"tshirt-brown-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `smrc_postmeta` VALUES (470,652,'boldthemes_theme_override','a:0:{}');
INSERT INTO `smrc_postmeta` VALUES (471,652,'_dp_original','634');
INSERT INTO `smrc_postmeta` VALUES (472,651,'boldthemes_theme_override','a:0:{}');
INSERT INTO `smrc_postmeta` VALUES (473,651,'_dp_original','636');
INSERT INTO `smrc_postmeta` VALUES (474,636,'boldthemes_theme_override','a:0:{}');
INSERT INTO `smrc_postmeta` VALUES (475,636,'_dp_original','634');
INSERT INTO `smrc_postmeta` VALUES (476,702,'boldthemes_theme_override','a:0:{}');
INSERT INTO `smrc_postmeta` VALUES (477,702,'_dp_original','626');
INSERT INTO `smrc_postmeta` VALUES (478,642,'boldthemes_theme_override','a:0:{}');
INSERT INTO `smrc_postmeta` VALUES (479,829,'boldthemes_theme_override','a:0:{}');
INSERT INTO `smrc_postmeta` VALUES (480,899,'boldthemes_theme_override','a:10:{i:0;s:32:\"boldthemes_theme_below_menu:true\";i:1;s:33:\"boldthemes_theme_menu_type:hRight\";i:2;s:39:\"boldthemes_theme_top_tools_in_menu:true\";i:3;s:29:\"boldthemes_theme_alt_logo:969\";i:4;s:31:\"boldthemes_theme_logo_height:50\";i:5;s:31:\"boldthemes_theme_logo_indent:50\";i:6;s:32:\"boldthemes_theme_boxed_menu:true\";i:7;s:37:\"boldthemes_theme_accent_color:#166552\";i:8;s:40:\"boldthemes_theme_alternate_color:#af816c\";i:9;s:25:\"boldthemes_theme_logo:963\";}');
INSERT INTO `smrc_postmeta` VALUES (481,899,'_dp_original','860');
INSERT INTO `smrc_postmeta` VALUES (482,906,'boldthemes_theme_override','a:10:{i:0;s:32:\"boldthemes_theme_below_menu:true\";i:1;s:33:\"boldthemes_theme_menu_type:hRight\";i:2;s:39:\"boldthemes_theme_top_tools_in_menu:true\";i:3;s:29:\"boldthemes_theme_alt_logo:954\";i:4;s:31:\"boldthemes_theme_logo_height:50\";i:5;s:31:\"boldthemes_theme_logo_indent:50\";i:6;s:32:\"boldthemes_theme_boxed_menu:true\";i:7;s:40:\"boldthemes_theme_alternate_color:#002040\";i:8;s:37:\"boldthemes_theme_accent_color:#FF7F00\";i:9;s:25:\"boldthemes_theme_logo:953\";}');
INSERT INTO `smrc_postmeta` VALUES (483,906,'_dp_original','899');
INSERT INTO `smrc_postmeta` VALUES (484,921,'boldthemes_theme_override','a:10:{i:0;s:32:\"boldthemes_theme_below_menu:true\";i:1;s:33:\"boldthemes_theme_menu_type:hRight\";i:2;s:39:\"boldthemes_theme_top_tools_in_menu:true\";i:3;s:29:\"boldthemes_theme_alt_logo:954\";i:4;s:31:\"boldthemes_theme_logo_height:50\";i:5;s:31:\"boldthemes_theme_logo_indent:50\";i:6;s:32:\"boldthemes_theme_boxed_menu:true\";i:7;s:40:\"boldthemes_theme_alternate_color:#002040\";i:8;s:37:\"boldthemes_theme_accent_color:#FF7F00\";i:9;s:25:\"boldthemes_theme_logo:953\";}');
INSERT INTO `smrc_postmeta` VALUES (485,921,'_dp_original','906');
INSERT INTO `smrc_postmeta` VALUES (486,634,'boldthemes_theme_override','a:0:{}');
INSERT INTO `smrc_postmeta` VALUES (487,634,'_dp_original','630');
INSERT INTO `smrc_postmeta` VALUES (488,860,'boldthemes_theme_override','a:7:{i:0;s:32:\"boldthemes_theme_below_menu:true\";i:1;s:33:\"boldthemes_theme_menu_type:hRight\";i:2;s:39:\"boldthemes_theme_top_tools_in_menu:true\";i:3;s:88:\"boldthemes_theme_alt_logo:/wp-content/uploads/sites/2/2016/06/summer-logo-light-flat.png\";i:4;s:31:\"boldthemes_theme_logo_height:50\";i:5;s:31:\"boldthemes_theme_logo_indent:50\";i:6;s:32:\"boldthemes_theme_boxed_menu:true\";}');
INSERT INTO `smrc_postmeta` VALUES (489,860,'_dp_original','837');
INSERT INTO `smrc_postmeta` VALUES (491,753,'boldthemes_theme_override','a:0:{}');
INSERT INTO `smrc_postmeta` VALUES (492,773,'boldthemes_theme_override','a:0:{}');
INSERT INTO `smrc_postmeta` VALUES (494,809,'boldthemes_theme_override','a:0:{}');
INSERT INTO `smrc_postmeta` VALUES (495,727,'boldthemes_theme_override','a:0:{}');
INSERT INTO `smrc_postmeta` VALUES (496,626,'boldthemes_theme_override','a:0:{}');
INSERT INTO `smrc_postmeta` VALUES (497,11,'boldthemes_theme_override','a:0:{}');
INSERT INTO `smrc_postmeta` VALUES (498,971,'boldthemes_theme_override','a:1:{i:0;s:30:\"boldthemes_theme_sidebar:right\";}');
INSERT INTO `smrc_postmeta` VALUES (499,19,'boldthemes_theme_override','a:1:{i:0;s:30:\"boldthemes_theme_sidebar:right\";}');
INSERT INTO `smrc_postmeta` VALUES (500,972,'boldthemes_theme_override','a:0:{}');
INSERT INTO `smrc_postmeta` VALUES (501,8,'boldthemes_theme_override','a:0:{}');
INSERT INTO `smrc_postmeta` VALUES (502,630,'boldthemes_theme_override','a:0:{}');
INSERT INTO `smrc_postmeta` VALUES (503,630,'_dp_original','11');
INSERT INTO `smrc_postmeta` VALUES (504,2,'boldthemes_theme_override','a:0:{}');
INSERT INTO `smrc_postmeta` VALUES (507,625,'boldthemes_theme_override','a:0:{}');
INSERT INTO `smrc_postmeta` VALUES (508,91,'boldthemes_theme_animations','normal');
INSERT INTO `smrc_postmeta` VALUES (509,436,'boldthemes_theme_override','a:0:{}');
INSERT INTO `smrc_postmeta` VALUES (510,339,'_dp_original','7');
INSERT INTO `smrc_postmeta` VALUES (511,339,'boldthemes_theme_override','a:0:{}');
INSERT INTO `smrc_postmeta` VALUES (512,412,'boldthemes_theme_override','a:1:{i:0;s:30:\"boldthemes_theme_sidebar:right\";}');
INSERT INTO `smrc_postmeta` VALUES (513,412,'_dp_original','19');
INSERT INTO `smrc_postmeta` VALUES (514,92,'boldthemes_theme_animations','normal');
INSERT INTO `smrc_postmeta` VALUES (515,93,'boldthemes_theme_animations','normal');
INSERT INTO `smrc_postmeta` VALUES (516,325,'boldthemes_theme_override','a:1:{i:0;s:30:\"boldthemes_theme_sidebar:right\";}');
INSERT INTO `smrc_postmeta` VALUES (517,325,'_dp_original','15');
INSERT INTO `smrc_postmeta` VALUES (520,251,'_thumbnail_id','613');
INSERT INTO `smrc_postmeta` VALUES (521,251,'bt_theme_grid_gallery','1');
INSERT INTO `smrc_postmeta` VALUES (522,251,'bt_theme_tile_format','11');
INSERT INTO `smrc_postmeta` VALUES (523,251,'bt_theme_override','a:1:{i:0;s:28:\"bt_theme_blog_ghost_slider:1\";}');
INSERT INTO `smrc_postmeta` VALUES (524,251,'_wp_old_slug','hello-world');
INSERT INTO `smrc_postmeta` VALUES (525,251,'_wp_old_slug','vel-illum-dolore-eu-feugiat-nulla-facilisis');
INSERT INTO `smrc_postmeta` VALUES (526,251,'_dp_original','232');
INSERT INTO `smrc_postmeta` VALUES (527,251,'_wp_old_slug','grid-gallery-post-with-overlay');
INSERT INTO `smrc_postmeta` VALUES (528,251,'boldthemes_theme_grid_gallery','1');
INSERT INTO `smrc_postmeta` VALUES (529,251,'boldthemes_theme_override','a:0:{}');
INSERT INTO `smrc_postmeta` VALUES (530,251,'boldthemes_theme_images','610');
INSERT INTO `smrc_postmeta` VALUES (531,251,'boldthemes_theme_images','613');
INSERT INTO `smrc_postmeta` VALUES (532,251,'boldthemes_theme_images','612');
INSERT INTO `smrc_postmeta` VALUES (533,251,'boldthemes_theme_images','611');
INSERT INTO `smrc_postmeta` VALUES (536,243,'_thumbnail_id','591');
INSERT INTO `smrc_postmeta` VALUES (537,243,'bt_theme_grid_gallery','0');
INSERT INTO `smrc_postmeta` VALUES (538,243,'bt_theme_tile_format','11');
INSERT INTO `smrc_postmeta` VALUES (539,243,'bt_theme_override','a:0:{}');
INSERT INTO `smrc_postmeta` VALUES (540,243,'_wp_old_slug','hello-world');
INSERT INTO `smrc_postmeta` VALUES (541,243,'_wp_old_slug','blandit-praesent-luptatum-zzril');
INSERT INTO `smrc_postmeta` VALUES (542,243,'_wp_old_slug','video-post');
INSERT INTO `smrc_postmeta` VALUES (543,243,'_dp_original','1');
INSERT INTO `smrc_postmeta` VALUES (544,243,'_wp_old_slug','standard-post-2');
INSERT INTO `smrc_postmeta` VALUES (545,243,'boldthemes_theme_grid_gallery','0');
INSERT INTO `smrc_postmeta` VALUES (546,243,'boldthemes_theme_override','a:0:{}');
INSERT INTO `smrc_postmeta` VALUES (547,243,'_wp_old_slug','standard-post');
INSERT INTO `smrc_postmeta` VALUES (550,266,'_thumbnail_id','1132');
INSERT INTO `smrc_postmeta` VALUES (551,266,'bt_theme_grid_gallery','0');
INSERT INTO `smrc_postmeta` VALUES (552,266,'bt_theme_tile_format','11');
INSERT INTO `smrc_postmeta` VALUES (553,266,'bt_theme_override','a:0:{}');
INSERT INTO `smrc_postmeta` VALUES (554,266,'_wp_old_slug','hello-world');
INSERT INTO `smrc_postmeta` VALUES (555,266,'_wp_old_slug','blandit-praesent-luptatum-zzril');
INSERT INTO `smrc_postmeta` VALUES (556,266,'_wp_old_slug','video-post');
INSERT INTO `smrc_postmeta` VALUES (557,266,'_dp_original','243');
INSERT INTO `smrc_postmeta` VALUES (558,266,'boldthemes_theme_grid_gallery','0');
INSERT INTO `smrc_postmeta` VALUES (560,266,'_wp_old_slug','sticky-standard-post');
INSERT INTO `smrc_postmeta` VALUES (563,291,'bt_theme_grid_gallery','0');
INSERT INTO `smrc_postmeta` VALUES (564,291,'bt_theme_tile_format','11');
INSERT INTO `smrc_postmeta` VALUES (565,291,'bt_theme_override','a:0:{}');
INSERT INTO `smrc_postmeta` VALUES (566,291,'_wp_old_slug','hello-world');
INSERT INTO `smrc_postmeta` VALUES (567,291,'_wp_old_slug','vel-illum-dolore-eu-feugiat-nulla-facilisis-2');
INSERT INTO `smrc_postmeta` VALUES (568,291,'_wp_old_slug','dolore-eu-feugiat-nulla-facilisis');
INSERT INTO `smrc_postmeta` VALUES (569,291,'_dp_original','289');
INSERT INTO `smrc_postmeta` VALUES (570,291,'bt_theme_link_title','Check out our new Love Color Palette!');
INSERT INTO `smrc_postmeta` VALUES (571,291,'bt_theme_link_url','http://bit.ly/1yHniM6');
INSERT INTO `smrc_postmeta` VALUES (572,291,'_thumbnail_id','588');
INSERT INTO `smrc_postmeta` VALUES (573,291,'_wp_old_slug','link-post');
INSERT INTO `smrc_postmeta` VALUES (574,291,'boldthemes_theme_grid_gallery','0');
INSERT INTO `smrc_postmeta` VALUES (575,291,'boldthemes_theme_link_title','What to do when in San Diego');
INSERT INTO `smrc_postmeta` VALUES (576,291,'boldthemes_theme_link_url','http://www.sandiego.com/');
INSERT INTO `smrc_postmeta` VALUES (577,291,'boldthemes_theme_override','a:0:{}');
INSERT INTO `smrc_postmeta` VALUES (580,234,'_thumbnail_id','595');
INSERT INTO `smrc_postmeta` VALUES (581,234,'bt_theme_grid_gallery','0');
INSERT INTO `smrc_postmeta` VALUES (582,234,'bt_theme_tile_format','11');
INSERT INTO `smrc_postmeta` VALUES (583,234,'bt_theme_override','a:2:{i:0;s:22:\"bt_theme_sidebar:false\";i:1;s:33:\"bt_theme_blog_single_view:columns\";}');
INSERT INTO `smrc_postmeta` VALUES (584,234,'_wp_old_slug','hello-world');
INSERT INTO `smrc_postmeta` VALUES (585,234,'_dp_original','232');
INSERT INTO `smrc_postmeta` VALUES (586,234,'bt_theme_video','https://www.youtube.com/watch?v=YzKhwCPA4M4');
INSERT INTO `smrc_postmeta` VALUES (587,234,'_wp_old_slug','vel-illum-dolore-eu-feugiat-nulla-facilisis-2');
INSERT INTO `smrc_postmeta` VALUES (588,234,'_wp_old_slug','dolore-eu-feugiat-nulla-facilisis');
INSERT INTO `smrc_postmeta` VALUES (589,234,'_wp_old_slug','standard-post');
INSERT INTO `smrc_postmeta` VALUES (590,234,'_wp_old_slug','video-post');
INSERT INTO `smrc_postmeta` VALUES (591,234,'boldthemes_theme_grid_gallery','0');
INSERT INTO `smrc_postmeta` VALUES (592,234,'boldthemes_theme_video','https://www.youtube.com/watch?v=53jfOvtV9DI');
INSERT INTO `smrc_postmeta` VALUES (593,234,'boldthemes_theme_override','a:0:{}');
INSERT INTO `smrc_postmeta` VALUES (596,289,'_thumbnail_id','595');
INSERT INTO `smrc_postmeta` VALUES (597,289,'bt_theme_grid_gallery','0');
INSERT INTO `smrc_postmeta` VALUES (598,289,'bt_theme_tile_format','11');
INSERT INTO `smrc_postmeta` VALUES (599,289,'bt_theme_override','a:0:{}');
INSERT INTO `smrc_postmeta` VALUES (600,289,'_wp_old_slug','hello-world');
INSERT INTO `smrc_postmeta` VALUES (601,289,'_wp_old_slug','vel-illum-dolore-eu-feugiat-nulla-facilisis-2');
INSERT INTO `smrc_postmeta` VALUES (602,289,'_wp_old_slug','dolore-eu-feugiat-nulla-facilisis');
INSERT INTO `smrc_postmeta` VALUES (603,289,'_dp_original','287');
INSERT INTO `smrc_postmeta` VALUES (604,289,'bt_theme_quote','Yeah, well, you know, that’s just, like, your opinion, man.');
INSERT INTO `smrc_postmeta` VALUES (605,289,'bt_theme_quote_author','The Dude');
INSERT INTO `smrc_postmeta` VALUES (606,289,'boldthemes_theme_grid_gallery','0');
INSERT INTO `smrc_postmeta` VALUES (607,289,'boldthemes_theme_quote','Well, when I was a kid, I grew up in San Diego next to the ocean. The ocean was my friend - my best friend.');
INSERT INTO `smrc_postmeta` VALUES (608,289,'boldthemes_theme_quote_author','Robert Ballard');
INSERT INTO `smrc_postmeta` VALUES (609,289,'boldthemes_theme_override','a:0:{}');
INSERT INTO `smrc_postmeta` VALUES (610,289,'_wp_old_slug','quote-post');
INSERT INTO `smrc_postmeta` VALUES (613,287,'_thumbnail_id','591');
INSERT INTO `smrc_postmeta` VALUES (614,287,'bt_theme_grid_gallery','0');
INSERT INTO `smrc_postmeta` VALUES (615,287,'bt_theme_tile_format','11');
INSERT INTO `smrc_postmeta` VALUES (616,287,'bt_theme_override','a:0:{}');
INSERT INTO `smrc_postmeta` VALUES (617,287,'_wp_old_slug','hello-world');
INSERT INTO `smrc_postmeta` VALUES (618,287,'_wp_old_slug','vel-illum-dolore-eu-feugiat-nulla-facilisis-2');
INSERT INTO `smrc_postmeta` VALUES (619,287,'_wp_old_slug','dolore-eu-feugiat-nulla-facilisis');
INSERT INTO `smrc_postmeta` VALUES (620,287,'_dp_original','234');
INSERT INTO `smrc_postmeta` VALUES (621,287,'bt_theme_audio','<iframe width=\"100%\" height=\"450\" scrolling=\"no\" frameborder=\"no\" src=\"https://w.soundcloud.com/player/?url=https%3A//api.soundcloud.com/tracks/160122133&auto_play=false&hide_related=false&show_comments=true&show_user=true&show_reposts=false&visual=true\"></iframe>');
INSERT INTO `smrc_postmeta` VALUES (622,287,'_wp_old_slug','audio-post');
INSERT INTO `smrc_postmeta` VALUES (623,287,'boldthemes_theme_grid_gallery','0');
INSERT INTO `smrc_postmeta` VALUES (624,287,'boldthemes_theme_audio','<iframe width=\"100%\" height=\"450\" scrolling=\"no\" frameborder=\"no\" src=\"https://w.soundcloud.com/player/?url=https%3A//api.soundcloud.com/tracks/91562763&auto_play=false&hide_related=false&show_comments=true&show_user=true&show_reposts=false&visual=true\"></iframe>');
INSERT INTO `smrc_postmeta` VALUES (625,287,'boldthemes_theme_override','a:0:{}');
INSERT INTO `smrc_postmeta` VALUES (628,232,'_thumbnail_id','1141');
INSERT INTO `smrc_postmeta` VALUES (629,232,'bt_theme_grid_gallery','1');
INSERT INTO `smrc_postmeta` VALUES (630,232,'bt_theme_tile_format','11');
INSERT INTO `smrc_postmeta` VALUES (631,232,'bt_theme_override','a:0:{}');
INSERT INTO `smrc_postmeta` VALUES (632,232,'_wp_old_slug','hello-world');
INSERT INTO `smrc_postmeta` VALUES (633,232,'_dp_original','230');
INSERT INTO `smrc_postmeta` VALUES (634,232,'_wp_old_slug','vel-illum-dolore-eu-feugiat-nulla-facilisis');
INSERT INTO `smrc_postmeta` VALUES (635,232,'bt_theme_grid_gallery_format','21,11,11,11,21,11,11,11,21');
INSERT INTO `smrc_postmeta` VALUES (636,232,'bt_theme_images','440');
INSERT INTO `smrc_postmeta` VALUES (637,232,'bt_theme_images','441');
INSERT INTO `smrc_postmeta` VALUES (638,232,'bt_theme_images','443');
INSERT INTO `smrc_postmeta` VALUES (639,232,'bt_theme_images','442');
INSERT INTO `smrc_postmeta` VALUES (640,232,'bt_theme_images','439');
INSERT INTO `smrc_postmeta` VALUES (641,232,'bt_theme_images','447');
INSERT INTO `smrc_postmeta` VALUES (642,232,'bt_theme_images','445');
INSERT INTO `smrc_postmeta` VALUES (643,232,'bt_theme_images','444');
INSERT INTO `smrc_postmeta` VALUES (644,232,'bt_theme_images','438');
INSERT INTO `smrc_postmeta` VALUES (645,232,'boldthemes_theme_grid_gallery','0');
INSERT INTO `smrc_postmeta` VALUES (647,232,'_wp_old_slug','grid-gallery-post');
INSERT INTO `smrc_postmeta` VALUES (655,123,'_thumbnail_id','606');
INSERT INTO `smrc_postmeta` VALUES (656,123,'bt_theme_grid_gallery','0');
INSERT INTO `smrc_postmeta` VALUES (657,123,'bt_theme_tile_format','11');
INSERT INTO `smrc_postmeta` VALUES (658,123,'bt_theme_override','a:0:{}');
INSERT INTO `smrc_postmeta` VALUES (659,123,'_wp_old_slug','hello-world');
INSERT INTO `smrc_postmeta` VALUES (660,123,'_wp_old_slug','blandit-praesent-luptatum-zzril');
INSERT INTO `smrc_postmeta` VALUES (661,123,'_wp_old_slug','video-post');
INSERT INTO `smrc_postmeta` VALUES (662,123,'_wp_old_slug','image-post');
INSERT INTO `smrc_postmeta` VALUES (663,123,'boldthemes_theme_grid_gallery','0');
INSERT INTO `smrc_postmeta` VALUES (664,123,'boldthemes_theme_override','a:1:{i:0;s:39:\"boldthemes_theme_blog_ghost_slider:true\";}');
INSERT INTO `smrc_postmeta` VALUES (667,230,'_thumbnail_id','1143');
INSERT INTO `smrc_postmeta` VALUES (668,230,'bt_theme_grid_gallery','0');
INSERT INTO `smrc_postmeta` VALUES (669,230,'bt_theme_tile_format','11');
INSERT INTO `smrc_postmeta` VALUES (670,230,'bt_theme_override','a:2:{i:0;s:33:\"bt_theme_blog_single_view:columns\";i:1;s:22:\"bt_theme_sidebar:false\";}');
INSERT INTO `smrc_postmeta` VALUES (671,230,'_wp_old_slug','hello-world');
INSERT INTO `smrc_postmeta` VALUES (672,230,'_dp_original','1');
INSERT INTO `smrc_postmeta` VALUES (673,230,'_wp_old_slug','ut-wisi-enim-ad-minim-veniam');
INSERT INTO `smrc_postmeta` VALUES (674,230,'bt_theme_images','443');
INSERT INTO `smrc_postmeta` VALUES (675,230,'bt_theme_images','445');
INSERT INTO `smrc_postmeta` VALUES (676,230,'bt_theme_images','444');
INSERT INTO `smrc_postmeta` VALUES (677,230,'bt_theme_images','438');
INSERT INTO `smrc_postmeta` VALUES (678,230,'boldthemes_theme_grid_gallery','0');
INSERT INTO `smrc_postmeta` VALUES (680,230,'_wp_old_slug','carousel-gallery-post');
INSERT INTO `smrc_postmeta` VALUES (685,100,'_wc_review_count','2');
INSERT INTO `smrc_postmeta` VALUES (686,100,'_visibility','visible');
INSERT INTO `smrc_postmeta` VALUES (687,100,'_stock_status','instock');
INSERT INTO `smrc_postmeta` VALUES (688,100,'total_sales','0');
INSERT INTO `smrc_postmeta` VALUES (689,100,'_downloadable','no');
INSERT INTO `smrc_postmeta` VALUES (690,100,'_virtual','no');
INSERT INTO `smrc_postmeta` VALUES (691,100,'_product_image_gallery','');
INSERT INTO `smrc_postmeta` VALUES (692,100,'_regular_price','18');
INSERT INTO `smrc_postmeta` VALUES (693,100,'_sale_price','');
INSERT INTO `smrc_postmeta` VALUES (694,100,'_tax_status','');
INSERT INTO `smrc_postmeta` VALUES (695,100,'_tax_class','');
INSERT INTO `smrc_postmeta` VALUES (696,100,'_purchase_note','');
INSERT INTO `smrc_postmeta` VALUES (697,100,'_featured','no');
INSERT INTO `smrc_postmeta` VALUES (698,100,'_weight','');
INSERT INTO `smrc_postmeta` VALUES (699,100,'_length','');
INSERT INTO `smrc_postmeta` VALUES (700,100,'_width','');
INSERT INTO `smrc_postmeta` VALUES (701,100,'_height','');
INSERT INTO `smrc_postmeta` VALUES (702,100,'_sku','');
INSERT INTO `smrc_postmeta` VALUES (703,100,'_product_attributes','a:0:{}');
INSERT INTO `smrc_postmeta` VALUES (704,100,'_sale_price_dates_from','');
INSERT INTO `smrc_postmeta` VALUES (705,100,'_sale_price_dates_to','');
INSERT INTO `smrc_postmeta` VALUES (706,100,'_price','18');
INSERT INTO `smrc_postmeta` VALUES (707,100,'_sold_individually','');
INSERT INTO `smrc_postmeta` VALUES (708,100,'_stock','');
INSERT INTO `smrc_postmeta` VALUES (709,100,'_backorders','no');
INSERT INTO `smrc_postmeta` VALUES (710,100,'_manage_stock','no');
INSERT INTO `smrc_postmeta` VALUES (711,100,'_crosssell_ids','a:2:{i:0;i:34;i:1;i:31;}');
INSERT INTO `smrc_postmeta` VALUES (712,100,'_upsell_ids','a:1:{i:0;i:53;}');
INSERT INTO `smrc_postmeta` VALUES (713,100,'boldthemes_theme_override','a:0:{}');
INSERT INTO `smrc_postmeta` VALUES (714,100,'_product_version','5.1.0');
INSERT INTO `smrc_postmeta` VALUES (715,100,'_thumbnail_id','528');
INSERT INTO `smrc_postmeta` VALUES (716,100,'_wp_old_slug','happy-ninja');
INSERT INTO `smrc_postmeta` VALUES (717,100,'_wc_average_rating','5.00');
INSERT INTO `smrc_postmeta` VALUES (718,100,'_wc_rating_count','a:1:{i:5;i:2;}');
INSERT INTO `smrc_postmeta` VALUES (719,101,'_visibility','visible');
INSERT INTO `smrc_postmeta` VALUES (720,101,'_stock_status','outofstock');
INSERT INTO `smrc_postmeta` VALUES (721,101,'total_sales','0');
INSERT INTO `smrc_postmeta` VALUES (722,101,'_downloadable','no');
INSERT INTO `smrc_postmeta` VALUES (723,101,'_virtual','no');
INSERT INTO `smrc_postmeta` VALUES (724,101,'_product_image_gallery','522');
INSERT INTO `smrc_postmeta` VALUES (725,101,'_regular_price','');
INSERT INTO `smrc_postmeta` VALUES (726,101,'_sale_price','');
INSERT INTO `smrc_postmeta` VALUES (727,101,'_tax_status','');
INSERT INTO `smrc_postmeta` VALUES (728,101,'_tax_class','');
INSERT INTO `smrc_postmeta` VALUES (729,101,'_purchase_note','');
INSERT INTO `smrc_postmeta` VALUES (730,101,'_featured','no');
INSERT INTO `smrc_postmeta` VALUES (731,101,'_weight','');
INSERT INTO `smrc_postmeta` VALUES (732,101,'_length','');
INSERT INTO `smrc_postmeta` VALUES (733,101,'_width','');
INSERT INTO `smrc_postmeta` VALUES (734,101,'_height','');
INSERT INTO `smrc_postmeta` VALUES (735,101,'_sku','');
INSERT INTO `smrc_postmeta` VALUES (736,101,'_product_attributes','a:1:{s:8:\"pa_color\";a:6:{s:4:\"name\";s:8:\"pa_color\";s:5:\"value\";s:0:\"\";s:8:\"position\";s:1:\"0\";s:10:\"is_visible\";i:0;s:12:\"is_variation\";i:1;s:11:\"is_taxonomy\";i:1;}}');
INSERT INTO `smrc_postmeta` VALUES (737,101,'_sale_price_dates_from','');
INSERT INTO `smrc_postmeta` VALUES (738,101,'_sale_price_dates_to','');
INSERT INTO `smrc_postmeta` VALUES (739,101,'_price','30');
INSERT INTO `smrc_postmeta` VALUES (740,101,'_sold_individually','');
INSERT INTO `smrc_postmeta` VALUES (741,101,'_stock','');
INSERT INTO `smrc_postmeta` VALUES (742,101,'_backorders','no');
INSERT INTO `smrc_postmeta` VALUES (743,101,'_manage_stock','no');
INSERT INTO `smrc_postmeta` VALUES (744,101,'_min_variation_price','30');
INSERT INTO `smrc_postmeta` VALUES (745,101,'_max_variation_price','35');
INSERT INTO `smrc_postmeta` VALUES (746,101,'_min_variation_regular_price','35');
INSERT INTO `smrc_postmeta` VALUES (747,101,'_max_variation_regular_price','35');
INSERT INTO `smrc_postmeta` VALUES (748,101,'_min_variation_sale_price','30');
INSERT INTO `smrc_postmeta` VALUES (749,101,'_max_variation_sale_price','30');
INSERT INTO `smrc_postmeta` VALUES (750,101,'_default_attributes','a:1:{s:8:\"pa_color\";s:5:\"black\";}');
INSERT INTO `smrc_postmeta` VALUES (751,101,'_crosssell_ids','a:1:{i:0;i:22;}');
INSERT INTO `smrc_postmeta` VALUES (752,101,'_thumbnail_id','521');
INSERT INTO `smrc_postmeta` VALUES (753,101,'boldthemes_theme_override','a:0:{}');
INSERT INTO `smrc_postmeta` VALUES (754,101,'_upsell_ids','a:0:{}');
INSERT INTO `smrc_postmeta` VALUES (755,101,'_min_price_variation_id','114');
INSERT INTO `smrc_postmeta` VALUES (756,101,'_max_price_variation_id','113');
INSERT INTO `smrc_postmeta` VALUES (757,101,'_min_regular_price_variation_id','113');
INSERT INTO `smrc_postmeta` VALUES (758,101,'_max_regular_price_variation_id','113');
INSERT INTO `smrc_postmeta` VALUES (759,101,'_min_sale_price_variation_id','114');
INSERT INTO `smrc_postmeta` VALUES (760,101,'_max_sale_price_variation_id','114');
INSERT INTO `smrc_postmeta` VALUES (761,101,'_product_version','5.1.0');
INSERT INTO `smrc_postmeta` VALUES (762,101,'_wp_old_slug','ship-your-idea-2');
INSERT INTO `smrc_postmeta` VALUES (763,101,'_wc_average_rating','4.00');
INSERT INTO `smrc_postmeta` VALUES (764,101,'_wc_rating_count','a:3:{i:3;s:1:\"1\";i:4;s:1:\"1\";i:5;s:1:\"1\";}');
INSERT INTO `smrc_postmeta` VALUES (765,101,'_wc_review_count','3');
INSERT INTO `smrc_postmeta` VALUES (766,99,'_visibility','visible');
INSERT INTO `smrc_postmeta` VALUES (767,99,'_stock_status','instock');
INSERT INTO `smrc_postmeta` VALUES (768,99,'total_sales','0');
INSERT INTO `smrc_postmeta` VALUES (769,99,'_downloadable','no');
INSERT INTO `smrc_postmeta` VALUES (770,99,'_virtual','no');
INSERT INTO `smrc_postmeta` VALUES (771,99,'_product_image_gallery','516');
INSERT INTO `smrc_postmeta` VALUES (772,99,'_regular_price','20');
INSERT INTO `smrc_postmeta` VALUES (773,99,'_sale_price','');
INSERT INTO `smrc_postmeta` VALUES (774,99,'_tax_status','');
INSERT INTO `smrc_postmeta` VALUES (775,99,'_tax_class','');
INSERT INTO `smrc_postmeta` VALUES (776,99,'_purchase_note','');
INSERT INTO `smrc_postmeta` VALUES (777,99,'_featured','no');
INSERT INTO `smrc_postmeta` VALUES (778,99,'_weight','');
INSERT INTO `smrc_postmeta` VALUES (779,99,'_length','');
INSERT INTO `smrc_postmeta` VALUES (780,99,'_width','');
INSERT INTO `smrc_postmeta` VALUES (781,99,'_height','');
INSERT INTO `smrc_postmeta` VALUES (782,99,'_sku','');
INSERT INTO `smrc_postmeta` VALUES (783,99,'_product_attributes','a:0:{}');
INSERT INTO `smrc_postmeta` VALUES (784,99,'_sale_price_dates_from','');
INSERT INTO `smrc_postmeta` VALUES (785,99,'_sale_price_dates_to','');
INSERT INTO `smrc_postmeta` VALUES (786,99,'_price','20');
INSERT INTO `smrc_postmeta` VALUES (787,99,'_sold_individually','');
INSERT INTO `smrc_postmeta` VALUES (788,99,'_stock','');
INSERT INTO `smrc_postmeta` VALUES (789,99,'_backorders','no');
INSERT INTO `smrc_postmeta` VALUES (790,99,'_manage_stock','no');
INSERT INTO `smrc_postmeta` VALUES (791,99,'_crosssell_ids','a:1:{i:0;i:31;}');
INSERT INTO `smrc_postmeta` VALUES (792,99,'_upsell_ids','a:1:{i:0;i:47;}');
INSERT INTO `smrc_postmeta` VALUES (793,99,'_wc_rating_count','a:0:{}');
INSERT INTO `smrc_postmeta` VALUES (794,99,'_wc_average_rating','0');
INSERT INTO `smrc_postmeta` VALUES (795,99,'_wc_review_count','0');
INSERT INTO `smrc_postmeta` VALUES (796,99,'boldthemes_theme_override','a:0:{}');
INSERT INTO `smrc_postmeta` VALUES (797,99,'_product_version','2.5.2');
INSERT INTO `smrc_postmeta` VALUES (798,99,'_thumbnail_id','515');
INSERT INTO `smrc_postmeta` VALUES (799,99,'_wp_old_slug','woo-ninja');
INSERT INTO `smrc_postmeta` VALUES (800,98,'_visibility','visible');
INSERT INTO `smrc_postmeta` VALUES (801,98,'_stock_status','instock');
INSERT INTO `smrc_postmeta` VALUES (802,98,'total_sales','0');
INSERT INTO `smrc_postmeta` VALUES (803,98,'_downloadable','no');
INSERT INTO `smrc_postmeta` VALUES (804,98,'_virtual','no');
INSERT INTO `smrc_postmeta` VALUES (805,98,'_product_image_gallery','');
INSERT INTO `smrc_postmeta` VALUES (806,98,'_regular_price','20');
INSERT INTO `smrc_postmeta` VALUES (807,98,'_sale_price','');
INSERT INTO `smrc_postmeta` VALUES (808,98,'_tax_status','');
INSERT INTO `smrc_postmeta` VALUES (809,98,'_tax_class','');
INSERT INTO `smrc_postmeta` VALUES (810,98,'_purchase_note','');
INSERT INTO `smrc_postmeta` VALUES (811,98,'_featured','no');
INSERT INTO `smrc_postmeta` VALUES (812,98,'_weight','');
INSERT INTO `smrc_postmeta` VALUES (813,98,'_length','');
INSERT INTO `smrc_postmeta` VALUES (814,98,'_width','');
INSERT INTO `smrc_postmeta` VALUES (815,98,'_height','');
INSERT INTO `smrc_postmeta` VALUES (816,98,'_sku','');
INSERT INTO `smrc_postmeta` VALUES (817,98,'_product_attributes','a:0:{}');
INSERT INTO `smrc_postmeta` VALUES (818,98,'_sale_price_dates_from','');
INSERT INTO `smrc_postmeta` VALUES (819,98,'_sale_price_dates_to','');
INSERT INTO `smrc_postmeta` VALUES (820,98,'_price','20');
INSERT INTO `smrc_postmeta` VALUES (821,98,'_sold_individually','');
INSERT INTO `smrc_postmeta` VALUES (822,98,'_stock','');
INSERT INTO `smrc_postmeta` VALUES (823,98,'_backorders','no');
INSERT INTO `smrc_postmeta` VALUES (824,98,'_manage_stock','no');
INSERT INTO `smrc_postmeta` VALUES (825,98,'_crosssell_ids','a:1:{i:0;i:34;}');
INSERT INTO `smrc_postmeta` VALUES (826,98,'_upsell_ids','a:1:{i:0;i:56;}');
INSERT INTO `smrc_postmeta` VALUES (827,98,'boldthemes_theme_override','a:0:{}');
INSERT INTO `smrc_postmeta` VALUES (828,98,'_product_version','5.1.0');
INSERT INTO `smrc_postmeta` VALUES (829,98,'_thumbnail_id','531');
INSERT INTO `smrc_postmeta` VALUES (830,98,'_wp_old_slug','ninja-silhouette');
INSERT INTO `smrc_postmeta` VALUES (831,98,'_wc_average_rating','5.00');
INSERT INTO `smrc_postmeta` VALUES (832,98,'_wc_rating_count','a:1:{i:5;s:1:\"1\";}');
INSERT INTO `smrc_postmeta` VALUES (833,98,'_wc_review_count','1');
INSERT INTO `smrc_postmeta` VALUES (834,102,'_wc_review_count','2');
INSERT INTO `smrc_postmeta` VALUES (835,102,'_visibility','visible');
INSERT INTO `smrc_postmeta` VALUES (836,102,'_stock_status','instock');
INSERT INTO `smrc_postmeta` VALUES (837,102,'total_sales','0');
INSERT INTO `smrc_postmeta` VALUES (838,102,'_downloadable','no');
INSERT INTO `smrc_postmeta` VALUES (839,102,'_virtual','no');
INSERT INTO `smrc_postmeta` VALUES (840,102,'_product_image_gallery','520');
INSERT INTO `smrc_postmeta` VALUES (841,102,'_regular_price','35');
INSERT INTO `smrc_postmeta` VALUES (842,102,'_sale_price','');
INSERT INTO `smrc_postmeta` VALUES (843,102,'_tax_status','');
INSERT INTO `smrc_postmeta` VALUES (844,102,'_tax_class','');
INSERT INTO `smrc_postmeta` VALUES (845,102,'_purchase_note','');
INSERT INTO `smrc_postmeta` VALUES (846,102,'_featured','no');
INSERT INTO `smrc_postmeta` VALUES (847,102,'_weight','');
INSERT INTO `smrc_postmeta` VALUES (848,102,'_length','');
INSERT INTO `smrc_postmeta` VALUES (849,102,'_width','');
INSERT INTO `smrc_postmeta` VALUES (850,102,'_height','');
INSERT INTO `smrc_postmeta` VALUES (851,102,'_sku','');
INSERT INTO `smrc_postmeta` VALUES (852,102,'_product_attributes','a:0:{}');
INSERT INTO `smrc_postmeta` VALUES (853,102,'_sale_price_dates_from','');
INSERT INTO `smrc_postmeta` VALUES (854,102,'_sale_price_dates_to','');
INSERT INTO `smrc_postmeta` VALUES (855,102,'_price','35');
INSERT INTO `smrc_postmeta` VALUES (856,102,'_sold_individually','');
INSERT INTO `smrc_postmeta` VALUES (857,102,'_stock','');
INSERT INTO `smrc_postmeta` VALUES (858,102,'_backorders','no');
INSERT INTO `smrc_postmeta` VALUES (859,102,'_manage_stock','no');
INSERT INTO `smrc_postmeta` VALUES (860,102,'_crosssell_ids','a:1:{i:0;i:34;}');
INSERT INTO `smrc_postmeta` VALUES (861,102,'_thumbnail_id','519');
INSERT INTO `smrc_postmeta` VALUES (862,102,'_wp_old_slug','woo-ninja-2');
INSERT INTO `smrc_postmeta` VALUES (863,102,'boldthemes_theme_override','a:0:{}');
INSERT INTO `smrc_postmeta` VALUES (864,102,'_upsell_ids','a:0:{}');
INSERT INTO `smrc_postmeta` VALUES (865,102,'_product_version','5.1.0');
INSERT INTO `smrc_postmeta` VALUES (866,102,'_wc_average_rating','4.50');
INSERT INTO `smrc_postmeta` VALUES (867,102,'_wc_rating_count','a:2:{i:4;s:1:\"1\";i:5;s:1:\"1\";}');
INSERT INTO `smrc_postmeta` VALUES (868,104,'_visibility','visible');
INSERT INTO `smrc_postmeta` VALUES (869,104,'_stock_status','instock');
INSERT INTO `smrc_postmeta` VALUES (870,104,'total_sales','0');
INSERT INTO `smrc_postmeta` VALUES (871,104,'_downloadable','no');
INSERT INTO `smrc_postmeta` VALUES (872,104,'_virtual','no');
INSERT INTO `smrc_postmeta` VALUES (873,104,'_product_image_gallery','524');
INSERT INTO `smrc_postmeta` VALUES (874,104,'_regular_price','35');
INSERT INTO `smrc_postmeta` VALUES (875,104,'_sale_price','');
INSERT INTO `smrc_postmeta` VALUES (876,104,'_tax_status','');
INSERT INTO `smrc_postmeta` VALUES (877,104,'_tax_class','');
INSERT INTO `smrc_postmeta` VALUES (878,104,'_purchase_note','');
INSERT INTO `smrc_postmeta` VALUES (879,104,'_featured','no');
INSERT INTO `smrc_postmeta` VALUES (880,104,'_weight','');
INSERT INTO `smrc_postmeta` VALUES (881,104,'_length','');
INSERT INTO `smrc_postmeta` VALUES (882,104,'_width','');
INSERT INTO `smrc_postmeta` VALUES (883,104,'_height','');
INSERT INTO `smrc_postmeta` VALUES (884,104,'_sku','');
INSERT INTO `smrc_postmeta` VALUES (885,104,'_product_attributes','a:0:{}');
INSERT INTO `smrc_postmeta` VALUES (886,104,'_sale_price_dates_from','');
INSERT INTO `smrc_postmeta` VALUES (887,104,'_sale_price_dates_to','');
INSERT INTO `smrc_postmeta` VALUES (888,104,'_price','35');
INSERT INTO `smrc_postmeta` VALUES (889,104,'_sold_individually','');
INSERT INTO `smrc_postmeta` VALUES (890,104,'_stock','');
INSERT INTO `smrc_postmeta` VALUES (891,104,'_backorders','no');
INSERT INTO `smrc_postmeta` VALUES (892,104,'_manage_stock','no');
INSERT INTO `smrc_postmeta` VALUES (893,104,'_crosssell_ids','a:0:{}');
INSERT INTO `smrc_postmeta` VALUES (894,104,'boldthemes_theme_override','a:0:{}');
INSERT INTO `smrc_postmeta` VALUES (895,104,'_upsell_ids','a:0:{}');
INSERT INTO `smrc_postmeta` VALUES (896,104,'_product_version','5.1.0');
INSERT INTO `smrc_postmeta` VALUES (897,104,'_thumbnail_id','523');
INSERT INTO `smrc_postmeta` VALUES (898,104,'_wp_old_slug','happy-ninja-2');
INSERT INTO `smrc_postmeta` VALUES (899,104,'_wc_average_rating','3.00');
INSERT INTO `smrc_postmeta` VALUES (900,104,'_wc_rating_count','a:2:{i:1;s:1:\"1\";i:5;s:1:\"1\";}');
INSERT INTO `smrc_postmeta` VALUES (901,104,'_wc_review_count','2');
INSERT INTO `smrc_postmeta` VALUES (902,107,'_visibility','visible');
INSERT INTO `smrc_postmeta` VALUES (903,107,'_stock_status','instock');
INSERT INTO `smrc_postmeta` VALUES (904,107,'total_sales','0');
INSERT INTO `smrc_postmeta` VALUES (905,107,'_downloadable','no');
INSERT INTO `smrc_postmeta` VALUES (906,107,'_virtual','no');
INSERT INTO `smrc_postmeta` VALUES (907,107,'_product_image_gallery','');
INSERT INTO `smrc_postmeta` VALUES (908,107,'_regular_price','15');
INSERT INTO `smrc_postmeta` VALUES (909,107,'_sale_price','');
INSERT INTO `smrc_postmeta` VALUES (910,107,'_tax_status','');
INSERT INTO `smrc_postmeta` VALUES (911,107,'_tax_class','');
INSERT INTO `smrc_postmeta` VALUES (912,107,'_purchase_note','');
INSERT INTO `smrc_postmeta` VALUES (913,107,'_featured','no');
INSERT INTO `smrc_postmeta` VALUES (914,107,'_weight','');
INSERT INTO `smrc_postmeta` VALUES (915,107,'_length','');
INSERT INTO `smrc_postmeta` VALUES (916,107,'_width','');
INSERT INTO `smrc_postmeta` VALUES (917,107,'_height','');
INSERT INTO `smrc_postmeta` VALUES (918,107,'_sku','');
INSERT INTO `smrc_postmeta` VALUES (919,107,'_product_attributes','a:0:{}');
INSERT INTO `smrc_postmeta` VALUES (920,107,'_sale_price_dates_from','');
INSERT INTO `smrc_postmeta` VALUES (921,107,'_sale_price_dates_to','');
INSERT INTO `smrc_postmeta` VALUES (922,107,'_price','15');
INSERT INTO `smrc_postmeta` VALUES (923,107,'_sold_individually','');
INSERT INTO `smrc_postmeta` VALUES (924,107,'_stock','');
INSERT INTO `smrc_postmeta` VALUES (925,107,'_backorders','no');
INSERT INTO `smrc_postmeta` VALUES (926,107,'_manage_stock','no');
INSERT INTO `smrc_postmeta` VALUES (927,107,'_upsell_ids','a:2:{i:0;i:22;i:1;i:40;}');
INSERT INTO `smrc_postmeta` VALUES (928,107,'_crosssell_ids','a:2:{i:0;i:22;i:1;i:40;}');
INSERT INTO `smrc_postmeta` VALUES (929,107,'_wc_rating_count','a:0:{}');
INSERT INTO `smrc_postmeta` VALUES (930,107,'_wc_average_rating','0');
INSERT INTO `smrc_postmeta` VALUES (931,107,'_wc_review_count','0');
INSERT INTO `smrc_postmeta` VALUES (932,107,'boldthemes_theme_override','a:0:{}');
INSERT INTO `smrc_postmeta` VALUES (933,107,'_product_version','2.5.2');
INSERT INTO `smrc_postmeta` VALUES (934,107,'_thumbnail_id','500');
INSERT INTO `smrc_postmeta` VALUES (935,107,'_wp_old_slug','ship-your-idea-3');
INSERT INTO `smrc_postmeta` VALUES (936,108,'_wc_average_rating','4.00');
INSERT INTO `smrc_postmeta` VALUES (937,108,'_wc_review_count','4');
INSERT INTO `smrc_postmeta` VALUES (938,108,'_wc_rating_count','a:3:{i:3;s:1:\"1\";i:4;s:1:\"2\";i:5;s:1:\"1\";}');
INSERT INTO `smrc_postmeta` VALUES (939,108,'_visibility','visible');
INSERT INTO `smrc_postmeta` VALUES (940,108,'_stock_status','instock');
INSERT INTO `smrc_postmeta` VALUES (941,108,'total_sales','0');
INSERT INTO `smrc_postmeta` VALUES (942,108,'_downloadable','no');
INSERT INTO `smrc_postmeta` VALUES (943,108,'_virtual','no');
INSERT INTO `smrc_postmeta` VALUES (944,108,'_product_image_gallery','');
INSERT INTO `smrc_postmeta` VALUES (945,108,'_regular_price','15');
INSERT INTO `smrc_postmeta` VALUES (946,108,'_sale_price','12');
INSERT INTO `smrc_postmeta` VALUES (947,108,'_tax_status','');
INSERT INTO `smrc_postmeta` VALUES (948,108,'_tax_class','');
INSERT INTO `smrc_postmeta` VALUES (949,108,'_purchase_note','');
INSERT INTO `smrc_postmeta` VALUES (950,108,'_featured','no');
INSERT INTO `smrc_postmeta` VALUES (951,108,'_weight','');
INSERT INTO `smrc_postmeta` VALUES (952,108,'_length','');
INSERT INTO `smrc_postmeta` VALUES (953,108,'_width','');
INSERT INTO `smrc_postmeta` VALUES (954,108,'_height','');
INSERT INTO `smrc_postmeta` VALUES (955,108,'_sku','');
INSERT INTO `smrc_postmeta` VALUES (956,108,'_product_attributes','a:0:{}');
INSERT INTO `smrc_postmeta` VALUES (957,108,'_sale_price_dates_from','');
INSERT INTO `smrc_postmeta` VALUES (958,108,'_sale_price_dates_to','');
INSERT INTO `smrc_postmeta` VALUES (959,108,'_price','12');
INSERT INTO `smrc_postmeta` VALUES (960,108,'_sold_individually','');
INSERT INTO `smrc_postmeta` VALUES (961,108,'_stock','');
INSERT INTO `smrc_postmeta` VALUES (962,108,'_backorders','no');
INSERT INTO `smrc_postmeta` VALUES (963,108,'_manage_stock','no');
INSERT INTO `smrc_postmeta` VALUES (964,108,'boldthemes_theme_override','a:0:{}');
INSERT INTO `smrc_postmeta` VALUES (965,108,'_upsell_ids','a:0:{}');
INSERT INTO `smrc_postmeta` VALUES (966,108,'_crosssell_ids','a:0:{}');
INSERT INTO `smrc_postmeta` VALUES (967,108,'_product_version','5.1.0');
INSERT INTO `smrc_postmeta` VALUES (968,108,'_thumbnail_id','501');
INSERT INTO `smrc_postmeta` VALUES (969,108,'_wp_old_slug','flying-ninja');
INSERT INTO `smrc_postmeta` VALUES (970,106,'_wc_average_rating','4.00');
INSERT INTO `smrc_postmeta` VALUES (971,106,'_wc_review_count','2');
INSERT INTO `smrc_postmeta` VALUES (972,106,'_thumbnail_id','513');
INSERT INTO `smrc_postmeta` VALUES (973,106,'_visibility','visible');
INSERT INTO `smrc_postmeta` VALUES (974,106,'_stock_status','instock');
INSERT INTO `smrc_postmeta` VALUES (975,106,'total_sales','2');
INSERT INTO `smrc_postmeta` VALUES (976,106,'_downloadable','no');
INSERT INTO `smrc_postmeta` VALUES (977,106,'_virtual','no');
INSERT INTO `smrc_postmeta` VALUES (978,106,'_product_image_gallery','514');
INSERT INTO `smrc_postmeta` VALUES (979,106,'_regular_price','35');
INSERT INTO `smrc_postmeta` VALUES (980,106,'_sale_price','');
INSERT INTO `smrc_postmeta` VALUES (981,106,'_tax_status','');
INSERT INTO `smrc_postmeta` VALUES (982,106,'_tax_class','');
INSERT INTO `smrc_postmeta` VALUES (983,106,'_purchase_note','');
INSERT INTO `smrc_postmeta` VALUES (984,106,'_featured','no');
INSERT INTO `smrc_postmeta` VALUES (985,106,'_weight','');
INSERT INTO `smrc_postmeta` VALUES (986,106,'_length','');
INSERT INTO `smrc_postmeta` VALUES (987,106,'_width','');
INSERT INTO `smrc_postmeta` VALUES (988,106,'_height','');
INSERT INTO `smrc_postmeta` VALUES (989,106,'_sku','');
INSERT INTO `smrc_postmeta` VALUES (990,106,'_product_attributes','a:0:{}');
INSERT INTO `smrc_postmeta` VALUES (991,106,'_sale_price_dates_from','');
INSERT INTO `smrc_postmeta` VALUES (992,106,'_sale_price_dates_to','');
INSERT INTO `smrc_postmeta` VALUES (993,106,'_price','35');
INSERT INTO `smrc_postmeta` VALUES (994,106,'_sold_individually','');
INSERT INTO `smrc_postmeta` VALUES (995,106,'_stock','');
INSERT INTO `smrc_postmeta` VALUES (996,106,'_backorders','no');
INSERT INTO `smrc_postmeta` VALUES (997,106,'_manage_stock','no');
INSERT INTO `smrc_postmeta` VALUES (998,106,'_crosssell_ids','a:1:{i:0;i:15;}');
INSERT INTO `smrc_postmeta` VALUES (999,106,'_wp_old_slug','woo-logo-2');
INSERT INTO `smrc_postmeta` VALUES (1000,106,'boldthemes_theme_override','a:0:{}');
INSERT INTO `smrc_postmeta` VALUES (1001,106,'_upsell_ids','a:0:{}');
INSERT INTO `smrc_postmeta` VALUES (1002,106,'_product_version','5.1.0');
INSERT INTO `smrc_postmeta` VALUES (1003,106,'_wc_rating_count','a:2:{i:3;s:1:\"1\";i:5;s:1:\"1\";}');
INSERT INTO `smrc_postmeta` VALUES (1004,105,'_wc_average_rating','4.00');
INSERT INTO `smrc_postmeta` VALUES (1005,105,'_wc_rating_count','a:3:{i:1;s:1:\"1\";i:4;s:1:\"1\";i:5;s:1:\"3\";}');
INSERT INTO `smrc_postmeta` VALUES (1006,105,'_wc_review_count','5');
INSERT INTO `smrc_postmeta` VALUES (1007,105,'_visibility','visible');
INSERT INTO `smrc_postmeta` VALUES (1008,105,'_stock_status','instock');
INSERT INTO `smrc_postmeta` VALUES (1009,105,'total_sales','1');
INSERT INTO `smrc_postmeta` VALUES (1010,105,'_downloadable','no');
INSERT INTO `smrc_postmeta` VALUES (1011,105,'_virtual','no');
INSERT INTO `smrc_postmeta` VALUES (1012,105,'_product_image_gallery','526');
INSERT INTO `smrc_postmeta` VALUES (1013,105,'_regular_price','35');
INSERT INTO `smrc_postmeta` VALUES (1014,105,'_sale_price','');
INSERT INTO `smrc_postmeta` VALUES (1015,105,'_tax_status','');
INSERT INTO `smrc_postmeta` VALUES (1016,105,'_tax_class','');
INSERT INTO `smrc_postmeta` VALUES (1017,105,'_purchase_note','');
INSERT INTO `smrc_postmeta` VALUES (1018,105,'_featured','no');
INSERT INTO `smrc_postmeta` VALUES (1019,105,'_weight','');
INSERT INTO `smrc_postmeta` VALUES (1020,105,'_length','');
INSERT INTO `smrc_postmeta` VALUES (1021,105,'_width','');
INSERT INTO `smrc_postmeta` VALUES (1022,105,'_height','');
INSERT INTO `smrc_postmeta` VALUES (1023,105,'_sku','');
INSERT INTO `smrc_postmeta` VALUES (1024,105,'_product_attributes','a:0:{}');
INSERT INTO `smrc_postmeta` VALUES (1025,105,'_sale_price_dates_from','');
INSERT INTO `smrc_postmeta` VALUES (1026,105,'_sale_price_dates_to','');
INSERT INTO `smrc_postmeta` VALUES (1027,105,'_price','35');
INSERT INTO `smrc_postmeta` VALUES (1028,105,'_sold_individually','');
INSERT INTO `smrc_postmeta` VALUES (1029,105,'_stock','');
INSERT INTO `smrc_postmeta` VALUES (1030,105,'_backorders','no');
INSERT INTO `smrc_postmeta` VALUES (1031,105,'_manage_stock','no');
INSERT INTO `smrc_postmeta` VALUES (1032,105,'_crosssell_ids','a:1:{i:0;i:31;}');
INSERT INTO `smrc_postmeta` VALUES (1033,105,'boldthemes_theme_override','a:0:{}');
INSERT INTO `smrc_postmeta` VALUES (1034,105,'_upsell_ids','a:0:{}');
INSERT INTO `smrc_postmeta` VALUES (1035,105,'_product_version','5.1.0');
INSERT INTO `smrc_postmeta` VALUES (1036,105,'_thumbnail_id','525');
INSERT INTO `smrc_postmeta` VALUES (1037,105,'_wp_old_slug','ninja-silhouette-2');
INSERT INTO `smrc_postmeta` VALUES (1038,97,'_visibility','visible');
INSERT INTO `smrc_postmeta` VALUES (1039,97,'_stock_status','outofstock');
INSERT INTO `smrc_postmeta` VALUES (1040,97,'total_sales','0');
INSERT INTO `smrc_postmeta` VALUES (1041,97,'_downloadable','no');
INSERT INTO `smrc_postmeta` VALUES (1042,97,'_virtual','no');
INSERT INTO `smrc_postmeta` VALUES (1043,97,'_product_image_gallery','');
INSERT INTO `smrc_postmeta` VALUES (1044,97,'_regular_price','');
INSERT INTO `smrc_postmeta` VALUES (1045,97,'_sale_price','');
INSERT INTO `smrc_postmeta` VALUES (1046,97,'_tax_status','');
INSERT INTO `smrc_postmeta` VALUES (1047,97,'_tax_class','');
INSERT INTO `smrc_postmeta` VALUES (1048,97,'_purchase_note','');
INSERT INTO `smrc_postmeta` VALUES (1049,97,'_featured','no');
INSERT INTO `smrc_postmeta` VALUES (1050,97,'_weight','');
INSERT INTO `smrc_postmeta` VALUES (1051,97,'_length','');
INSERT INTO `smrc_postmeta` VALUES (1052,97,'_width','');
INSERT INTO `smrc_postmeta` VALUES (1053,97,'_height','');
INSERT INTO `smrc_postmeta` VALUES (1054,97,'_sku','');
INSERT INTO `smrc_postmeta` VALUES (1055,97,'_product_attributes','a:1:{s:8:\"pa_color\";a:6:{s:4:\"name\";s:8:\"pa_color\";s:5:\"value\";s:0:\"\";s:8:\"position\";s:1:\"0\";s:10:\"is_visible\";i:0;s:12:\"is_variation\";i:1;s:11:\"is_taxonomy\";i:1;}}');
INSERT INTO `smrc_postmeta` VALUES (1056,97,'_sale_price_dates_from','');
INSERT INTO `smrc_postmeta` VALUES (1057,97,'_sale_price_dates_to','');
INSERT INTO `smrc_postmeta` VALUES (1058,97,'_price','20');
INSERT INTO `smrc_postmeta` VALUES (1059,97,'_sold_individually','');
INSERT INTO `smrc_postmeta` VALUES (1060,97,'_stock','');
INSERT INTO `smrc_postmeta` VALUES (1061,97,'_backorders','no');
INSERT INTO `smrc_postmeta` VALUES (1062,97,'_manage_stock','no');
INSERT INTO `smrc_postmeta` VALUES (1063,97,'_thumbnail_id','530');
INSERT INTO `smrc_postmeta` VALUES (1064,97,'_min_variation_price','20');
INSERT INTO `smrc_postmeta` VALUES (1065,97,'_max_variation_price','20');
INSERT INTO `smrc_postmeta` VALUES (1066,97,'_min_variation_regular_price','20');
INSERT INTO `smrc_postmeta` VALUES (1067,97,'_max_variation_regular_price','20');
INSERT INTO `smrc_postmeta` VALUES (1068,97,'_min_variation_sale_price','');
INSERT INTO `smrc_postmeta` VALUES (1069,97,'_max_variation_sale_price','');
INSERT INTO `smrc_postmeta` VALUES (1070,97,'_default_attributes','a:0:{}');
INSERT INTO `smrc_postmeta` VALUES (1071,97,'_wp_old_slug','share-your-idea');
INSERT INTO `smrc_postmeta` VALUES (1072,97,'_upsell_ids','a:1:{i:0;i:40;}');
INSERT INTO `smrc_postmeta` VALUES (1073,97,'_wc_average_rating','4.33');
INSERT INTO `smrc_postmeta` VALUES (1074,97,'boldthemes_theme_override','a:0:{}');
INSERT INTO `smrc_postmeta` VALUES (1075,97,'_crosssell_ids','a:0:{}');
INSERT INTO `smrc_postmeta` VALUES (1076,97,'_min_price_variation_id','112');
INSERT INTO `smrc_postmeta` VALUES (1077,97,'_max_price_variation_id','112');
INSERT INTO `smrc_postmeta` VALUES (1078,97,'_min_regular_price_variation_id','112');
INSERT INTO `smrc_postmeta` VALUES (1079,97,'_max_regular_price_variation_id','112');
INSERT INTO `smrc_postmeta` VALUES (1080,97,'_min_sale_price_variation_id','');
INSERT INTO `smrc_postmeta` VALUES (1081,97,'_max_sale_price_variation_id','');
INSERT INTO `smrc_postmeta` VALUES (1082,97,'_product_version','5.1.0');
INSERT INTO `smrc_postmeta` VALUES (1083,97,'_wp_old_slug','ship-your-idea');
INSERT INTO `smrc_postmeta` VALUES (1084,97,'_wc_rating_count','a:2:{i:4;s:1:\"2\";i:5;s:1:\"1\";}');
INSERT INTO `smrc_postmeta` VALUES (1085,97,'_wc_review_count','3');
INSERT INTO `smrc_postmeta` VALUES (1086,103,'_visibility','visible');
INSERT INTO `smrc_postmeta` VALUES (1087,103,'_stock_status','instock');
INSERT INTO `smrc_postmeta` VALUES (1088,103,'total_sales','0');
INSERT INTO `smrc_postmeta` VALUES (1089,103,'_downloadable','no');
INSERT INTO `smrc_postmeta` VALUES (1090,103,'_virtual','no');
INSERT INTO `smrc_postmeta` VALUES (1091,103,'_product_image_gallery','512');
INSERT INTO `smrc_postmeta` VALUES (1092,103,'_regular_price','35');
INSERT INTO `smrc_postmeta` VALUES (1093,103,'_sale_price','');
INSERT INTO `smrc_postmeta` VALUES (1094,103,'_tax_status','');
INSERT INTO `smrc_postmeta` VALUES (1095,103,'_tax_class','');
INSERT INTO `smrc_postmeta` VALUES (1096,103,'_purchase_note','');
INSERT INTO `smrc_postmeta` VALUES (1097,103,'_featured','no');
INSERT INTO `smrc_postmeta` VALUES (1098,103,'_weight','');
INSERT INTO `smrc_postmeta` VALUES (1099,103,'_length','');
INSERT INTO `smrc_postmeta` VALUES (1100,103,'_width','');
INSERT INTO `smrc_postmeta` VALUES (1101,103,'_height','');
INSERT INTO `smrc_postmeta` VALUES (1102,103,'_sku','');
INSERT INTO `smrc_postmeta` VALUES (1103,103,'_product_attributes','a:0:{}');
INSERT INTO `smrc_postmeta` VALUES (1104,103,'_sale_price_dates_from','');
INSERT INTO `smrc_postmeta` VALUES (1105,103,'_sale_price_dates_to','');
INSERT INTO `smrc_postmeta` VALUES (1106,103,'_price','35');
INSERT INTO `smrc_postmeta` VALUES (1107,103,'_sold_individually','');
INSERT INTO `smrc_postmeta` VALUES (1108,103,'_stock','');
INSERT INTO `smrc_postmeta` VALUES (1109,103,'_backorders','no');
INSERT INTO `smrc_postmeta` VALUES (1110,103,'_manage_stock','no');
INSERT INTO `smrc_postmeta` VALUES (1111,103,'_crosssell_ids','a:1:{i:0;i:53;}');
INSERT INTO `smrc_postmeta` VALUES (1112,103,'boldthemes_theme_override','a:0:{}');
INSERT INTO `smrc_postmeta` VALUES (1113,103,'_upsell_ids','a:0:{}');
INSERT INTO `smrc_postmeta` VALUES (1114,103,'_product_version','5.1.0');
INSERT INTO `smrc_postmeta` VALUES (1115,103,'_thumbnail_id','511');
INSERT INTO `smrc_postmeta` VALUES (1116,103,'_wp_old_slug','patient-ninja');
INSERT INTO `smrc_postmeta` VALUES (1117,103,'_wp_old_slug','hotel-california-t-shirt-brown');
INSERT INTO `smrc_postmeta` VALUES (1118,103,'_wc_average_rating','4.67');
INSERT INTO `smrc_postmeta` VALUES (1119,103,'_wc_rating_count','a:2:{i:4;s:1:\"1\";i:5;s:1:\"2\";}');
INSERT INTO `smrc_postmeta` VALUES (1120,103,'_wc_review_count','3');
INSERT INTO `smrc_postmeta` VALUES (1121,95,'_thumbnail_id','527');
INSERT INTO `smrc_postmeta` VALUES (1122,95,'_visibility','visible');
INSERT INTO `smrc_postmeta` VALUES (1123,95,'_stock_status','instock');
INSERT INTO `smrc_postmeta` VALUES (1124,95,'total_sales','0');
INSERT INTO `smrc_postmeta` VALUES (1125,95,'_downloadable','no');
INSERT INTO `smrc_postmeta` VALUES (1126,95,'_virtual','no');
INSERT INTO `smrc_postmeta` VALUES (1127,95,'_product_image_gallery','');
INSERT INTO `smrc_postmeta` VALUES (1128,95,'_regular_price','20');
INSERT INTO `smrc_postmeta` VALUES (1129,95,'_sale_price','18');
INSERT INTO `smrc_postmeta` VALUES (1130,95,'_tax_status','');
INSERT INTO `smrc_postmeta` VALUES (1131,95,'_tax_class','');
INSERT INTO `smrc_postmeta` VALUES (1132,95,'_purchase_note','');
INSERT INTO `smrc_postmeta` VALUES (1133,95,'_featured','no');
INSERT INTO `smrc_postmeta` VALUES (1134,95,'_weight','');
INSERT INTO `smrc_postmeta` VALUES (1135,95,'_length','');
INSERT INTO `smrc_postmeta` VALUES (1136,95,'_width','');
INSERT INTO `smrc_postmeta` VALUES (1137,95,'_height','');
INSERT INTO `smrc_postmeta` VALUES (1138,95,'_sku','');
INSERT INTO `smrc_postmeta` VALUES (1139,95,'_product_attributes','a:0:{}');
INSERT INTO `smrc_postmeta` VALUES (1140,95,'_sale_price_dates_from','');
INSERT INTO `smrc_postmeta` VALUES (1141,95,'_sale_price_dates_to','');
INSERT INTO `smrc_postmeta` VALUES (1142,95,'_price','18');
INSERT INTO `smrc_postmeta` VALUES (1143,95,'_sold_individually','');
INSERT INTO `smrc_postmeta` VALUES (1144,95,'_stock','5');
INSERT INTO `smrc_postmeta` VALUES (1145,95,'_backorders','no');
INSERT INTO `smrc_postmeta` VALUES (1146,95,'_manage_stock','yes');
INSERT INTO `smrc_postmeta` VALUES (1147,95,'_upsell_ids','a:1:{i:0;i:60;}');
INSERT INTO `smrc_postmeta` VALUES (1148,95,'boldthemes_theme_override','a:0:{}');
INSERT INTO `smrc_postmeta` VALUES (1149,95,'_crosssell_ids','a:0:{}');
INSERT INTO `smrc_postmeta` VALUES (1150,95,'_product_version','5.1.0');
INSERT INTO `smrc_postmeta` VALUES (1151,95,'_wp_old_slug','woo-logo');
INSERT INTO `smrc_postmeta` VALUES (1152,95,'_wc_average_rating','4.00');
INSERT INTO `smrc_postmeta` VALUES (1153,95,'_wc_rating_count','a:1:{i:4;s:1:\"1\";}');
INSERT INTO `smrc_postmeta` VALUES (1154,95,'_wc_review_count','1');
INSERT INTO `smrc_postmeta` VALUES (1155,120,'_wc_average_rating','5.00');
INSERT INTO `smrc_postmeta` VALUES (1156,120,'_wc_review_count','2');
INSERT INTO `smrc_postmeta` VALUES (1157,120,'_wc_rating_count','a:1:{i:5;s:1:\"2\";}');
INSERT INTO `smrc_postmeta` VALUES (1158,120,'_visibility','visible');
INSERT INTO `smrc_postmeta` VALUES (1159,120,'_stock_status','instock');
INSERT INTO `smrc_postmeta` VALUES (1160,120,'total_sales','0');
INSERT INTO `smrc_postmeta` VALUES (1161,120,'_downloadable','yes');
INSERT INTO `smrc_postmeta` VALUES (1162,120,'_virtual','no');
INSERT INTO `smrc_postmeta` VALUES (1163,120,'_product_image_gallery','');
INSERT INTO `smrc_postmeta` VALUES (1164,120,'_regular_price','9');
INSERT INTO `smrc_postmeta` VALUES (1165,120,'_sale_price','');
INSERT INTO `smrc_postmeta` VALUES (1166,120,'_tax_status','');
INSERT INTO `smrc_postmeta` VALUES (1167,120,'_tax_class','');
INSERT INTO `smrc_postmeta` VALUES (1168,120,'_purchase_note','');
INSERT INTO `smrc_postmeta` VALUES (1169,120,'_featured','no');
INSERT INTO `smrc_postmeta` VALUES (1170,120,'_weight','');
INSERT INTO `smrc_postmeta` VALUES (1171,120,'_length','');
INSERT INTO `smrc_postmeta` VALUES (1172,120,'_width','');
INSERT INTO `smrc_postmeta` VALUES (1173,120,'_height','');
INSERT INTO `smrc_postmeta` VALUES (1174,120,'_sku','');
INSERT INTO `smrc_postmeta` VALUES (1175,120,'_product_attributes','a:0:{}');
INSERT INTO `smrc_postmeta` VALUES (1176,120,'_sale_price_dates_from','');
INSERT INTO `smrc_postmeta` VALUES (1177,120,'_sale_price_dates_to','');
INSERT INTO `smrc_postmeta` VALUES (1178,120,'_price','9');
INSERT INTO `smrc_postmeta` VALUES (1179,120,'_sold_individually','');
INSERT INTO `smrc_postmeta` VALUES (1180,120,'_stock','');
INSERT INTO `smrc_postmeta` VALUES (1181,120,'_backorders','no');
INSERT INTO `smrc_postmeta` VALUES (1182,120,'_manage_stock','no');
INSERT INTO `smrc_postmeta` VALUES (1183,120,'_file_paths','a:0:{}');
INSERT INTO `smrc_postmeta` VALUES (1184,120,'_download_limit','');
INSERT INTO `smrc_postmeta` VALUES (1185,120,'_download_expiry','');
INSERT INTO `smrc_postmeta` VALUES (1186,120,'boldthemes_theme_override','a:0:{}');
INSERT INTO `smrc_postmeta` VALUES (1187,120,'_upsell_ids','a:0:{}');
INSERT INTO `smrc_postmeta` VALUES (1188,120,'_crosssell_ids','a:0:{}');
INSERT INTO `smrc_postmeta` VALUES (1189,120,'_downloadable_files','a:0:{}');
INSERT INTO `smrc_postmeta` VALUES (1190,120,'_download_type','');
INSERT INTO `smrc_postmeta` VALUES (1191,120,'_product_version','5.1.0');
INSERT INTO `smrc_postmeta` VALUES (1192,120,'_thumbnail_id','505');
INSERT INTO `smrc_postmeta` VALUES (1193,120,'_wp_old_slug','woo-album-4');
INSERT INTO `smrc_postmeta` VALUES (1194,119,'_visibility','visible');
INSERT INTO `smrc_postmeta` VALUES (1195,119,'_stock_status','instock');
INSERT INTO `smrc_postmeta` VALUES (1196,119,'total_sales','0');
INSERT INTO `smrc_postmeta` VALUES (1197,119,'_downloadable','yes');
INSERT INTO `smrc_postmeta` VALUES (1198,119,'_virtual','no');
INSERT INTO `smrc_postmeta` VALUES (1199,119,'_product_image_gallery','');
INSERT INTO `smrc_postmeta` VALUES (1200,119,'_regular_price','3');
INSERT INTO `smrc_postmeta` VALUES (1201,119,'_sale_price','');
INSERT INTO `smrc_postmeta` VALUES (1202,119,'_tax_status','');
INSERT INTO `smrc_postmeta` VALUES (1203,119,'_tax_class','');
INSERT INTO `smrc_postmeta` VALUES (1204,119,'_purchase_note','');
INSERT INTO `smrc_postmeta` VALUES (1205,119,'_featured','no');
INSERT INTO `smrc_postmeta` VALUES (1206,119,'_weight','');
INSERT INTO `smrc_postmeta` VALUES (1207,119,'_length','');
INSERT INTO `smrc_postmeta` VALUES (1208,119,'_width','');
INSERT INTO `smrc_postmeta` VALUES (1209,119,'_height','');
INSERT INTO `smrc_postmeta` VALUES (1210,119,'_sku','');
INSERT INTO `smrc_postmeta` VALUES (1211,119,'_product_attributes','a:0:{}');
INSERT INTO `smrc_postmeta` VALUES (1212,119,'_sale_price_dates_from','');
INSERT INTO `smrc_postmeta` VALUES (1213,119,'_sale_price_dates_to','');
INSERT INTO `smrc_postmeta` VALUES (1214,119,'_price','3');
INSERT INTO `smrc_postmeta` VALUES (1215,119,'_sold_individually','');
INSERT INTO `smrc_postmeta` VALUES (1216,119,'_stock','');
INSERT INTO `smrc_postmeta` VALUES (1217,119,'_backorders','no');
INSERT INTO `smrc_postmeta` VALUES (1218,119,'_manage_stock','no');
INSERT INTO `smrc_postmeta` VALUES (1219,119,'_file_paths','a:0:{}');
INSERT INTO `smrc_postmeta` VALUES (1220,119,'_download_limit','');
INSERT INTO `smrc_postmeta` VALUES (1221,119,'_download_expiry','');
INSERT INTO `smrc_postmeta` VALUES (1222,119,'_wc_rating_count','a:0:{}');
INSERT INTO `smrc_postmeta` VALUES (1223,119,'_wc_average_rating','0');
INSERT INTO `smrc_postmeta` VALUES (1224,119,'_wc_review_count','0');
INSERT INTO `smrc_postmeta` VALUES (1225,119,'boldthemes_theme_override','a:0:{}');
INSERT INTO `smrc_postmeta` VALUES (1226,119,'_upsell_ids','a:0:{}');
INSERT INTO `smrc_postmeta` VALUES (1227,119,'_crosssell_ids','a:0:{}');
INSERT INTO `smrc_postmeta` VALUES (1228,119,'_downloadable_files','a:0:{}');
INSERT INTO `smrc_postmeta` VALUES (1229,119,'_download_type','');
INSERT INTO `smrc_postmeta` VALUES (1230,119,'_product_version','2.5.2');
INSERT INTO `smrc_postmeta` VALUES (1231,119,'_thumbnail_id','507');
INSERT INTO `smrc_postmeta` VALUES (1232,119,'_wp_old_slug','woo-single-1');
INSERT INTO `smrc_postmeta` VALUES (1233,118,'_wc_average_rating','3.00');
INSERT INTO `smrc_postmeta` VALUES (1234,118,'_wc_rating_count','a:1:{i:3;s:1:\"1\";}');
INSERT INTO `smrc_postmeta` VALUES (1235,118,'_wc_review_count','1');
INSERT INTO `smrc_postmeta` VALUES (1236,118,'_visibility','visible');
INSERT INTO `smrc_postmeta` VALUES (1237,118,'_stock_status','instock');
INSERT INTO `smrc_postmeta` VALUES (1238,118,'total_sales','0');
INSERT INTO `smrc_postmeta` VALUES (1239,118,'_downloadable','yes');
INSERT INTO `smrc_postmeta` VALUES (1240,118,'_virtual','no');
INSERT INTO `smrc_postmeta` VALUES (1241,118,'_product_image_gallery','');
INSERT INTO `smrc_postmeta` VALUES (1242,118,'_regular_price','9');
INSERT INTO `smrc_postmeta` VALUES (1243,118,'_sale_price','');
INSERT INTO `smrc_postmeta` VALUES (1244,118,'_tax_status','');
INSERT INTO `smrc_postmeta` VALUES (1245,118,'_tax_class','');
INSERT INTO `smrc_postmeta` VALUES (1246,118,'_purchase_note','');
INSERT INTO `smrc_postmeta` VALUES (1247,118,'_featured','no');
INSERT INTO `smrc_postmeta` VALUES (1248,118,'_weight','');
INSERT INTO `smrc_postmeta` VALUES (1249,118,'_length','');
INSERT INTO `smrc_postmeta` VALUES (1250,118,'_width','');
INSERT INTO `smrc_postmeta` VALUES (1251,118,'_height','');
INSERT INTO `smrc_postmeta` VALUES (1252,118,'_sku','');
INSERT INTO `smrc_postmeta` VALUES (1253,118,'_product_attributes','a:0:{}');
INSERT INTO `smrc_postmeta` VALUES (1254,118,'_sale_price_dates_from','');
INSERT INTO `smrc_postmeta` VALUES (1255,118,'_sale_price_dates_to','');
INSERT INTO `smrc_postmeta` VALUES (1256,118,'_price','9');
INSERT INTO `smrc_postmeta` VALUES (1257,118,'_sold_individually','');
INSERT INTO `smrc_postmeta` VALUES (1258,118,'_stock','');
INSERT INTO `smrc_postmeta` VALUES (1259,118,'_backorders','no');
INSERT INTO `smrc_postmeta` VALUES (1260,118,'_manage_stock','no');
INSERT INTO `smrc_postmeta` VALUES (1261,118,'_file_paths','a:0:{}');
INSERT INTO `smrc_postmeta` VALUES (1262,118,'_download_limit','');
INSERT INTO `smrc_postmeta` VALUES (1263,118,'_download_expiry','');
INSERT INTO `smrc_postmeta` VALUES (1264,118,'boldthemes_theme_override','a:0:{}');
INSERT INTO `smrc_postmeta` VALUES (1265,118,'_upsell_ids','a:0:{}');
INSERT INTO `smrc_postmeta` VALUES (1266,118,'_crosssell_ids','a:0:{}');
INSERT INTO `smrc_postmeta` VALUES (1267,118,'_downloadable_files','a:0:{}');
INSERT INTO `smrc_postmeta` VALUES (1268,118,'_download_type','');
INSERT INTO `smrc_postmeta` VALUES (1269,118,'_product_version','5.1.0');
INSERT INTO `smrc_postmeta` VALUES (1270,118,'_thumbnail_id','506');
INSERT INTO `smrc_postmeta` VALUES (1271,118,'_wp_old_slug','woo-album-3');
INSERT INTO `smrc_postmeta` VALUES (1272,117,'_wc_rating_count','a:1:{i:4;s:1:\"1\";}');
INSERT INTO `smrc_postmeta` VALUES (1273,117,'_wc_average_rating','4.00');
INSERT INTO `smrc_postmeta` VALUES (1274,117,'_thumbnail_id','504');
INSERT INTO `smrc_postmeta` VALUES (1275,117,'_visibility','visible');
INSERT INTO `smrc_postmeta` VALUES (1276,117,'_stock_status','instock');
INSERT INTO `smrc_postmeta` VALUES (1277,117,'total_sales','0');
INSERT INTO `smrc_postmeta` VALUES (1278,117,'_downloadable','yes');
INSERT INTO `smrc_postmeta` VALUES (1279,117,'_virtual','no');
INSERT INTO `smrc_postmeta` VALUES (1280,117,'_product_image_gallery','');
INSERT INTO `smrc_postmeta` VALUES (1281,117,'_regular_price','9');
INSERT INTO `smrc_postmeta` VALUES (1282,117,'_sale_price','');
INSERT INTO `smrc_postmeta` VALUES (1283,117,'_tax_status','');
INSERT INTO `smrc_postmeta` VALUES (1284,117,'_tax_class','');
INSERT INTO `smrc_postmeta` VALUES (1285,117,'_purchase_note','');
INSERT INTO `smrc_postmeta` VALUES (1286,117,'_featured','no');
INSERT INTO `smrc_postmeta` VALUES (1287,117,'_weight','');
INSERT INTO `smrc_postmeta` VALUES (1288,117,'_length','');
INSERT INTO `smrc_postmeta` VALUES (1289,117,'_width','');
INSERT INTO `smrc_postmeta` VALUES (1290,117,'_height','');
INSERT INTO `smrc_postmeta` VALUES (1291,117,'_sku','');
INSERT INTO `smrc_postmeta` VALUES (1292,117,'_product_attributes','a:0:{}');
INSERT INTO `smrc_postmeta` VALUES (1293,117,'_sale_price_dates_from','');
INSERT INTO `smrc_postmeta` VALUES (1294,117,'_sale_price_dates_to','');
INSERT INTO `smrc_postmeta` VALUES (1295,117,'_price','9');
INSERT INTO `smrc_postmeta` VALUES (1296,117,'_sold_individually','');
INSERT INTO `smrc_postmeta` VALUES (1297,117,'_stock','');
INSERT INTO `smrc_postmeta` VALUES (1298,117,'_backorders','no');
INSERT INTO `smrc_postmeta` VALUES (1299,117,'_manage_stock','no');
INSERT INTO `smrc_postmeta` VALUES (1300,117,'_file_paths','a:0:{}');
INSERT INTO `smrc_postmeta` VALUES (1301,117,'_download_limit','');
INSERT INTO `smrc_postmeta` VALUES (1302,117,'_download_expiry','');
INSERT INTO `smrc_postmeta` VALUES (1303,117,'boldthemes_theme_override','a:0:{}');
INSERT INTO `smrc_postmeta` VALUES (1304,117,'_upsell_ids','a:0:{}');
INSERT INTO `smrc_postmeta` VALUES (1305,117,'_crosssell_ids','a:0:{}');
INSERT INTO `smrc_postmeta` VALUES (1306,117,'_downloadable_files','a:0:{}');
INSERT INTO `smrc_postmeta` VALUES (1307,117,'_download_type','');
INSERT INTO `smrc_postmeta` VALUES (1308,117,'_product_version','5.1.0');
INSERT INTO `smrc_postmeta` VALUES (1309,117,'_wp_old_slug','woo-album-2');
INSERT INTO `smrc_postmeta` VALUES (1310,117,'_wc_review_count','1');
INSERT INTO `smrc_postmeta` VALUES (1311,121,'_wc_review_count','2');
INSERT INTO `smrc_postmeta` VALUES (1312,121,'_wc_average_rating','4.50');
INSERT INTO `smrc_postmeta` VALUES (1313,121,'_wc_rating_count','a:2:{i:4;s:1:\"1\";i:5;s:1:\"1\";}');
INSERT INTO `smrc_postmeta` VALUES (1314,121,'_visibility','visible');
INSERT INTO `smrc_postmeta` VALUES (1315,121,'_stock_status','instock');
INSERT INTO `smrc_postmeta` VALUES (1316,121,'total_sales','1');
INSERT INTO `smrc_postmeta` VALUES (1317,121,'_downloadable','no');
INSERT INTO `smrc_postmeta` VALUES (1318,121,'_virtual','no');
INSERT INTO `smrc_postmeta` VALUES (1319,121,'_product_image_gallery','');
INSERT INTO `smrc_postmeta` VALUES (1320,121,'_regular_price','3');
INSERT INTO `smrc_postmeta` VALUES (1321,121,'_sale_price','2');
INSERT INTO `smrc_postmeta` VALUES (1322,121,'_tax_status','');
INSERT INTO `smrc_postmeta` VALUES (1323,121,'_tax_class','');
INSERT INTO `smrc_postmeta` VALUES (1324,121,'_purchase_note','');
INSERT INTO `smrc_postmeta` VALUES (1325,121,'_featured','no');
INSERT INTO `smrc_postmeta` VALUES (1326,121,'_weight','');
INSERT INTO `smrc_postmeta` VALUES (1327,121,'_length','');
INSERT INTO `smrc_postmeta` VALUES (1328,121,'_width','');
INSERT INTO `smrc_postmeta` VALUES (1329,121,'_height','');
INSERT INTO `smrc_postmeta` VALUES (1330,121,'_sku','');
INSERT INTO `smrc_postmeta` VALUES (1331,121,'_product_attributes','a:0:{}');
INSERT INTO `smrc_postmeta` VALUES (1332,121,'_sale_price_dates_from','');
INSERT INTO `smrc_postmeta` VALUES (1333,121,'_sale_price_dates_to','');
INSERT INTO `smrc_postmeta` VALUES (1334,121,'_price','2');
INSERT INTO `smrc_postmeta` VALUES (1335,121,'_sold_individually','');
INSERT INTO `smrc_postmeta` VALUES (1336,121,'_stock','');
INSERT INTO `smrc_postmeta` VALUES (1337,121,'_backorders','no');
INSERT INTO `smrc_postmeta` VALUES (1338,121,'_manage_stock','no');
INSERT INTO `smrc_postmeta` VALUES (1339,121,'boldthemes_theme_override','a:0:{}');
INSERT INTO `smrc_postmeta` VALUES (1340,121,'_upsell_ids','a:0:{}');
INSERT INTO `smrc_postmeta` VALUES (1341,121,'_crosssell_ids','a:0:{}');
INSERT INTO `smrc_postmeta` VALUES (1342,121,'_product_version','5.1.0');
INSERT INTO `smrc_postmeta` VALUES (1343,121,'_thumbnail_id','508');
INSERT INTO `smrc_postmeta` VALUES (1344,121,'_wp_old_slug','woo-single-2');
INSERT INTO `smrc_postmeta` VALUES (1345,535,'_visibility','visible');
INSERT INTO `smrc_postmeta` VALUES (1346,535,'_stock_status','instock');
INSERT INTO `smrc_postmeta` VALUES (1347,535,'_downloadable','no');
INSERT INTO `smrc_postmeta` VALUES (1348,535,'_virtual','no');
INSERT INTO `smrc_postmeta` VALUES (1349,535,'_product_image_gallery','518');
INSERT INTO `smrc_postmeta` VALUES (1350,535,'_regular_price','35');
INSERT INTO `smrc_postmeta` VALUES (1351,535,'_sale_price','');
INSERT INTO `smrc_postmeta` VALUES (1352,535,'_tax_status','');
INSERT INTO `smrc_postmeta` VALUES (1353,535,'_tax_class','');
INSERT INTO `smrc_postmeta` VALUES (1354,535,'_purchase_note','');
INSERT INTO `smrc_postmeta` VALUES (1355,535,'_featured','no');
INSERT INTO `smrc_postmeta` VALUES (1356,535,'_weight','');
INSERT INTO `smrc_postmeta` VALUES (1357,535,'_length','');
INSERT INTO `smrc_postmeta` VALUES (1358,535,'_width','');
INSERT INTO `smrc_postmeta` VALUES (1359,535,'_height','');
INSERT INTO `smrc_postmeta` VALUES (1360,535,'_sku','');
INSERT INTO `smrc_postmeta` VALUES (1361,535,'_product_attributes','a:0:{}');
INSERT INTO `smrc_postmeta` VALUES (1362,535,'_sale_price_dates_from','');
INSERT INTO `smrc_postmeta` VALUES (1363,535,'_sale_price_dates_to','');
INSERT INTO `smrc_postmeta` VALUES (1364,535,'_price','35');
INSERT INTO `smrc_postmeta` VALUES (1365,535,'_sold_individually','');
INSERT INTO `smrc_postmeta` VALUES (1366,535,'_stock','');
INSERT INTO `smrc_postmeta` VALUES (1367,535,'_backorders','no');
INSERT INTO `smrc_postmeta` VALUES (1368,535,'_manage_stock','no');
INSERT INTO `smrc_postmeta` VALUES (1369,535,'_crosssell_ids','a:1:{i:0;i:34;}');
INSERT INTO `smrc_postmeta` VALUES (1370,535,'_wc_rating_count','a:2:{i:4;s:1:\"1\";i:5;s:1:\"1\";}');
INSERT INTO `smrc_postmeta` VALUES (1371,535,'_wc_average_rating','4.50');
INSERT INTO `smrc_postmeta` VALUES (1372,535,'_wc_review_count','2');
INSERT INTO `smrc_postmeta` VALUES (1373,535,'_thumbnail_id','517');
INSERT INTO `smrc_postmeta` VALUES (1374,535,'_wp_old_slug','woo-ninja-2');
INSERT INTO `smrc_postmeta` VALUES (1375,535,'boldthemes_theme_override','a:0:{}');
INSERT INTO `smrc_postmeta` VALUES (1376,535,'_upsell_ids','a:0:{}');
INSERT INTO `smrc_postmeta` VALUES (1377,535,'_product_version','2.5.2');
INSERT INTO `smrc_postmeta` VALUES (1378,535,'total_sales','0');
INSERT INTO `smrc_postmeta` VALUES (1379,109,'_wc_review_count','2');
INSERT INTO `smrc_postmeta` VALUES (1380,109,'_visibility','visible');
INSERT INTO `smrc_postmeta` VALUES (1381,109,'_stock_status','instock');
INSERT INTO `smrc_postmeta` VALUES (1382,109,'total_sales','0');
INSERT INTO `smrc_postmeta` VALUES (1383,109,'_downloadable','no');
INSERT INTO `smrc_postmeta` VALUES (1384,109,'_virtual','no');
INSERT INTO `smrc_postmeta` VALUES (1385,109,'_product_image_gallery','');
INSERT INTO `smrc_postmeta` VALUES (1386,109,'_regular_price','15');
INSERT INTO `smrc_postmeta` VALUES (1387,109,'_sale_price','12');
INSERT INTO `smrc_postmeta` VALUES (1388,109,'_tax_status','');
INSERT INTO `smrc_postmeta` VALUES (1389,109,'_tax_class','');
INSERT INTO `smrc_postmeta` VALUES (1390,109,'_purchase_note','');
INSERT INTO `smrc_postmeta` VALUES (1391,109,'_featured','no');
INSERT INTO `smrc_postmeta` VALUES (1392,109,'_weight','');
INSERT INTO `smrc_postmeta` VALUES (1393,109,'_length','');
INSERT INTO `smrc_postmeta` VALUES (1394,109,'_width','');
INSERT INTO `smrc_postmeta` VALUES (1395,109,'_height','');
INSERT INTO `smrc_postmeta` VALUES (1396,109,'_sku','');
INSERT INTO `smrc_postmeta` VALUES (1397,109,'_product_attributes','a:0:{}');
INSERT INTO `smrc_postmeta` VALUES (1398,109,'_sale_price_dates_from','');
INSERT INTO `smrc_postmeta` VALUES (1399,109,'_sale_price_dates_to','');
INSERT INTO `smrc_postmeta` VALUES (1400,109,'_price','12');
INSERT INTO `smrc_postmeta` VALUES (1401,109,'_sold_individually','');
INSERT INTO `smrc_postmeta` VALUES (1402,109,'_stock','');
INSERT INTO `smrc_postmeta` VALUES (1403,109,'_backorders','no');
INSERT INTO `smrc_postmeta` VALUES (1404,109,'_manage_stock','no');
INSERT INTO `smrc_postmeta` VALUES (1405,109,'_upsell_ids','a:1:{i:0;i:19;}');
INSERT INTO `smrc_postmeta` VALUES (1406,109,'_thumbnail_id','503');
INSERT INTO `smrc_postmeta` VALUES (1407,109,'boldthemes_theme_override','a:0:{}');
INSERT INTO `smrc_postmeta` VALUES (1408,109,'_crosssell_ids','a:0:{}');
INSERT INTO `smrc_postmeta` VALUES (1409,109,'_product_version','5.1.0');
INSERT INTO `smrc_postmeta` VALUES (1410,109,'_wp_old_slug','premium-quality-2');
INSERT INTO `smrc_postmeta` VALUES (1411,109,'_wc_average_rating','2.00');
INSERT INTO `smrc_postmeta` VALUES (1412,109,'_wc_rating_count','a:2:{i:1;i:1;i:3;i:1;}');
INSERT INTO `smrc_postmeta` VALUES (1413,110,'_wc_review_count','1');
INSERT INTO `smrc_postmeta` VALUES (1414,110,'_thumbnail_id','509');
INSERT INTO `smrc_postmeta` VALUES (1415,110,'_visibility','visible');
INSERT INTO `smrc_postmeta` VALUES (1416,110,'_stock_status','instock');
INSERT INTO `smrc_postmeta` VALUES (1417,110,'total_sales','0');
INSERT INTO `smrc_postmeta` VALUES (1418,110,'_downloadable','no');
INSERT INTO `smrc_postmeta` VALUES (1419,110,'_virtual','no');
INSERT INTO `smrc_postmeta` VALUES (1420,110,'_product_image_gallery','');
INSERT INTO `smrc_postmeta` VALUES (1421,110,'_regular_price','10');
INSERT INTO `smrc_postmeta` VALUES (1422,110,'_sale_price','');
INSERT INTO `smrc_postmeta` VALUES (1423,110,'_tax_status','');
INSERT INTO `smrc_postmeta` VALUES (1424,110,'_tax_class','');
INSERT INTO `smrc_postmeta` VALUES (1425,110,'_purchase_note','');
INSERT INTO `smrc_postmeta` VALUES (1426,110,'_featured','no');
INSERT INTO `smrc_postmeta` VALUES (1427,110,'_weight','');
INSERT INTO `smrc_postmeta` VALUES (1428,110,'_length','');
INSERT INTO `smrc_postmeta` VALUES (1429,110,'_width','');
INSERT INTO `smrc_postmeta` VALUES (1430,110,'_height','');
INSERT INTO `smrc_postmeta` VALUES (1431,110,'_sku','');
INSERT INTO `smrc_postmeta` VALUES (1432,110,'_product_attributes','a:0:{}');
INSERT INTO `smrc_postmeta` VALUES (1433,110,'_sale_price_dates_from','');
INSERT INTO `smrc_postmeta` VALUES (1434,110,'_sale_price_dates_to','');
INSERT INTO `smrc_postmeta` VALUES (1435,110,'_price','10');
INSERT INTO `smrc_postmeta` VALUES (1436,110,'_sold_individually','');
INSERT INTO `smrc_postmeta` VALUES (1437,110,'_stock','');
INSERT INTO `smrc_postmeta` VALUES (1438,110,'_backorders','no');
INSERT INTO `smrc_postmeta` VALUES (1439,110,'_manage_stock','no');
INSERT INTO `smrc_postmeta` VALUES (1440,110,'_crosssell_ids','a:2:{i:0;i:34;i:1;i:47;}');
INSERT INTO `smrc_postmeta` VALUES (1441,110,'boldthemes_theme_override','a:0:{}');
INSERT INTO `smrc_postmeta` VALUES (1442,110,'_upsell_ids','a:0:{}');
INSERT INTO `smrc_postmeta` VALUES (1443,110,'_product_version','5.1.0');
INSERT INTO `smrc_postmeta` VALUES (1444,110,'_wp_old_slug','woo-ninja-3');
INSERT INTO `smrc_postmeta` VALUES (1445,110,'_wc_average_rating','4.00');
INSERT INTO `smrc_postmeta` VALUES (1446,110,'_wc_rating_count','a:1:{i:4;s:1:\"1\";}');
INSERT INTO `smrc_postmeta` VALUES (1447,115,'_thumbnail_id','510');
INSERT INTO `smrc_postmeta` VALUES (1448,115,'_visibility','visible');
INSERT INTO `smrc_postmeta` VALUES (1449,115,'_stock_status','instock');
INSERT INTO `smrc_postmeta` VALUES (1450,115,'total_sales','0');
INSERT INTO `smrc_postmeta` VALUES (1451,115,'_downloadable','no');
INSERT INTO `smrc_postmeta` VALUES (1452,115,'_virtual','no');
INSERT INTO `smrc_postmeta` VALUES (1453,115,'_product_image_gallery','');
INSERT INTO `smrc_postmeta` VALUES (1454,115,'_regular_price','15');
INSERT INTO `smrc_postmeta` VALUES (1455,115,'_sale_price','');
INSERT INTO `smrc_postmeta` VALUES (1456,115,'_tax_status','');
INSERT INTO `smrc_postmeta` VALUES (1457,115,'_tax_class','');
INSERT INTO `smrc_postmeta` VALUES (1458,115,'_purchase_note','');
INSERT INTO `smrc_postmeta` VALUES (1459,115,'_featured','no');
INSERT INTO `smrc_postmeta` VALUES (1460,115,'_weight','');
INSERT INTO `smrc_postmeta` VALUES (1461,115,'_length','');
INSERT INTO `smrc_postmeta` VALUES (1462,115,'_width','');
INSERT INTO `smrc_postmeta` VALUES (1463,115,'_height','');
INSERT INTO `smrc_postmeta` VALUES (1464,115,'_sku','');
INSERT INTO `smrc_postmeta` VALUES (1465,115,'_product_attributes','a:0:{}');
INSERT INTO `smrc_postmeta` VALUES (1466,115,'_sale_price_dates_from','');
INSERT INTO `smrc_postmeta` VALUES (1467,115,'_sale_price_dates_to','');
INSERT INTO `smrc_postmeta` VALUES (1468,115,'_price','15');
INSERT INTO `smrc_postmeta` VALUES (1469,115,'_sold_individually','');
INSERT INTO `smrc_postmeta` VALUES (1470,115,'_stock','');
INSERT INTO `smrc_postmeta` VALUES (1471,115,'_backorders','no');
INSERT INTO `smrc_postmeta` VALUES (1472,115,'_manage_stock','no');
INSERT INTO `smrc_postmeta` VALUES (1473,115,'_crosssell_ids','a:2:{i:0;i:15;i:1;i:60;}');
INSERT INTO `smrc_postmeta` VALUES (1474,115,'_wc_rating_count','a:0:{}');
INSERT INTO `smrc_postmeta` VALUES (1475,115,'_wc_average_rating','0');
INSERT INTO `smrc_postmeta` VALUES (1476,115,'_wc_review_count','0');
INSERT INTO `smrc_postmeta` VALUES (1477,115,'boldthemes_theme_override','a:0:{}');
INSERT INTO `smrc_postmeta` VALUES (1478,115,'_upsell_ids','a:0:{}');
INSERT INTO `smrc_postmeta` VALUES (1479,115,'_product_version','2.5.2');
INSERT INTO `smrc_postmeta` VALUES (1480,115,'_wp_old_slug','woo-logo-3');
INSERT INTO `smrc_postmeta` VALUES (1481,116,'_visibility','visible');
INSERT INTO `smrc_postmeta` VALUES (1482,116,'_stock_status','instock');
INSERT INTO `smrc_postmeta` VALUES (1483,116,'total_sales','2');
INSERT INTO `smrc_postmeta` VALUES (1484,116,'_downloadable','yes');
INSERT INTO `smrc_postmeta` VALUES (1485,116,'_virtual','no');
INSERT INTO `smrc_postmeta` VALUES (1486,116,'_product_image_gallery','');
INSERT INTO `smrc_postmeta` VALUES (1487,116,'_regular_price','9');
INSERT INTO `smrc_postmeta` VALUES (1488,116,'_sale_price','');
INSERT INTO `smrc_postmeta` VALUES (1489,116,'_tax_status','');
INSERT INTO `smrc_postmeta` VALUES (1490,116,'_tax_class','');
INSERT INTO `smrc_postmeta` VALUES (1491,116,'_purchase_note','');
INSERT INTO `smrc_postmeta` VALUES (1492,116,'_featured','no');
INSERT INTO `smrc_postmeta` VALUES (1493,116,'_weight','');
INSERT INTO `smrc_postmeta` VALUES (1494,116,'_length','');
INSERT INTO `smrc_postmeta` VALUES (1495,116,'_width','');
INSERT INTO `smrc_postmeta` VALUES (1496,116,'_height','');
INSERT INTO `smrc_postmeta` VALUES (1497,116,'_sku','');
INSERT INTO `smrc_postmeta` VALUES (1498,116,'_product_attributes','a:0:{}');
INSERT INTO `smrc_postmeta` VALUES (1499,116,'_sale_price_dates_from','');
INSERT INTO `smrc_postmeta` VALUES (1500,116,'_sale_price_dates_to','');
INSERT INTO `smrc_postmeta` VALUES (1501,116,'_price','9');
INSERT INTO `smrc_postmeta` VALUES (1502,116,'_sold_individually','');
INSERT INTO `smrc_postmeta` VALUES (1503,116,'_stock','');
INSERT INTO `smrc_postmeta` VALUES (1504,116,'_backorders','no');
INSERT INTO `smrc_postmeta` VALUES (1505,116,'_manage_stock','no');
INSERT INTO `smrc_postmeta` VALUES (1506,116,'_file_paths','a:0:{}');
INSERT INTO `smrc_postmeta` VALUES (1507,116,'_download_limit','');
INSERT INTO `smrc_postmeta` VALUES (1508,116,'_download_expiry','');
INSERT INTO `smrc_postmeta` VALUES (1509,116,'_wc_rating_count','a:0:{}');
INSERT INTO `smrc_postmeta` VALUES (1510,116,'_wc_average_rating','0');
INSERT INTO `smrc_postmeta` VALUES (1511,116,'_wc_review_count','0');
INSERT INTO `smrc_postmeta` VALUES (1512,116,'_thumbnail_id','502');
INSERT INTO `smrc_postmeta` VALUES (1513,116,'boldthemes_theme_override','a:0:{}');
INSERT INTO `smrc_postmeta` VALUES (1514,116,'_upsell_ids','a:0:{}');
INSERT INTO `smrc_postmeta` VALUES (1515,116,'_crosssell_ids','a:0:{}');
INSERT INTO `smrc_postmeta` VALUES (1516,116,'_downloadable_files','a:0:{}');
INSERT INTO `smrc_postmeta` VALUES (1517,116,'_download_type','');
INSERT INTO `smrc_postmeta` VALUES (1518,116,'_product_version','2.5.2');
INSERT INTO `smrc_postmeta` VALUES (1519,116,'_wp_old_slug','woo-album-1');
INSERT INTO `smrc_postmeta` VALUES (1520,96,'_thumbnail_id','529');
INSERT INTO `smrc_postmeta` VALUES (1521,96,'_visibility','visible');
INSERT INTO `smrc_postmeta` VALUES (1522,96,'_stock_status','instock');
INSERT INTO `smrc_postmeta` VALUES (1523,96,'total_sales','0');
INSERT INTO `smrc_postmeta` VALUES (1524,96,'_downloadable','no');
INSERT INTO `smrc_postmeta` VALUES (1525,96,'_virtual','no');
INSERT INTO `smrc_postmeta` VALUES (1526,96,'_product_image_gallery','');
INSERT INTO `smrc_postmeta` VALUES (1527,96,'_regular_price','20');
INSERT INTO `smrc_postmeta` VALUES (1528,96,'_sale_price','');
INSERT INTO `smrc_postmeta` VALUES (1529,96,'_tax_status','');
INSERT INTO `smrc_postmeta` VALUES (1530,96,'_tax_class','');
INSERT INTO `smrc_postmeta` VALUES (1531,96,'_purchase_note','');
INSERT INTO `smrc_postmeta` VALUES (1532,96,'_featured','no');
INSERT INTO `smrc_postmeta` VALUES (1533,96,'_weight','');
INSERT INTO `smrc_postmeta` VALUES (1534,96,'_length','');
INSERT INTO `smrc_postmeta` VALUES (1535,96,'_width','');
INSERT INTO `smrc_postmeta` VALUES (1536,96,'_height','');
INSERT INTO `smrc_postmeta` VALUES (1537,96,'_sku','');
INSERT INTO `smrc_postmeta` VALUES (1538,96,'_product_attributes','a:0:{}');
INSERT INTO `smrc_postmeta` VALUES (1539,96,'_sale_price_dates_from','');
INSERT INTO `smrc_postmeta` VALUES (1540,96,'_sale_price_dates_to','');
INSERT INTO `smrc_postmeta` VALUES (1541,96,'_price','20');
INSERT INTO `smrc_postmeta` VALUES (1542,96,'_sold_individually','');
INSERT INTO `smrc_postmeta` VALUES (1543,96,'_stock','');
INSERT INTO `smrc_postmeta` VALUES (1544,96,'_backorders','no');
INSERT INTO `smrc_postmeta` VALUES (1545,96,'_manage_stock','no');
INSERT INTO `smrc_postmeta` VALUES (1546,96,'boldthemes_theme_override','a:0:{}');
INSERT INTO `smrc_postmeta` VALUES (1547,96,'_upsell_ids','a:0:{}');
INSERT INTO `smrc_postmeta` VALUES (1548,96,'_crosssell_ids','a:0:{}');
INSERT INTO `smrc_postmeta` VALUES (1549,96,'_product_version','5.1.0');
INSERT INTO `smrc_postmeta` VALUES (1550,96,'_wp_old_slug','premium-quality');
INSERT INTO `smrc_postmeta` VALUES (1551,96,'_wc_rating_count','a:2:{i:4;s:1:\"1\";i:5;s:1:\"1\";}');
INSERT INTO `smrc_postmeta` VALUES (1552,96,'_wc_average_rating','4.50');
INSERT INTO `smrc_postmeta` VALUES (1553,96,'_wc_review_count','2');
INSERT INTO `smrc_postmeta` VALUES (1554,295,'bt_theme_grid_gallery','1');
INSERT INTO `smrc_postmeta` VALUES (1555,295,'bt_theme_grid_gallery_format','22,22,21,21');
INSERT INTO `smrc_postmeta` VALUES (1556,295,'bt_theme_tile_format','11');
INSERT INTO `smrc_postmeta` VALUES (1557,295,'bt_theme_custom_fields','a:3:{i:0;s:9:\"Year:2015\";i:1;s:17:\"Location:New York\";i:2;s:13:\"Material:Wood\";}');
INSERT INTO `smrc_postmeta` VALUES (1558,295,'bt_theme_override','a:0:{}');
INSERT INTO `smrc_postmeta` VALUES (1559,295,'_thumbnail_id','462');
INSERT INTO `smrc_postmeta` VALUES (1560,295,'_dp_original','87');
INSERT INTO `smrc_postmeta` VALUES (1561,295,'_wp_old_slug','fusce-suscipit-orci-est-2');
INSERT INTO `smrc_postmeta` VALUES (1562,295,'bt_theme_subheading','Curabitur vulputate, ligula nec dictum tempus, metus urna aliquet nisl, sed consequat nisi nisl sit amet lectus. Integer ac ornare dui.');
INSERT INTO `smrc_postmeta` VALUES (1563,295,'_wp_old_slug','phasellus-non-lorem-quis');
INSERT INTO `smrc_postmeta` VALUES (1564,295,'bt_theme_images','133');
INSERT INTO `smrc_postmeta` VALUES (1565,295,'bt_theme_images','441');
INSERT INTO `smrc_postmeta` VALUES (1566,295,'bt_theme_images','136');
INSERT INTO `smrc_postmeta` VALUES (1567,295,'bt_theme_images','437');
INSERT INTO `smrc_postmeta` VALUES (1568,295,'boldthemes_theme_images','457');
INSERT INTO `smrc_postmeta` VALUES (1569,295,'boldthemes_theme_images','458');
INSERT INTO `smrc_postmeta` VALUES (1570,295,'boldthemes_theme_images','459');
INSERT INTO `smrc_postmeta` VALUES (1571,295,'boldthemes_theme_images','466');
INSERT INTO `smrc_postmeta` VALUES (1572,295,'boldthemes_theme_images','463');
INSERT INTO `smrc_postmeta` VALUES (1573,295,'boldthemes_theme_images','462');
INSERT INTO `smrc_postmeta` VALUES (1574,295,'boldthemes_theme_grid_gallery','1');
INSERT INTO `smrc_postmeta` VALUES (1575,295,'boldthemes_theme_grid_gallery_format','21,11,11,21,21,11,11,21,21,11,11,21');
INSERT INTO `smrc_postmeta` VALUES (1576,295,'boldthemes_theme_custom_fields','a:2:{i:0;s:25:\"Location:Hotel California\";i:1;s:9:\"Year:2016\";}');
INSERT INTO `smrc_postmeta` VALUES (1577,295,'boldthemes_theme_override','a:0:{}');
INSERT INTO `smrc_postmeta` VALUES (1578,295,'_wp_old_slug','capturing-manila');
INSERT INTO `smrc_postmeta` VALUES (1579,296,'bt_theme_grid_gallery','1');
INSERT INTO `smrc_postmeta` VALUES (1580,296,'bt_theme_grid_gallery_format','21,21,21');
INSERT INTO `smrc_postmeta` VALUES (1581,296,'bt_theme_tile_format','11');
INSERT INTO `smrc_postmeta` VALUES (1582,296,'bt_theme_custom_fields','a:3:{i:0;s:9:\"Year:2015\";i:1;s:17:\"Location:New York\";i:2;s:13:\"Material:Wood\";}');
INSERT INTO `smrc_postmeta` VALUES (1583,296,'bt_theme_override','a:0:{}');
INSERT INTO `smrc_postmeta` VALUES (1584,296,'_thumbnail_id','486');
INSERT INTO `smrc_postmeta` VALUES (1585,296,'_dp_original','87');
INSERT INTO `smrc_postmeta` VALUES (1586,296,'_wp_old_slug','fusce-suscipit-orci-est-3');
INSERT INTO `smrc_postmeta` VALUES (1587,296,'bt_theme_images','437');
INSERT INTO `smrc_postmeta` VALUES (1588,296,'bt_theme_images','133');
INSERT INTO `smrc_postmeta` VALUES (1589,296,'bt_theme_images','441');
INSERT INTO `smrc_postmeta` VALUES (1590,296,'bt_theme_subheading','Mauris dignissim efficitur magna nec pellentesque');
INSERT INTO `smrc_postmeta` VALUES (1591,296,'boldthemes_theme_images','488');
INSERT INTO `smrc_postmeta` VALUES (1592,296,'boldthemes_theme_images','487');
INSERT INTO `smrc_postmeta` VALUES (1593,296,'boldthemes_theme_images','486');
INSERT INTO `smrc_postmeta` VALUES (1594,296,'boldthemes_theme_images','485');
INSERT INTO `smrc_postmeta` VALUES (1595,296,'boldthemes_theme_images','484');
INSERT INTO `smrc_postmeta` VALUES (1596,296,'boldthemes_theme_images','483');
INSERT INTO `smrc_postmeta` VALUES (1597,296,'boldthemes_theme_grid_gallery','1');
INSERT INTO `smrc_postmeta` VALUES (1598,296,'boldthemes_theme_grid_gallery_format','21,11,11,21,21,11,11,21,21,11,11,21');
INSERT INTO `smrc_postmeta` VALUES (1599,296,'boldthemes_theme_custom_fields','a:3:{i:0;s:25:\"Location:Hotel California\";i:1;s:9:\"Year:2016\";i:2;s:15:\"Room:Maisonette\";}');
INSERT INTO `smrc_postmeta` VALUES (1600,296,'boldthemes_theme_override','a:0:{}');
INSERT INTO `smrc_postmeta` VALUES (1601,296,'_wp_old_slug','bejing-style');
INSERT INTO `smrc_postmeta` VALUES (1602,154,'bt_theme_grid_gallery','1');
INSERT INTO `smrc_postmeta` VALUES (1603,154,'bt_theme_grid_gallery_format','22,22,21,11,11,11,21,21,11');
INSERT INTO `smrc_postmeta` VALUES (1604,154,'bt_theme_tile_format','11');
INSERT INTO `smrc_postmeta` VALUES (1605,154,'bt_theme_custom_fields','a:3:{i:0;s:9:\"Year:2015\";i:1;s:17:\"Location:New York\";i:2;s:13:\"Material:Wood\";}');
INSERT INTO `smrc_postmeta` VALUES (1606,154,'bt_theme_override','a:0:{}');
INSERT INTO `smrc_postmeta` VALUES (1607,154,'_thumbnail_id','591');
INSERT INTO `smrc_postmeta` VALUES (1608,154,'bt_theme_subheading','Curabitur vulputate, ligula nec dictum tempus, metus urna aliquet nisl, sed consequat nisi nisl sit amet lectus.');
INSERT INTO `smrc_postmeta` VALUES (1609,154,'_dp_original','153');
INSERT INTO `smrc_postmeta` VALUES (1610,154,'_wp_old_slug','ligula-nec-dictum');
INSERT INTO `smrc_postmeta` VALUES (1611,154,'_wp_old_slug','grid-gallery');
INSERT INTO `smrc_postmeta` VALUES (1612,154,'bt_theme_images','438');
INSERT INTO `smrc_postmeta` VALUES (1613,154,'bt_theme_images','132');
INSERT INTO `smrc_postmeta` VALUES (1614,154,'bt_theme_images','440');
INSERT INTO `smrc_postmeta` VALUES (1615,154,'bt_theme_images','135');
INSERT INTO `smrc_postmeta` VALUES (1616,154,'bt_theme_images','441');
INSERT INTO `smrc_postmeta` VALUES (1617,154,'bt_theme_images','439');
INSERT INTO `smrc_postmeta` VALUES (1618,154,'bt_theme_images','444');
INSERT INTO `smrc_postmeta` VALUES (1619,154,'bt_theme_images','134');
INSERT INTO `smrc_postmeta` VALUES (1620,154,'bt_theme_images','445');
INSERT INTO `smrc_postmeta` VALUES (1621,154,'boldthemes_theme_images','591');
INSERT INTO `smrc_postmeta` VALUES (1622,154,'boldthemes_theme_images','606');
INSERT INTO `smrc_postmeta` VALUES (1623,154,'boldthemes_theme_images','595');
INSERT INTO `smrc_postmeta` VALUES (1624,154,'boldthemes_theme_images','610');
INSERT INTO `smrc_postmeta` VALUES (1625,154,'boldthemes_theme_images','611');
INSERT INTO `smrc_postmeta` VALUES (1626,154,'boldthemes_theme_grid_gallery','1');
INSERT INTO `smrc_postmeta` VALUES (1627,154,'boldthemes_theme_grid_gallery_format','21,11,11,21,21,11,11,21,21,11,11,21');
INSERT INTO `smrc_postmeta` VALUES (1628,154,'boldthemes_theme_custom_fields','a:3:{i:0;s:28:\"Location:San Diego mountains\";i:1;s:9:\"Year:2016\";i:2;s:13:\"Season:Summer\";}');
INSERT INTO `smrc_postmeta` VALUES (1629,154,'boldthemes_theme_override','a:0:{}');
INSERT INTO `smrc_postmeta` VALUES (1630,154,'_wp_old_slug','paris-example');
INSERT INTO `smrc_postmeta` VALUES (1631,154,'boldthemes_theme_images','612');
INSERT INTO `smrc_postmeta` VALUES (1632,153,'bt_theme_grid_gallery','1');
INSERT INTO `smrc_postmeta` VALUES (1633,153,'bt_theme_grid_gallery_format','22,22,22,22,22,22');
INSERT INTO `smrc_postmeta` VALUES (1634,153,'bt_theme_tile_format','11');
INSERT INTO `smrc_postmeta` VALUES (1635,153,'bt_theme_custom_fields','a:3:{i:0;s:9:\"Year:2015\";i:1;s:17:\"Location:New York\";i:2;s:13:\"Material:Wood\";}');
INSERT INTO `smrc_postmeta` VALUES (1636,153,'bt_theme_override','a:1:{i:0;s:34:\"bt_theme_pf_grid_gallery_columns:6\";}');
INSERT INTO `smrc_postmeta` VALUES (1637,153,'_thumbnail_id','588');
INSERT INTO `smrc_postmeta` VALUES (1638,153,'bt_theme_subheading','Curabitur vulputate, ligula nec dictum tempus, metus urna aliquet nisl, sed consequat nisi nisl sit amet lectus.');
INSERT INTO `smrc_postmeta` VALUES (1639,153,'_dp_original','152');
INSERT INTO `smrc_postmeta` VALUES (1640,153,'_wp_old_slug','praesent-feugiat-nibh-sed-magna-ullamcorper');
INSERT INTO `smrc_postmeta` VALUES (1641,153,'_wp_old_slug','six-column-grid-gallery');
INSERT INTO `smrc_postmeta` VALUES (1642,153,'bt_theme_images','132');
INSERT INTO `smrc_postmeta` VALUES (1643,153,'bt_theme_images','443');
INSERT INTO `smrc_postmeta` VALUES (1644,153,'bt_theme_images','441');
INSERT INTO `smrc_postmeta` VALUES (1645,153,'bt_theme_images','133');
INSERT INTO `smrc_postmeta` VALUES (1646,153,'bt_theme_images','439');
INSERT INTO `smrc_postmeta` VALUES (1647,153,'bt_theme_images','445');
INSERT INTO `smrc_postmeta` VALUES (1648,153,'boldthemes_theme_images','595');
INSERT INTO `smrc_postmeta` VALUES (1649,153,'boldthemes_theme_images','488');
INSERT INTO `smrc_postmeta` VALUES (1650,153,'boldthemes_theme_images','487');
INSERT INTO `smrc_postmeta` VALUES (1651,153,'boldthemes_theme_images','495');
INSERT INTO `smrc_postmeta` VALUES (1652,153,'boldthemes_theme_images','587');
INSERT INTO `smrc_postmeta` VALUES (1653,153,'boldthemes_theme_images','588');
INSERT INTO `smrc_postmeta` VALUES (1654,153,'boldthemes_theme_grid_gallery','1');
INSERT INTO `smrc_postmeta` VALUES (1655,153,'boldthemes_theme_grid_gallery_format','21,11,11,21,21,11,11,21,21,11,11,21');
INSERT INTO `smrc_postmeta` VALUES (1656,153,'boldthemes_theme_custom_fields','a:2:{i:0;s:25:\"Location:Hotel California\";i:1;s:9:\"Year:2016\";}');
INSERT INTO `smrc_postmeta` VALUES (1657,153,'boldthemes_theme_override','a:0:{}');
INSERT INTO `smrc_postmeta` VALUES (1658,153,'_wp_old_slug','prague-gallery');
INSERT INTO `smrc_postmeta` VALUES (1659,152,'bt_theme_grid_gallery','0');
INSERT INTO `smrc_postmeta` VALUES (1660,152,'bt_theme_grid_gallery_format','11,21,11,21');
INSERT INTO `smrc_postmeta` VALUES (1661,152,'bt_theme_tile_format','11');
INSERT INTO `smrc_postmeta` VALUES (1662,152,'bt_theme_custom_fields','a:3:{i:0;s:9:\"Year:2015\";i:1;s:17:\"Location:New York\";i:2;s:13:\"Material:Wood\";}');
INSERT INTO `smrc_postmeta` VALUES (1663,152,'bt_theme_override','a:1:{i:0;s:26:\"bt_theme_pf_ghost_slider:1\";}');
INSERT INTO `smrc_postmeta` VALUES (1664,152,'_thumbnail_id','464');
INSERT INTO `smrc_postmeta` VALUES (1665,152,'bt_theme_subheading','Curabitur vulputate, ligula nec dictum tempus, metus urna aliquet nisl, sed consequat nisi nisl sit amet lectus.');
INSERT INTO `smrc_postmeta` VALUES (1666,152,'_dp_original','151');
INSERT INTO `smrc_postmeta` VALUES (1667,152,'bt_theme_video','https://www.youtube.com/watch?v=YzKhwCPA4M4');
INSERT INTO `smrc_postmeta` VALUES (1668,152,'_wp_old_slug','maecenas-libero-dui-venenatis-ut-lorem-quis');
INSERT INTO `smrc_postmeta` VALUES (1669,152,'_wp_old_slug','video-reel');
INSERT INTO `smrc_postmeta` VALUES (1670,152,'boldthemes_theme_description','21,11,11,21,21,11,11,21,21,11,11,21');
INSERT INTO `smrc_postmeta` VALUES (1671,152,'boldthemes_theme_images','464');
INSERT INTO `smrc_postmeta` VALUES (1672,152,'boldthemes_theme_images','466');
INSERT INTO `smrc_postmeta` VALUES (1673,152,'boldthemes_theme_images','465');
INSERT INTO `smrc_postmeta` VALUES (1674,152,'boldthemes_theme_images','463');
INSERT INTO `smrc_postmeta` VALUES (1675,152,'boldthemes_theme_images','462');
INSERT INTO `smrc_postmeta` VALUES (1676,152,'boldthemes_theme_images','461');
INSERT INTO `smrc_postmeta` VALUES (1677,152,'boldthemes_theme_grid_gallery','1');
INSERT INTO `smrc_postmeta` VALUES (1678,152,'boldthemes_theme_custom_fields','a:2:{i:0;s:25:\"Location:Hotel California\";i:1;s:9:\"Year:2016\";}');
INSERT INTO `smrc_postmeta` VALUES (1679,152,'boldthemes_theme_override','a:0:{}');
INSERT INTO `smrc_postmeta` VALUES (1680,152,'_wp_old_slug','munich-video-showcase');
INSERT INTO `smrc_postmeta` VALUES (1681,151,'bt_theme_grid_gallery','1');
INSERT INTO `smrc_postmeta` VALUES (1682,151,'bt_theme_grid_gallery_format','22,22,11,11,21,21,21,21');
INSERT INTO `smrc_postmeta` VALUES (1683,151,'bt_theme_tile_format','11');
INSERT INTO `smrc_postmeta` VALUES (1684,151,'bt_theme_custom_fields','a:3:{i:0;s:9:\"Year:2015\";i:1;s:17:\"Location:New York\";i:2;s:13:\"Material:Wood\";}');
INSERT INTO `smrc_postmeta` VALUES (1685,151,'bt_theme_override','a:0:{}');
INSERT INTO `smrc_postmeta` VALUES (1686,151,'_thumbnail_id','495');
INSERT INTO `smrc_postmeta` VALUES (1687,151,'bt_theme_subheading','Curabitur vulputate, ligula nec dictum tempus, metus urna aliquet nisl, sed consequat nisi nisl sit amet lectus.');
INSERT INTO `smrc_postmeta` VALUES (1688,151,'_dp_original','87');
INSERT INTO `smrc_postmeta` VALUES (1689,151,'_wp_old_slug','class-aptent-taciti-sociosqu');
INSERT INTO `smrc_postmeta` VALUES (1690,151,'bt_theme_images','136');
INSERT INTO `smrc_postmeta` VALUES (1691,151,'bt_theme_images','440');
INSERT INTO `smrc_postmeta` VALUES (1692,151,'bt_theme_images','135');
INSERT INTO `smrc_postmeta` VALUES (1693,151,'bt_theme_images','439');
INSERT INTO `smrc_postmeta` VALUES (1694,151,'bt_theme_images','132');
INSERT INTO `smrc_postmeta` VALUES (1695,151,'bt_theme_images','133');
INSERT INTO `smrc_postmeta` VALUES (1696,151,'bt_theme_images','441');
INSERT INTO `smrc_postmeta` VALUES (1697,151,'bt_theme_images','437');
INSERT INTO `smrc_postmeta` VALUES (1698,151,'boldthemes_theme_grid_gallery','1');
INSERT INTO `smrc_postmeta` VALUES (1699,151,'boldthemes_theme_grid_gallery_format','21,11,11,21,21,11,11,21,21,11,11,21');
INSERT INTO `smrc_postmeta` VALUES (1700,151,'boldthemes_theme_video','https://www.youtube.com/watch?v=53jfOvtV9DI');
INSERT INTO `smrc_postmeta` VALUES (1701,151,'boldthemes_theme_custom_fields','a:2:{i:0;s:25:\"Location:Hotel California\";i:1;s:9:\"Year:2016\";}');
INSERT INTO `smrc_postmeta` VALUES (1702,151,'boldthemes_theme_override','a:0:{}');
INSERT INTO `smrc_postmeta` VALUES (1703,151,'_wp_old_slug','moscow-life');
INSERT INTO `smrc_postmeta` VALUES (1704,155,'boldthemes_theme_images','584');
INSERT INTO `smrc_postmeta` VALUES (1705,155,'bt_theme_grid_gallery','1');
INSERT INTO `smrc_postmeta` VALUES (1706,155,'bt_theme_grid_gallery_format','11,21,21,11,11,21');
INSERT INTO `smrc_postmeta` VALUES (1707,155,'bt_theme_tile_format','11');
INSERT INTO `smrc_postmeta` VALUES (1708,155,'bt_theme_custom_fields','a:3:{i:0;s:9:\"Year:2015\";i:1;s:17:\"Location:New York\";i:2;s:13:\"Material:Wood\";}');
INSERT INTO `smrc_postmeta` VALUES (1709,155,'bt_theme_override','a:1:{i:0;s:29:\"bt_theme_pf_ghost_slider:true\";}');
INSERT INTO `smrc_postmeta` VALUES (1710,155,'_thumbnail_id','589');
INSERT INTO `smrc_postmeta` VALUES (1711,155,'bt_theme_subheading','Curabitur vulputate, ligula nec dictum tempus, metus urna aliquet nisl, sed consequat nisi nisl sit amet lectus.');
INSERT INTO `smrc_postmeta` VALUES (1712,155,'_dp_original','154');
INSERT INTO `smrc_postmeta` VALUES (1713,155,'_wp_old_slug','hendrerit-aliquam-odio');
INSERT INTO `smrc_postmeta` VALUES (1714,155,'_wp_old_slug','uis-vulputate-erat-at-hendrerit-tristique');
INSERT INTO `smrc_postmeta` VALUES (1715,155,'_wp_old_slug','full-screen-overlay');
INSERT INTO `smrc_postmeta` VALUES (1716,155,'bt_theme_images','132');
INSERT INTO `smrc_postmeta` VALUES (1717,155,'bt_theme_images','135');
INSERT INTO `smrc_postmeta` VALUES (1718,155,'bt_theme_images','443');
INSERT INTO `smrc_postmeta` VALUES (1719,155,'bt_theme_images','136');
INSERT INTO `smrc_postmeta` VALUES (1720,155,'bt_theme_images','133');
INSERT INTO `smrc_postmeta` VALUES (1721,155,'bt_theme_images','439');
INSERT INTO `smrc_postmeta` VALUES (1722,155,'boldthemes_theme_images','585');
INSERT INTO `smrc_postmeta` VALUES (1723,155,'boldthemes_theme_images','586');
INSERT INTO `smrc_postmeta` VALUES (1724,155,'boldthemes_theme_images','587');
INSERT INTO `smrc_postmeta` VALUES (1725,155,'boldthemes_theme_grid_gallery','1');
INSERT INTO `smrc_postmeta` VALUES (1726,155,'boldthemes_theme_grid_gallery_format','21,11,11,21,21,11,11,21,21,11,11,21');
INSERT INTO `smrc_postmeta` VALUES (1727,155,'boldthemes_theme_custom_fields','a:2:{i:0;s:18:\"Location:San Diego\";i:1;s:9:\"Year:2016\";}');
INSERT INTO `smrc_postmeta` VALUES (1728,155,'boldthemes_theme_override','a:0:{}');
INSERT INTO `smrc_postmeta` VALUES (1729,155,'boldthemes_theme_images','588');
INSERT INTO `smrc_postmeta` VALUES (1730,155,'boldthemes_theme_images','589');
INSERT INTO `smrc_postmeta` VALUES (1731,155,'_wp_old_slug','capetown-showcase');
INSERT INTO `smrc_postmeta` VALUES (1732,293,'bt_theme_grid_gallery','1');
INSERT INTO `smrc_postmeta` VALUES (1733,293,'bt_theme_tile_format','11');
INSERT INTO `smrc_postmeta` VALUES (1734,293,'bt_theme_custom_fields','a:3:{i:0;s:9:\"Year:2015\";i:1;s:17:\"Location:New York\";i:2;s:13:\"Material:Wood\";}');
INSERT INTO `smrc_postmeta` VALUES (1735,293,'bt_theme_override','a:0:{}');
INSERT INTO `smrc_postmeta` VALUES (1736,293,'_thumbnail_id','465');
INSERT INTO `smrc_postmeta` VALUES (1737,293,'bt_theme_subheading','Curabitur vulputate, ligula nec dictum tempus, metus urna aliquet nisl, sed consequat nisi nisl sit amet lectus.');
INSERT INTO `smrc_postmeta` VALUES (1738,293,'_wp_old_slug','fusce-suscipit-orci-est');
INSERT INTO `smrc_postmeta` VALUES (1739,293,'_wp_old_slug','stockholm-spapshots');
INSERT INTO `smrc_postmeta` VALUES (1740,293,'bt_theme_images','135');
INSERT INTO `smrc_postmeta` VALUES (1741,293,'bt_theme_images','443');
INSERT INTO `smrc_postmeta` VALUES (1742,293,'bt_theme_images','136');
INSERT INTO `smrc_postmeta` VALUES (1743,293,'bt_theme_images','133');
INSERT INTO `smrc_postmeta` VALUES (1744,293,'bt_theme_images','132');
INSERT INTO `smrc_postmeta` VALUES (1745,293,'bt_theme_images','447');
INSERT INTO `smrc_postmeta` VALUES (1746,293,'bt_theme_images','445');
INSERT INTO `smrc_postmeta` VALUES (1747,293,'bt_theme_images','444');
INSERT INTO `smrc_postmeta` VALUES (1748,293,'bt_theme_images','442');
INSERT INTO `smrc_postmeta` VALUES (1749,293,'bt_theme_images','441');
INSERT INTO `smrc_postmeta` VALUES (1750,293,'bt_theme_images','440');
INSERT INTO `smrc_postmeta` VALUES (1751,293,'bt_theme_images','439');
INSERT INTO `smrc_postmeta` VALUES (1752,293,'boldthemes_theme_images','467');
INSERT INTO `smrc_postmeta` VALUES (1753,293,'boldthemes_theme_images','470');
INSERT INTO `smrc_postmeta` VALUES (1754,293,'boldthemes_theme_images','469');
INSERT INTO `smrc_postmeta` VALUES (1755,293,'boldthemes_theme_images','472');
INSERT INTO `smrc_postmeta` VALUES (1756,293,'boldthemes_theme_images','474');
INSERT INTO `smrc_postmeta` VALUES (1757,293,'boldthemes_theme_images','465');
INSERT INTO `smrc_postmeta` VALUES (1758,293,'boldthemes_theme_grid_gallery','1');
INSERT INTO `smrc_postmeta` VALUES (1759,293,'boldthemes_theme_grid_gallery_format','21,11,11,21,21,11,11,21,21,11,11,21');
INSERT INTO `smrc_postmeta` VALUES (1760,293,'boldthemes_theme_custom_fields','a:3:{i:0;s:18:\"Location:San Diego\";i:1;s:9:\"Year:2016\";i:2;s:19:\"Author:Mike Shivers\";}');
INSERT INTO `smrc_postmeta` VALUES (1761,293,'boldthemes_theme_override','a:0:{}');
INSERT INTO `smrc_postmeta` VALUES (1762,294,'bt_theme_grid_gallery','0');
INSERT INTO `smrc_postmeta` VALUES (1763,294,'bt_theme_tile_format','11');
INSERT INTO `smrc_postmeta` VALUES (1764,294,'bt_theme_custom_fields','a:3:{i:0;s:9:\"Year:2015\";i:1;s:17:\"Location:New York\";i:2;s:13:\"Material:Wood\";}');
INSERT INTO `smrc_postmeta` VALUES (1765,294,'bt_theme_override','a:0:{}');
INSERT INTO `smrc_postmeta` VALUES (1766,294,'_thumbnail_id','461');
INSERT INTO `smrc_postmeta` VALUES (1767,294,'_dp_original','87');
INSERT INTO `smrc_postmeta` VALUES (1768,294,'bt_theme_subheading','Maecenas libero dui, venenatis ut lorem quis, hendrerit aliquam odio. Cras sit amet faucibus erat.');
INSERT INTO `smrc_postmeta` VALUES (1769,294,'_wp_old_slug','fusce-suscipit-orci-est-4');
INSERT INTO `smrc_postmeta` VALUES (1770,294,'bt_theme_audio','<iframe width=\"100%\" height=\"450\" scrolling=\"no\" frameborder=\"no\" src=\"https://w.soundcloud.com/player/?url=https%3A//api.soundcloud.com/tracks/160122133&auto_play=false&hide_related=false&show_comments=true&show_user=true&show_reposts=false&visual=true\"></iframe>');
INSERT INTO `smrc_postmeta` VALUES (1771,294,'boldthemes_theme_grid_gallery','1');
INSERT INTO `smrc_postmeta` VALUES (1772,294,'boldthemes_theme_grid_gallery_format','21,11,11,21,21,11,11,21,21,11,11,21');
INSERT INTO `smrc_postmeta` VALUES (1773,294,'boldthemes_theme_audio','<iframe width=\"100%\" height=\"450\" scrolling=\"no\" frameborder=\"no\" src=\"https://w.soundcloud.com/player/?url=https%3A//api.soundcloud.com/tracks/91562763&auto_play=false&hide_related=false&show_comments=true&show_user=true&show_reposts=false&visual=true\"></iframe>');
INSERT INTO `smrc_postmeta` VALUES (1774,294,'boldthemes_theme_custom_fields','a:3:{i:0;s:18:\"Location:San Diego\";i:1;s:9:\"Year:2016\";i:2;s:15:\"Concert:Kaskade\";}');
INSERT INTO `smrc_postmeta` VALUES (1775,294,'boldthemes_theme_override','a:0:{}');
INSERT INTO `smrc_postmeta` VALUES (1776,156,'bt_theme_grid_gallery','0');
INSERT INTO `smrc_postmeta` VALUES (1777,156,'bt_theme_grid_gallery_format','11,21,11,21');
INSERT INTO `smrc_postmeta` VALUES (1778,156,'bt_theme_tile_format','11');
INSERT INTO `smrc_postmeta` VALUES (1779,156,'bt_theme_custom_fields','a:3:{i:0;s:9:\"Year:2015\";i:1;s:17:\"Location:New York\";i:2;s:13:\"Material:Wood\";}');
INSERT INTO `smrc_postmeta` VALUES (1780,156,'bt_theme_override','a:0:{}');
INSERT INTO `smrc_postmeta` VALUES (1781,156,'bt_theme_subheading','Curabitur vulputate, ligula nec dictum tempus, metus urna aliquet nisl, sed consequat nisi nisl sit amet lectus.');
INSERT INTO `smrc_postmeta` VALUES (1782,156,'_dp_original','155');
INSERT INTO `smrc_postmeta` VALUES (1783,156,'_wp_old_slug','vel-viverra');
INSERT INTO `smrc_postmeta` VALUES (1784,156,'_thumbnail_id','586');
INSERT INTO `smrc_postmeta` VALUES (1785,156,'bt_theme_images','443');
INSERT INTO `smrc_postmeta` VALUES (1786,156,'bt_theme_images','442');
INSERT INTO `smrc_postmeta` VALUES (1787,156,'bt_theme_images','444');
INSERT INTO `smrc_postmeta` VALUES (1788,156,'bt_theme_images','441');
INSERT INTO `smrc_postmeta` VALUES (1789,156,'_wp_old_slug','carousel-gallery');
INSERT INTO `smrc_postmeta` VALUES (1790,156,'boldthemes_theme_grid_gallery','1');
INSERT INTO `smrc_postmeta` VALUES (1791,156,'boldthemes_theme_custom_fields','a:3:{i:0;s:25:\"Location:Hotel California\";i:1;s:9:\"Year:2016\";i:2;s:18:\"Camera:Nikon 23/KL\";}');
INSERT INTO `smrc_postmeta` VALUES (1792,156,'boldthemes_theme_override','a:0:{}');
INSERT INTO `smrc_postmeta` VALUES (1793,156,'boldthemes_theme_grid_gallery_format','21,11,11,21,21,11,21');
INSERT INTO `smrc_postmeta` VALUES (1794,156,'boldthemes_theme_subheading','Phasellus non lorem quis erat scelerisque efficitur.');
INSERT INTO `smrc_postmeta` VALUES (1795,156,'boldthemes_theme_images','478');
INSERT INTO `smrc_postmeta` VALUES (1796,156,'boldthemes_theme_images','477');
INSERT INTO `smrc_postmeta` VALUES (1797,156,'boldthemes_theme_images','474');
INSERT INTO `smrc_postmeta` VALUES (1798,156,'boldthemes_theme_images','473');
INSERT INTO `smrc_postmeta` VALUES (1799,156,'boldthemes_theme_images','476');
INSERT INTO `smrc_postmeta` VALUES (1800,156,'boldthemes_theme_images','472');
INSERT INTO `smrc_postmeta` VALUES (1801,156,'_wp_old_slug','day-in-london');
INSERT INTO `smrc_postmeta` VALUES (1802,369,'_sidebar_to_replace','primary_widget_area');
INSERT INTO `smrc_postmeta` VALUES (1803,369,'_condition','wc-product_category');
INSERT INTO `smrc_postmeta` VALUES (1804,369,'_condition','wc-shop_page');
INSERT INTO `smrc_postmeta` VALUES (1805,369,'_condition','archive-product_tag');
INSERT INTO `smrc_postmeta` VALUES (1806,369,'_condition','archive-product_cat');
INSERT INTO `smrc_postmeta` VALUES (1807,369,'_condition','post-type-product');
INSERT INTO `smrc_postmeta` VALUES (1808,369,'_condition','post-19');
INSERT INTO `smrc_postmeta` VALUES (1809,369,'_condition','wc-product_tag');
INSERT INTO `smrc_postmeta` VALUES (1810,369,'_condition','wc-product');
INSERT INTO `smrc_postmeta` VALUES (1811,878,'_condition','post-899');
INSERT INTO `smrc_postmeta` VALUES (1812,878,'_sidebar_to_replace','header_right_widgets');
INSERT INTO `smrc_postmeta` VALUES (1813,878,'_condition','post-921');
INSERT INTO `smrc_postmeta` VALUES (1814,878,'_condition','post-860');
INSERT INTO `smrc_postmeta` VALUES (1815,878,'_condition','post-906');
INSERT INTO `smrc_postmeta` VALUES (1816,397,'_form','<div class=\"boldRow btBookingRow\" style=\"z-index: 10;\">\n<div class=\"rowItem col-xs-12 col-sm-6 col-lg-2\">\n[date* ArrivalDate min:today max:today+60days id:bookingArrivalDate placeholder \"Arrival\"]\n</div>\n<div class=\"btClear btSeparator topSmallSpaced noBorder visible-xs visible-ms\"><hr></div>\n<div class=\"rowItem col-xs-12 col-sm-6 col-lg-2\">\n[date* DepartureDate min:today+1day max:today+61days id:bookingDepartureDate placeholder \"Departure\"]\n</div>\n<div class=\"btClear btSeparator topSmallSpaced noBorder visible-xs visible-ms visible-sm visible-md\"><hr></div>\n<div class=\"rowItem col-xs-12 col-sm-6 col-lg-2\">\n[select* Room placeholder \"Choose a Room\" \"Standard Double Room\" \"Standard Family Room\" \"Garden Family Room\" \"Deluxe Double Room\" \"Executive Junior Suite\" \"Executive Deluxe Suite\" \"Executive Double Suite\" \"Maisonette\"]\n</div>\n<div class=\"btClear btSeparator topSmallSpaced noBorder visible-xs visible-ms\"><hr></div>\n<div class=\"rowItem col-xs-12 col-sm-6 col-lg-2\">\n[select* Adults placeholder \"How many Adults\" \"1\" \"2\" \"3\" \"4\" \"5\" \"6\" \"7\" \"8\" \"9\" \"10\"]\n</div>\n<div class=\"btClear btSeparator topSmallSpaced noBorder visible-xs visible-ms visible-sm visible-md\"><hr></div>\n<div class=\"rowItem col-xs-12 col-sm-6 col-lg-2\">\n[select Children placeholder \"How many Children\" \"1\" \"2\" \"3\" \"4\" \"5\" \"6\" \"7\" \"8\" \"9\" \"10\"]\n</div>\n<div class=\"btClear btSeparator topSmallSpaced noBorder visible-xs visible-ms\"><hr></div>\n<div class=\"rowItem col-xs-12 col-sm-6 col-lg-2\">\n<div class=\"btBookingNext\">BOOK NOW</div>\n</div>\n</div>\n\n<div class=\"boldRow btBookingRow\">\n<div class=\"rowItem col-xs-12 col-sm-4 col-lg-5\">\n[text* Name placeholder \"Your Name\"]\n</div>\n<div class=\"btClear btSeparator topSmallSpaced noBorder visible-xs visible-ms\"><hr></div>\n<div class=\"rowItem col-xs-12 col-sm-4 col-lg-5\">\n[email* Email placeholder \"Your Email\"]\n</div>\n<div class=\"btClear btSeparator topSmallSpaced noBorder visible-xs visible-ms\"><hr></div>\n<div class=\"rowItem col-xs-12 col-sm-4 col-lg-2\">\n[submit \"SEND\"]\n</div>\n</div>');
INSERT INTO `smrc_postmeta` VALUES (1817,397,'_mail','a:8:{s:7:\"subject\";s:21:\"Hotel California form\";s:6:\"sender\";s:40:\"[name] <wordpress@hotel.bold-themes.com>\";s:4:\"body\";s:238:\"Name: [Name]\nEmail: [Email]\n\nArrival date: [ArrivalDate]\nDeparture: [DepartureDate]\nRoom: [Room]\nAdults: [Adults]\nChildren: [Children]\n\n\n--\nThis e-mail was sent from a contact form on Hotel California (http://hotel.bold-themes.com/summer)\";s:9:\"recipient\";s:20:\"info@bold-themes.com\";s:18:\"additional_headers\";s:17:\"Reply-To: [Email]\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}');
INSERT INTO `smrc_postmeta` VALUES (1818,397,'_mail_2','a:9:{s:6:\"active\";b:0;s:7:\"subject\";s:33:\"Hotel California \"[your-subject]\"\";s:6:\"sender\";s:50:\"Hotel California <wordpress@hotel.omnicom-dev.com>\";s:4:\"body\";s:131:\"Message Body:\n[your-message]\n\n--\nThis e-mail was sent from a contact form on Hotel California (http://hotel.omnicom-dev.com/summer)\";s:9:\"recipient\";s:12:\"[your-email]\";s:18:\"additional_headers\";s:30:\"Reply-To: info@bold-themes.com\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}');
INSERT INTO `smrc_postmeta` VALUES (1819,397,'_messages','a:23:{s:12:\"mail_sent_ok\";s:45:\"Thank you for your message. It has been sent.\";s:12:\"mail_sent_ng\";s:71:\"There was an error trying to send your message. Please try again later.\";s:16:\"validation_error\";s:61:\"One or more fields have an error. Please check and try again.\";s:4:\"spam\";s:71:\"There was an error trying to send your message. Please try again later.\";s:12:\"accept_terms\";s:69:\"You must accept the terms and conditions before sending your message.\";s:16:\"invalid_required\";s:22:\"The field is required.\";s:16:\"invalid_too_long\";s:22:\"The field is too long.\";s:17:\"invalid_too_short\";s:23:\"The field is too short.\";s:12:\"invalid_date\";s:29:\"The date format is incorrect.\";s:14:\"date_too_early\";s:44:\"The date is before the earliest one allowed.\";s:13:\"date_too_late\";s:41:\"The date is after the latest one allowed.\";s:13:\"upload_failed\";s:46:\"There was an unknown error uploading the file.\";s:24:\"upload_file_type_invalid\";s:49:\"You are not allowed to upload files of this type.\";s:21:\"upload_file_too_large\";s:20:\"The file is too big.\";s:23:\"upload_failed_php_error\";s:38:\"There was an error uploading the file.\";s:14:\"invalid_number\";s:29:\"The number format is invalid.\";s:16:\"number_too_small\";s:47:\"The number is smaller than the minimum allowed.\";s:16:\"number_too_large\";s:46:\"The number is larger than the maximum allowed.\";s:23:\"quiz_answer_not_correct\";s:36:\"The answer to the quiz is incorrect.\";s:17:\"captcha_not_match\";s:31:\"Your entered code is incorrect.\";s:13:\"invalid_email\";s:38:\"The e-mail address entered is invalid.\";s:11:\"invalid_url\";s:19:\"The URL is invalid.\";s:11:\"invalid_tel\";s:32:\"The telephone number is invalid.\";}');
INSERT INTO `smrc_postmeta` VALUES (1820,397,'_additional_settings','on_submit: \"boldthemes_initBookingForm();\"');
INSERT INTO `smrc_postmeta` VALUES (1821,397,'_locale','en_US');
INSERT INTO `smrc_postmeta` VALUES (1822,757,'_form','<p>Book Date<br />\n[date* date-674]\n<p>Room Number<br/>\n[text* number-14]</p>\n<p>Your name<br/>\n[text name]</p>\n<p>Number of persons at the table<br/>\n[text* persons]</p>\n<p>[submit \"Book a table\"]</p>');
INSERT INTO `smrc_postmeta` VALUES (1823,757,'_mail','a:8:{s:7:\"subject\";s:21:\"Hotel California form\";s:6:\"sender\";s:40:\"[name] <wordpress@hotel.bold-themes.com>\";s:4:\"body\";s:158:\"Date: [date-674], [number-14]\nName: [name]\nPersons: [persons]\n\n--\nThis e-mail was sent from a contact form on Hotel California (http://hotel.bold-themes.com/)\";s:9:\"recipient\";s:20:\"info@bold-themes.com\";s:18:\"additional_headers\";s:0:\"\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}');
INSERT INTO `smrc_postmeta` VALUES (1824,757,'_mail_2','a:9:{s:6:\"active\";b:0;s:7:\"subject\";s:33:\"Hotel California \"[your-subject]\"\";s:6:\"sender\";s:50:\"Hotel California <wordpress@hotel.omnicom-dev.com>\";s:4:\"body\";s:124:\"Message Body:\n[your-message]\n\n--\nThis e-mail was sent from a contact form on Hotel California (http://hotel.omnicom-dev.com)\";s:9:\"recipient\";s:12:\"[your-email]\";s:18:\"additional_headers\";s:30:\"Reply-To: info@bold-themes.com\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}');
INSERT INTO `smrc_postmeta` VALUES (1825,757,'_messages','a:23:{s:12:\"mail_sent_ok\";s:45:\"Thank you for your message. It has been sent.\";s:12:\"mail_sent_ng\";s:71:\"There was an error trying to send your message. Please try again later.\";s:16:\"validation_error\";s:61:\"One or more fields have an error. Please check and try again.\";s:4:\"spam\";s:71:\"There was an error trying to send your message. Please try again later.\";s:12:\"accept_terms\";s:69:\"You must accept the terms and conditions before sending your message.\";s:16:\"invalid_required\";s:22:\"The field is required.\";s:16:\"invalid_too_long\";s:22:\"The field is too long.\";s:17:\"invalid_too_short\";s:23:\"The field is too short.\";s:12:\"invalid_date\";s:29:\"The date format is incorrect.\";s:14:\"date_too_early\";s:44:\"The date is before the earliest one allowed.\";s:13:\"date_too_late\";s:41:\"The date is after the latest one allowed.\";s:13:\"upload_failed\";s:46:\"There was an unknown error uploading the file.\";s:24:\"upload_file_type_invalid\";s:49:\"You are not allowed to upload files of this type.\";s:21:\"upload_file_too_large\";s:20:\"The file is too big.\";s:23:\"upload_failed_php_error\";s:38:\"There was an error uploading the file.\";s:14:\"invalid_number\";s:29:\"The number format is invalid.\";s:16:\"number_too_small\";s:47:\"The number is smaller than the minimum allowed.\";s:16:\"number_too_large\";s:46:\"The number is larger than the maximum allowed.\";s:23:\"quiz_answer_not_correct\";s:36:\"The answer to the quiz is incorrect.\";s:17:\"captcha_not_match\";s:31:\"Your entered code is incorrect.\";s:13:\"invalid_email\";s:38:\"The e-mail address entered is invalid.\";s:11:\"invalid_url\";s:19:\"The URL is invalid.\";s:11:\"invalid_tel\";s:32:\"The telephone number is invalid.\";}');
INSERT INTO `smrc_postmeta` VALUES (1826,757,'_additional_settings','');
INSERT INTO `smrc_postmeta` VALUES (1827,757,'_locale','en_US');
INSERT INTO `smrc_postmeta` VALUES (1828,32,'_form','<p>Your Name (required)<br />\n [text* your-name] </p>\n\n<p>Your Email (required)<br />\n [email* your-email] </p>\n\n<p>Subject<br />\n [text your-subject] </p>\n\n<p>Your Message<br />\n [textarea your-message] </p>\n\n<p>[submit \"Send\"]</p>');
INSERT INTO `smrc_postmeta` VALUES (1829,32,'_mail','a:8:{s:7:\"subject\";s:33:\"Hotel California \"[your-subject]\"\";s:6:\"sender\";s:45:\"[your-name] <wordpress@hotel.bold-themes.com>\";s:4:\"body\";s:189:\"From: [your-name] <[your-email]>\nSubject: [your-subject]\n\nMessage Body:\n[your-message]\n\n--\nThis e-mail was sent from a contact form on Hotel California (http://hotel.bold-themes.com/summer)\";s:9:\"recipient\";s:20:\"info@bold-themes.com\";s:18:\"additional_headers\";s:22:\"Reply-To: [your-email]\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}');
INSERT INTO `smrc_postmeta` VALUES (1830,32,'_mail_2','a:9:{s:6:\"active\";b:0;s:7:\"subject\";s:33:\"Hotel California \"[your-subject]\"\";s:6:\"sender\";s:50:\"Hotel California <wordpress@hotel.omnicom-dev.com>\";s:4:\"body\";s:124:\"Message Body:\n[your-message]\n\n--\nThis e-mail was sent from a contact form on Hotel California (http://hotel.omnicom-dev.com)\";s:9:\"recipient\";s:12:\"[your-email]\";s:18:\"additional_headers\";s:30:\"Reply-To: info@bold-themes.com\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}');
INSERT INTO `smrc_postmeta` VALUES (1831,32,'_messages','a:23:{s:12:\"mail_sent_ok\";s:45:\"Thank you for your message. It has been sent.\";s:12:\"mail_sent_ng\";s:71:\"There was an error trying to send your message. Please try again later.\";s:16:\"validation_error\";s:61:\"One or more fields have an error. Please check and try again.\";s:4:\"spam\";s:71:\"There was an error trying to send your message. Please try again later.\";s:12:\"accept_terms\";s:69:\"You must accept the terms and conditions before sending your message.\";s:16:\"invalid_required\";s:22:\"The field is required.\";s:16:\"invalid_too_long\";s:22:\"The field is too long.\";s:17:\"invalid_too_short\";s:23:\"The field is too short.\";s:12:\"invalid_date\";s:29:\"The date format is incorrect.\";s:14:\"date_too_early\";s:44:\"The date is before the earliest one allowed.\";s:13:\"date_too_late\";s:41:\"The date is after the latest one allowed.\";s:13:\"upload_failed\";s:46:\"There was an unknown error uploading the file.\";s:24:\"upload_file_type_invalid\";s:49:\"You are not allowed to upload files of this type.\";s:21:\"upload_file_too_large\";s:20:\"The file is too big.\";s:23:\"upload_failed_php_error\";s:38:\"There was an error uploading the file.\";s:14:\"invalid_number\";s:29:\"The number format is invalid.\";s:16:\"number_too_small\";s:47:\"The number is smaller than the minimum allowed.\";s:16:\"number_too_large\";s:46:\"The number is larger than the maximum allowed.\";s:23:\"quiz_answer_not_correct\";s:36:\"The answer to the quiz is incorrect.\";s:17:\"captcha_not_match\";s:31:\"Your entered code is incorrect.\";s:13:\"invalid_email\";s:38:\"The e-mail address entered is invalid.\";s:11:\"invalid_url\";s:19:\"The URL is invalid.\";s:11:\"invalid_tel\";s:32:\"The telephone number is invalid.\";}');
INSERT INTO `smrc_postmeta` VALUES (1832,32,'_additional_settings','');
INSERT INTO `smrc_postmeta` VALUES (1833,32,'_locale','en_US');
INSERT INTO `smrc_postmeta` VALUES (1834,557,'_form','<div class=\"boldRow btBookingRow btFormRowActive\" style=\"z-index: 10;\">\n<div class=\"rowItem col-xs-12 col-sm-6\">\n[date* ArrivalDate placeholder \"Arrival Date\"]\n</div>\n<div class=\"btClear btSeparator topSmallSpaced noBorder visible-xs visible-ms\"><hr></div>\n<div class=\"rowItem col-xs-12 col-sm-6\">\n[date DepartureDate placeholder \"Departure Date\"]\n</div>\n<div class=\"btClear btSeparator topSmallSpaced noBorder visible-xs visible-ms visible-sm visible-md visible-lg\"><hr></div>\n<div class=\"rowItem col-xs-12 col-sm-6\">\n[select* Room placeholder \"Choose a Room\" \"Standard Double Room\" \"Standard Family Room\" \"Garden Family Room\" \"Deluxe Double Room\" \"Executive Junior Suite\" \"Executive Deluxe Suite\" \"Executive Double Suite\" \"Maisonette\"]\n</div>\n<div class=\"btClear btSeparator topSmallSpaced noBorder visible-xs visible-ms\"><hr></div>\n<div class=\"rowItem col-xs-12 col-sm-6\">\n[select* Adults placeholder \"How many Adults\" \"1\" \"2\" \"3\" \"4\" \"5\" \"6\" \"7\" \"8\" \"9\" \"10\"]\n</div>\n<div class=\"btClear btSeparator topSmallSpaced noBorder visible-xs visible-ms visible-sm visible-md visible-lg\"><hr></div>\n<div class=\"rowItem col-xs-12 col-sm-6\">\n[select Children placeholder \"How many Children\" \"1\" \"2\" \"3\" \"4\" \"5\" \"6\" \"7\" \"8\" \"9\" \"10\"]\n</div>\n<div class=\"btClear btSeparator topSmallSpaced noBorder visible-xs visible-ms\"><hr></div>\n<div class=\"rowItem col-xs-12 col-sm-6\">\n<div class=\"btBookingNext\">BOOK NOW</div>\n</div>\n</div>\n\n<div class=\"boldRow btBookingRow\">\n<div class=\"rowItem col-xs-12 col-sm-6\">\n[text* Name placeholder \"Your Name\"]\n</div>\n<div class=\"btClear btSeparator topSmallSpaced noBorder visible-xs visible-ms\"><hr></div>\n<div class=\"rowItem col-xs-12 col-sm-6\">\n[email* Email placeholder \"Your Email\"]\n</div>\n<div class=\"btClear btSeparator topSmallSpaced noBorder visible-xs visible-ms visible-sm visible-md visible-lg\"><hr></div>\n<div class=\"rowItem col-xs-12\">\n[submit \"SEND\"]\n</div>\n</div>');
INSERT INTO `smrc_postmeta` VALUES (1835,557,'_mail','a:8:{s:7:\"subject\";s:21:\"Hotel California form\";s:6:\"sender\";s:40:\"[name] <wordpress@hotel.bold-themes.com>\";s:4:\"body\";s:238:\"Name: [Name]\nEmail: [Email]\n\nArrival date: [ArrivalDate]\nDeparture: [DepartureDate]\nRoom: [Room]\nAdults: [Adults]\nChildren: [Children]\n\n\n--\nThis e-mail was sent from a contact form on Hotel California (http://hotel.bold-themes.com/summer)\";s:9:\"recipient\";s:20:\"info@bold-themes.com\";s:18:\"additional_headers\";s:17:\"Reply-To: [Email]\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}');
INSERT INTO `smrc_postmeta` VALUES (1836,557,'_mail_2','a:9:{s:6:\"active\";b:0;s:7:\"subject\";s:33:\"Hotel California \"[your-subject]\"\";s:6:\"sender\";s:50:\"Hotel California <wordpress@hotel.omnicom-dev.com>\";s:4:\"body\";s:131:\"Message Body:\n[your-message]\n\n--\nThis e-mail was sent from a contact form on Hotel California (http://hotel.omnicom-dev.com/summer)\";s:9:\"recipient\";s:12:\"[your-email]\";s:18:\"additional_headers\";s:30:\"Reply-To: info@bold-themes.com\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}');
INSERT INTO `smrc_postmeta` VALUES (1837,557,'_messages','a:23:{s:12:\"mail_sent_ok\";s:45:\"Thank you for your message. It has been sent.\";s:12:\"mail_sent_ng\";s:71:\"There was an error trying to send your message. Please try again later.\";s:16:\"validation_error\";s:61:\"One or more fields have an error. Please check and try again.\";s:4:\"spam\";s:71:\"There was an error trying to send your message. Please try again later.\";s:12:\"accept_terms\";s:69:\"You must accept the terms and conditions before sending your message.\";s:16:\"invalid_required\";s:22:\"The field is required.\";s:16:\"invalid_too_long\";s:22:\"The field is too long.\";s:17:\"invalid_too_short\";s:23:\"The field is too short.\";s:12:\"invalid_date\";s:29:\"The date format is incorrect.\";s:14:\"date_too_early\";s:44:\"The date is before the earliest one allowed.\";s:13:\"date_too_late\";s:41:\"The date is after the latest one allowed.\";s:13:\"upload_failed\";s:46:\"There was an unknown error uploading the file.\";s:24:\"upload_file_type_invalid\";s:49:\"You are not allowed to upload files of this type.\";s:21:\"upload_file_too_large\";s:20:\"The file is too big.\";s:23:\"upload_failed_php_error\";s:38:\"There was an error uploading the file.\";s:14:\"invalid_number\";s:29:\"The number format is invalid.\";s:16:\"number_too_small\";s:47:\"The number is smaller than the minimum allowed.\";s:16:\"number_too_large\";s:46:\"The number is larger than the maximum allowed.\";s:23:\"quiz_answer_not_correct\";s:36:\"The answer to the quiz is incorrect.\";s:17:\"captcha_not_match\";s:31:\"Your entered code is incorrect.\";s:13:\"invalid_email\";s:38:\"The e-mail address entered is invalid.\";s:11:\"invalid_url\";s:19:\"The URL is invalid.\";s:11:\"invalid_tel\";s:32:\"The telephone number is invalid.\";}');
INSERT INTO `smrc_postmeta` VALUES (1838,557,'_additional_settings','on_submit: \"boldthemes_initBookingForm();\"');
INSERT INTO `smrc_postmeta` VALUES (1839,557,'_locale','en_US');
INSERT INTO `smrc_postmeta` VALUES (1840,653,'_form','<p>Your Name (required)<br />\n [text* your-name] </p>\n\n<p>Your Email (required)<br />\n [email* your-email] </p>\n\n<p>Subject<br />\n [text your-subject] </p>\n\n<p>Your Message<br />\n [textarea your-message] </p>\n\n<p>[submit \"Send\"]</p>');
INSERT INTO `smrc_postmeta` VALUES (1841,653,'_mail','a:8:{s:7:\"subject\";s:24:\"Message - [your-subject]\";s:6:\"sender\";s:45:\"[your-name] <wordpress@hotel.bold-themes.com>\";s:4:\"body\";s:189:\"From: [your-name] <[your-email]>\nSubject: [your-subject]\n\nMessage Body:\n[your-message]\n\n--\nThis e-mail was sent from a contact form on Hotel California (http://hotel.bold-themes.com/summer)\";s:9:\"recipient\";s:20:\"info@bold-themes.com\";s:18:\"additional_headers\";s:22:\"Reply-To: [your-email]\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}');
INSERT INTO `smrc_postmeta` VALUES (1842,653,'_mail_2','a:9:{s:6:\"active\";b:0;s:7:\"subject\";s:14:\"[your-subject]\";s:6:\"sender\";s:51:\"Summer hotel demo <wordpress@hotel.omnicom-dev.com>\";s:4:\"body\";s:132:\"Message Body:\n[your-message]\n\n--\nThis e-mail was sent from a contact form on Summer hotel demo (http://hotel.omnicom-dev.com/summer)\";s:9:\"recipient\";s:12:\"[your-email]\";s:18:\"additional_headers\";s:30:\"Reply-To: info@bold-themes.com\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}');
INSERT INTO `smrc_postmeta` VALUES (1843,653,'_messages','a:23:{s:12:\"mail_sent_ok\";s:43:\"Your message was sent successfully. Thanks.\";s:12:\"mail_sent_ng\";s:93:\"Failed to send your message. Please try later or contact the administrator by another method.\";s:16:\"validation_error\";s:74:\"Validation errors occurred. Please confirm the fields and submit it again.\";s:4:\"spam\";s:93:\"Failed to send your message. Please try later or contact the administrator by another method.\";s:12:\"accept_terms\";s:35:\"Please accept the terms to proceed.\";s:16:\"invalid_required\";s:34:\"Please fill in the required field.\";s:16:\"invalid_too_long\";s:23:\"This input is too long.\";s:17:\"invalid_too_short\";s:24:\"This input is too short.\";s:12:\"invalid_date\";s:29:\"The date format is incorrect.\";s:14:\"date_too_early\";s:44:\"The date is before the earliest one allowed.\";s:13:\"date_too_late\";s:41:\"The date is after the latest one allowed.\";s:13:\"upload_failed\";s:46:\"There was an unknown error uploading the file.\";s:24:\"upload_file_type_invalid\";s:49:\"You are not allowed to upload files of this type.\";s:21:\"upload_file_too_large\";s:20:\"The file is too big.\";s:23:\"upload_failed_php_error\";s:38:\"There was an error uploading the file.\";s:14:\"invalid_number\";s:29:\"The number format is invalid.\";s:16:\"number_too_small\";s:47:\"The number is smaller than the minimum allowed.\";s:16:\"number_too_large\";s:46:\"The number is larger than the maximum allowed.\";s:23:\"quiz_answer_not_correct\";s:36:\"The answer to the quiz is incorrect.\";s:17:\"captcha_not_match\";s:31:\"Your entered code is incorrect.\";s:13:\"invalid_email\";s:38:\"The e-mail address entered is invalid.\";s:11:\"invalid_url\";s:19:\"The URL is invalid.\";s:11:\"invalid_tel\";s:32:\"The telephone number is invalid.\";}');
INSERT INTO `smrc_postmeta` VALUES (1844,653,'_additional_settings','');
INSERT INTO `smrc_postmeta` VALUES (1845,653,'_locale','en_US');
INSERT INTO `smrc_postmeta` VALUES (1846,114,'_sku','');
INSERT INTO `smrc_postmeta` VALUES (1847,114,'_weight','');
INSERT INTO `smrc_postmeta` VALUES (1848,114,'_length','');
INSERT INTO `smrc_postmeta` VALUES (1849,114,'_width','');
INSERT INTO `smrc_postmeta` VALUES (1850,114,'_height','');
INSERT INTO `smrc_postmeta` VALUES (1851,114,'_stock','');
INSERT INTO `smrc_postmeta` VALUES (1852,114,'_thumbnail_id','46');
INSERT INTO `smrc_postmeta` VALUES (1853,114,'_virtual','no');
INSERT INTO `smrc_postmeta` VALUES (1854,114,'_downloadable','no');
INSERT INTO `smrc_postmeta` VALUES (1855,114,'_regular_price','35');
INSERT INTO `smrc_postmeta` VALUES (1856,114,'_sale_price','30');
INSERT INTO `smrc_postmeta` VALUES (1857,114,'_sale_price_dates_from','');
INSERT INTO `smrc_postmeta` VALUES (1858,114,'_sale_price_dates_to','');
INSERT INTO `smrc_postmeta` VALUES (1859,114,'_price','30');
INSERT INTO `smrc_postmeta` VALUES (1860,114,'_tax_class','');
INSERT INTO `smrc_postmeta` VALUES (1861,114,'_download_limit','');
INSERT INTO `smrc_postmeta` VALUES (1862,114,'_download_expiry','');
INSERT INTO `smrc_postmeta` VALUES (1863,114,'_file_paths','');
INSERT INTO `smrc_postmeta` VALUES (1864,114,'attribute_pa_color','blue');
INSERT INTO `smrc_postmeta` VALUES (1865,114,'_stock_status','instock');
INSERT INTO `smrc_postmeta` VALUES (1866,111,'_sku','');
INSERT INTO `smrc_postmeta` VALUES (1867,111,'_weight','');
INSERT INTO `smrc_postmeta` VALUES (1868,111,'_length','');
INSERT INTO `smrc_postmeta` VALUES (1869,111,'_width','');
INSERT INTO `smrc_postmeta` VALUES (1870,111,'_height','');
INSERT INTO `smrc_postmeta` VALUES (1871,111,'_stock','');
INSERT INTO `smrc_postmeta` VALUES (1872,111,'_thumbnail_id','29');
INSERT INTO `smrc_postmeta` VALUES (1873,111,'_virtual','no');
INSERT INTO `smrc_postmeta` VALUES (1874,111,'_downloadable','no');
INSERT INTO `smrc_postmeta` VALUES (1875,111,'_regular_price','20');
INSERT INTO `smrc_postmeta` VALUES (1876,111,'_sale_price','');
INSERT INTO `smrc_postmeta` VALUES (1877,111,'_sale_price_dates_from','');
INSERT INTO `smrc_postmeta` VALUES (1878,111,'_sale_price_dates_to','');
INSERT INTO `smrc_postmeta` VALUES (1879,111,'_price','20');
INSERT INTO `smrc_postmeta` VALUES (1880,111,'_tax_class','');
INSERT INTO `smrc_postmeta` VALUES (1881,111,'_download_limit','');
INSERT INTO `smrc_postmeta` VALUES (1882,111,'_download_expiry','');
INSERT INTO `smrc_postmeta` VALUES (1883,111,'_file_paths','');
INSERT INTO `smrc_postmeta` VALUES (1884,111,'attribute_pa_color','black');
INSERT INTO `smrc_postmeta` VALUES (1885,111,'_stock_status','instock');
INSERT INTO `smrc_postmeta` VALUES (1886,112,'_sku','');
INSERT INTO `smrc_postmeta` VALUES (1887,112,'_weight','');
INSERT INTO `smrc_postmeta` VALUES (1888,112,'_length','');
INSERT INTO `smrc_postmeta` VALUES (1889,112,'_width','');
INSERT INTO `smrc_postmeta` VALUES (1890,112,'_height','');
INSERT INTO `smrc_postmeta` VALUES (1891,112,'_stock','');
INSERT INTO `smrc_postmeta` VALUES (1892,112,'_thumbnail_id','27');
INSERT INTO `smrc_postmeta` VALUES (1893,112,'_virtual','no');
INSERT INTO `smrc_postmeta` VALUES (1894,112,'_downloadable','no');
INSERT INTO `smrc_postmeta` VALUES (1895,112,'_regular_price','20');
INSERT INTO `smrc_postmeta` VALUES (1896,112,'_sale_price','');
INSERT INTO `smrc_postmeta` VALUES (1897,112,'_sale_price_dates_from','');
INSERT INTO `smrc_postmeta` VALUES (1898,112,'_sale_price_dates_to','');
INSERT INTO `smrc_postmeta` VALUES (1899,112,'_price','20');
INSERT INTO `smrc_postmeta` VALUES (1900,112,'_tax_class','');
INSERT INTO `smrc_postmeta` VALUES (1901,112,'_download_limit','');
INSERT INTO `smrc_postmeta` VALUES (1902,112,'_download_expiry','');
INSERT INTO `smrc_postmeta` VALUES (1903,112,'_file_paths','');
INSERT INTO `smrc_postmeta` VALUES (1904,112,'attribute_pa_color','green');
INSERT INTO `smrc_postmeta` VALUES (1905,112,'_stock_status','instock');
INSERT INTO `smrc_postmeta` VALUES (1906,113,'_sku','');
INSERT INTO `smrc_postmeta` VALUES (1907,113,'_weight','');
INSERT INTO `smrc_postmeta` VALUES (1908,113,'_length','');
INSERT INTO `smrc_postmeta` VALUES (1909,113,'_width','');
INSERT INTO `smrc_postmeta` VALUES (1910,113,'_height','');
INSERT INTO `smrc_postmeta` VALUES (1911,113,'_stock','');
INSERT INTO `smrc_postmeta` VALUES (1912,113,'_thumbnail_id','43');
INSERT INTO `smrc_postmeta` VALUES (1913,113,'_virtual','no');
INSERT INTO `smrc_postmeta` VALUES (1914,113,'_downloadable','no');
INSERT INTO `smrc_postmeta` VALUES (1915,113,'_regular_price','35');
INSERT INTO `smrc_postmeta` VALUES (1916,113,'_sale_price','');
INSERT INTO `smrc_postmeta` VALUES (1917,113,'_sale_price_dates_from','');
INSERT INTO `smrc_postmeta` VALUES (1918,113,'_sale_price_dates_to','');
INSERT INTO `smrc_postmeta` VALUES (1919,113,'_price','35');
INSERT INTO `smrc_postmeta` VALUES (1920,113,'_tax_class','');
INSERT INTO `smrc_postmeta` VALUES (1921,113,'_download_limit','');
INSERT INTO `smrc_postmeta` VALUES (1922,113,'_download_expiry','');
INSERT INTO `smrc_postmeta` VALUES (1923,113,'_file_paths','');
INSERT INTO `smrc_postmeta` VALUES (1924,113,'attribute_pa_color','black');
INSERT INTO `smrc_postmeta` VALUES (1925,113,'_stock_status','instock');
INSERT INTO `smrc_postmeta` VALUES (1926,100,'_download_limit','-1');
INSERT INTO `smrc_postmeta` VALUES (1927,100,'_download_expiry','-1');
INSERT INTO `smrc_postmeta` VALUES (1928,101,'_download_limit','-1');
INSERT INTO `smrc_postmeta` VALUES (1929,101,'_download_expiry','-1');
INSERT INTO `smrc_postmeta` VALUES (1930,98,'_download_limit','-1');
INSERT INTO `smrc_postmeta` VALUES (1931,98,'_download_expiry','-1');
INSERT INTO `smrc_postmeta` VALUES (1932,102,'_download_limit','-1');
INSERT INTO `smrc_postmeta` VALUES (1933,102,'_download_expiry','-1');
INSERT INTO `smrc_postmeta` VALUES (1934,104,'_download_limit','-1');
INSERT INTO `smrc_postmeta` VALUES (1935,104,'_download_expiry','-1');
INSERT INTO `smrc_postmeta` VALUES (1936,108,'_download_limit','-1');
INSERT INTO `smrc_postmeta` VALUES (1937,108,'_download_expiry','-1');
INSERT INTO `smrc_postmeta` VALUES (1938,106,'_download_limit','-1');
INSERT INTO `smrc_postmeta` VALUES (1939,106,'_download_expiry','-1');
INSERT INTO `smrc_postmeta` VALUES (1940,105,'_download_limit','-1');
INSERT INTO `smrc_postmeta` VALUES (1941,105,'_download_expiry','-1');
INSERT INTO `smrc_postmeta` VALUES (1942,97,'_download_limit','-1');
INSERT INTO `smrc_postmeta` VALUES (1943,97,'_download_expiry','-1');
INSERT INTO `smrc_postmeta` VALUES (1944,103,'_download_limit','-1');
INSERT INTO `smrc_postmeta` VALUES (1945,103,'_download_expiry','-1');
INSERT INTO `smrc_postmeta` VALUES (1946,95,'_download_limit','-1');
INSERT INTO `smrc_postmeta` VALUES (1947,95,'_download_expiry','-1');
INSERT INTO `smrc_postmeta` VALUES (1948,121,'_download_limit','-1');
INSERT INTO `smrc_postmeta` VALUES (1949,121,'_download_expiry','-1');
INSERT INTO `smrc_postmeta` VALUES (1950,109,'_download_limit','-1');
INSERT INTO `smrc_postmeta` VALUES (1951,109,'_download_expiry','-1');
INSERT INTO `smrc_postmeta` VALUES (1952,110,'_download_limit','-1');
INSERT INTO `smrc_postmeta` VALUES (1953,110,'_download_expiry','-1');
INSERT INTO `smrc_postmeta` VALUES (1954,96,'_download_limit','-1');
INSERT INTO `smrc_postmeta` VALUES (1955,96,'_download_expiry','-1');
INSERT INTO `smrc_postmeta` VALUES (1956,837,'_edit_lock','1617956080:1');
INSERT INTO `smrc_postmeta` VALUES (1964,837,'_edit_last','1');
INSERT INTO `smrc_postmeta` VALUES (1965,837,'boldthemes_theme_animations','normal');
INSERT INTO `smrc_postmeta` VALUES (2135,1005,'_wp_attached_file','2021/04/mpyclogo.png');
INSERT INTO `smrc_postmeta` VALUES (2136,1005,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:404;s:6:\"height\";i:60;s:4:\"file\";s:20:\"2021/04/mpyclogo.png\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"mpyclogo-320x48.png\";s:5:\"width\";i:320;s:6:\"height\";i:48;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"mpyclogo-160x60.png\";s:5:\"width\";i:160;s:6:\"height\";i:60;s:9:\"mime-type\";s:9:\"image/png\";}s:23:\"boldthemes_latest_posts\";a:4:{s:4:\"file\";s:19:\"mpyclogo-320x60.png\";s:5:\"width\";i:320;s:6:\"height\";i:60;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:19:\"mpyclogo-300x60.png\";s:5:\"width\";i:300;s:6:\"height\";i:60;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:19:\"mpyclogo-100x60.png\";s:5:\"width\";i:100;s:6:\"height\";i:60;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:19:\"mpyclogo-300x60.png\";s:5:\"width\";i:300;s:6:\"height\";i:60;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:19:\"mpyclogo-100x60.png\";s:5:\"width\";i:100;s:6:\"height\";i:60;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:{}}}');
INSERT INTO `smrc_postmeta` VALUES (2140,1009,'_wp_attached_file','2021/04/burgee-sm-2.png');
INSERT INTO `smrc_postmeta` VALUES (2141,1009,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:95;s:6:\"height\";i:60;s:4:\"file\";s:23:\"2021/04/burgee-sm-2.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `smrc_postmeta` VALUES (2145,1012,'_wp_attached_file','2021/04/mpyclogo-rd.png');
INSERT INTO `smrc_postmeta` VALUES (2146,1012,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:404;s:6:\"height\";i:60;s:4:\"file\";s:23:\"2021/04/mpyclogo-rd.png\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"mpyclogo-rd-320x48.png\";s:5:\"width\";i:320;s:6:\"height\";i:48;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"mpyclogo-rd-160x60.png\";s:5:\"width\";i:160;s:6:\"height\";i:60;s:9:\"mime-type\";s:9:\"image/png\";}s:23:\"boldthemes_latest_posts\";a:4:{s:4:\"file\";s:22:\"mpyclogo-rd-320x60.png\";s:5:\"width\";i:320;s:6:\"height\";i:60;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:22:\"mpyclogo-rd-300x60.png\";s:5:\"width\";i:300;s:6:\"height\";i:60;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:22:\"mpyclogo-rd-100x60.png\";s:5:\"width\";i:100;s:6:\"height\";i:60;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:22:\"mpyclogo-rd-300x60.png\";s:5:\"width\";i:300;s:6:\"height\";i:60;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:22:\"mpyclogo-rd-100x60.png\";s:5:\"width\";i:100;s:6:\"height\";i:60;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:{}}}');
INSERT INTO `smrc_postmeta` VALUES (2155,232,'_edit_lock','1618196943:1');
INSERT INTO `smrc_postmeta` VALUES (2156,230,'_edit_lock','1617875119:1');
INSERT INTO `smrc_postmeta` VALUES (2157,753,'_edit_lock','1617955910:1');
INSERT INTO `smrc_postmeta` VALUES (2184,1025,'_wp_attached_file','2021/04/mpyc-slider01.jpg');
INSERT INTO `smrc_postmeta` VALUES (2185,1025,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2500;s:6:\"height\";i:1094;s:4:\"file\";s:25:\"2021/04/mpyc-slider01.jpg\";s:5:\"sizes\";a:19:{s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"mpyc-slider01-320x140.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:140;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:26:\"mpyc-slider01-1200x525.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:525;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"mpyc-slider01-160x160.jpg\";s:5:\"width\";i:160;s:6:\"height\";i:160;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:25:\"mpyc-slider01-768x336.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:336;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:26:\"mpyc-slider01-1536x672.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:672;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:26:\"mpyc-slider01-2048x896.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:896;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"boldthemes_grid\";a:4:{s:4:\"file\";s:25:\"mpyc-slider01-540x236.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:236;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_11\";a:4:{s:4:\"file\";s:25:\"mpyc-slider01-540x540.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_22\";a:4:{s:4:\"file\";s:27:\"mpyc-slider01-1080x1080.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:1080;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_21\";a:4:{s:4:\"file\";s:26:\"mpyc-slider01-1080x540.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_12\";a:4:{s:4:\"file\";s:26:\"mpyc-slider01-540x1080.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:1080;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_latest_posts\";a:4:{s:4:\"file\";s:25:\"mpyc-slider01-320x240.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_grid_gallery\";a:4:{s:4:\"file\";s:25:\"mpyc-slider01-540x405.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:25:\"mpyc-slider01-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:25:\"mpyc-slider01-600x263.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:263;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:25:\"mpyc-slider01-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:25:\"mpyc-slider01-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:25:\"mpyc-slider01-600x263.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:263;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:25:\"mpyc-slider01-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `smrc_postmeta` VALUES (2186,1026,'_wp_attached_file','2021/04/mpyc-slider02.jpg');
INSERT INTO `smrc_postmeta` VALUES (2187,1026,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2500;s:6:\"height\";i:1094;s:4:\"file\";s:25:\"2021/04/mpyc-slider02.jpg\";s:5:\"sizes\";a:19:{s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"mpyc-slider02-320x140.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:140;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:26:\"mpyc-slider02-1200x525.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:525;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"mpyc-slider02-160x160.jpg\";s:5:\"width\";i:160;s:6:\"height\";i:160;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:25:\"mpyc-slider02-768x336.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:336;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:26:\"mpyc-slider02-1536x672.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:672;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:26:\"mpyc-slider02-2048x896.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:896;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"boldthemes_grid\";a:4:{s:4:\"file\";s:25:\"mpyc-slider02-540x236.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:236;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_11\";a:4:{s:4:\"file\";s:25:\"mpyc-slider02-540x540.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_22\";a:4:{s:4:\"file\";s:27:\"mpyc-slider02-1080x1080.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:1080;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_21\";a:4:{s:4:\"file\";s:26:\"mpyc-slider02-1080x540.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_12\";a:4:{s:4:\"file\";s:26:\"mpyc-slider02-540x1080.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:1080;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_latest_posts\";a:4:{s:4:\"file\";s:25:\"mpyc-slider02-320x240.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_grid_gallery\";a:4:{s:4:\"file\";s:25:\"mpyc-slider02-540x405.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:25:\"mpyc-slider02-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:25:\"mpyc-slider02-600x263.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:263;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:25:\"mpyc-slider02-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:25:\"mpyc-slider02-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:25:\"mpyc-slider02-600x263.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:263;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:25:\"mpyc-slider02-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `smrc_postmeta` VALUES (2188,1027,'_wp_attached_file','2021/04/mpyc-slider03.jpg');
INSERT INTO `smrc_postmeta` VALUES (2189,1027,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2500;s:6:\"height\";i:1094;s:4:\"file\";s:25:\"2021/04/mpyc-slider03.jpg\";s:5:\"sizes\";a:19:{s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"mpyc-slider03-320x140.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:140;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:26:\"mpyc-slider03-1200x525.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:525;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"mpyc-slider03-160x160.jpg\";s:5:\"width\";i:160;s:6:\"height\";i:160;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:25:\"mpyc-slider03-768x336.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:336;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:26:\"mpyc-slider03-1536x672.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:672;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:26:\"mpyc-slider03-2048x896.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:896;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"boldthemes_grid\";a:4:{s:4:\"file\";s:25:\"mpyc-slider03-540x236.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:236;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_11\";a:4:{s:4:\"file\";s:25:\"mpyc-slider03-540x540.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_22\";a:4:{s:4:\"file\";s:27:\"mpyc-slider03-1080x1080.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:1080;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_21\";a:4:{s:4:\"file\";s:26:\"mpyc-slider03-1080x540.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_12\";a:4:{s:4:\"file\";s:26:\"mpyc-slider03-540x1080.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:1080;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_latest_posts\";a:4:{s:4:\"file\";s:25:\"mpyc-slider03-320x240.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_grid_gallery\";a:4:{s:4:\"file\";s:25:\"mpyc-slider03-540x405.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:25:\"mpyc-slider03-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:25:\"mpyc-slider03-600x263.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:263;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:25:\"mpyc-slider03-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:25:\"mpyc-slider03-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:25:\"mpyc-slider03-600x263.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:263;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:25:\"mpyc-slider03-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `smrc_postmeta` VALUES (2190,1028,'_wp_attached_file','2021/04/mpyc-slider04.jpg');
INSERT INTO `smrc_postmeta` VALUES (2191,1028,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2500;s:6:\"height\";i:1094;s:4:\"file\";s:25:\"2021/04/mpyc-slider04.jpg\";s:5:\"sizes\";a:19:{s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"mpyc-slider04-320x140.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:140;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:26:\"mpyc-slider04-1200x525.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:525;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"mpyc-slider04-160x160.jpg\";s:5:\"width\";i:160;s:6:\"height\";i:160;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:25:\"mpyc-slider04-768x336.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:336;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:26:\"mpyc-slider04-1536x672.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:672;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:26:\"mpyc-slider04-2048x896.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:896;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"boldthemes_grid\";a:4:{s:4:\"file\";s:25:\"mpyc-slider04-540x236.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:236;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_11\";a:4:{s:4:\"file\";s:25:\"mpyc-slider04-540x540.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_22\";a:4:{s:4:\"file\";s:27:\"mpyc-slider04-1080x1080.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:1080;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_21\";a:4:{s:4:\"file\";s:26:\"mpyc-slider04-1080x540.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_12\";a:4:{s:4:\"file\";s:26:\"mpyc-slider04-540x1080.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:1080;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_latest_posts\";a:4:{s:4:\"file\";s:25:\"mpyc-slider04-320x240.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_grid_gallery\";a:4:{s:4:\"file\";s:25:\"mpyc-slider04-540x405.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:25:\"mpyc-slider04-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:25:\"mpyc-slider04-600x263.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:263;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:25:\"mpyc-slider04-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:25:\"mpyc-slider04-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:25:\"mpyc-slider04-600x263.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:263;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:25:\"mpyc-slider04-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `smrc_postmeta` VALUES (2194,1048,'_wp_attached_file','2021/04/mpyc-slider06.jpg');
INSERT INTO `smrc_postmeta` VALUES (2195,1048,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2500;s:6:\"height\";i:1094;s:4:\"file\";s:25:\"2021/04/mpyc-slider06.jpg\";s:5:\"sizes\";a:19:{s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"mpyc-slider06-320x140.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:140;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:26:\"mpyc-slider06-1200x525.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:525;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"mpyc-slider06-160x160.jpg\";s:5:\"width\";i:160;s:6:\"height\";i:160;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:25:\"mpyc-slider06-768x336.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:336;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:26:\"mpyc-slider06-1536x672.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:672;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:26:\"mpyc-slider06-2048x896.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:896;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"boldthemes_grid\";a:4:{s:4:\"file\";s:25:\"mpyc-slider06-540x236.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:236;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_11\";a:4:{s:4:\"file\";s:25:\"mpyc-slider06-540x540.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_22\";a:4:{s:4:\"file\";s:27:\"mpyc-slider06-1080x1080.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:1080;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_21\";a:4:{s:4:\"file\";s:26:\"mpyc-slider06-1080x540.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_12\";a:4:{s:4:\"file\";s:26:\"mpyc-slider06-540x1080.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:1080;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_latest_posts\";a:4:{s:4:\"file\";s:25:\"mpyc-slider06-320x240.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_grid_gallery\";a:4:{s:4:\"file\";s:25:\"mpyc-slider06-540x405.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:25:\"mpyc-slider06-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:25:\"mpyc-slider06-600x263.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:263;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:25:\"mpyc-slider06-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:25:\"mpyc-slider06-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:25:\"mpyc-slider06-600x263.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:263;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:25:\"mpyc-slider06-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `smrc_postmeta` VALUES (2196,1049,'_wp_attached_file','2021/04/mpyc-slider07.jpg');
INSERT INTO `smrc_postmeta` VALUES (2197,1049,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2500;s:6:\"height\";i:1094;s:4:\"file\";s:25:\"2021/04/mpyc-slider07.jpg\";s:5:\"sizes\";a:19:{s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"mpyc-slider07-320x140.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:140;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:26:\"mpyc-slider07-1200x525.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:525;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"mpyc-slider07-160x160.jpg\";s:5:\"width\";i:160;s:6:\"height\";i:160;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:25:\"mpyc-slider07-768x336.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:336;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:26:\"mpyc-slider07-1536x672.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:672;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:26:\"mpyc-slider07-2048x896.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:896;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"boldthemes_grid\";a:4:{s:4:\"file\";s:25:\"mpyc-slider07-540x236.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:236;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_11\";a:4:{s:4:\"file\";s:25:\"mpyc-slider07-540x540.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_22\";a:4:{s:4:\"file\";s:27:\"mpyc-slider07-1080x1080.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:1080;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_21\";a:4:{s:4:\"file\";s:26:\"mpyc-slider07-1080x540.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_12\";a:4:{s:4:\"file\";s:26:\"mpyc-slider07-540x1080.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:1080;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_latest_posts\";a:4:{s:4:\"file\";s:25:\"mpyc-slider07-320x240.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_grid_gallery\";a:4:{s:4:\"file\";s:25:\"mpyc-slider07-540x405.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:25:\"mpyc-slider07-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:25:\"mpyc-slider07-600x263.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:263;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:25:\"mpyc-slider07-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:25:\"mpyc-slider07-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:25:\"mpyc-slider07-600x263.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:263;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:25:\"mpyc-slider07-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `smrc_postmeta` VALUES (2198,1050,'_wp_attached_file','2021/04/mpyc-slider08.jpg');
INSERT INTO `smrc_postmeta` VALUES (2199,1050,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2500;s:6:\"height\";i:1094;s:4:\"file\";s:25:\"2021/04/mpyc-slider08.jpg\";s:5:\"sizes\";a:19:{s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"mpyc-slider08-320x140.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:140;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:26:\"mpyc-slider08-1200x525.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:525;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"mpyc-slider08-160x160.jpg\";s:5:\"width\";i:160;s:6:\"height\";i:160;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:25:\"mpyc-slider08-768x336.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:336;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:26:\"mpyc-slider08-1536x672.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:672;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:26:\"mpyc-slider08-2048x896.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:896;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"boldthemes_grid\";a:4:{s:4:\"file\";s:25:\"mpyc-slider08-540x236.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:236;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_11\";a:4:{s:4:\"file\";s:25:\"mpyc-slider08-540x540.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_22\";a:4:{s:4:\"file\";s:27:\"mpyc-slider08-1080x1080.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:1080;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_21\";a:4:{s:4:\"file\";s:26:\"mpyc-slider08-1080x540.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_12\";a:4:{s:4:\"file\";s:26:\"mpyc-slider08-540x1080.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:1080;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_latest_posts\";a:4:{s:4:\"file\";s:25:\"mpyc-slider08-320x240.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_grid_gallery\";a:4:{s:4:\"file\";s:25:\"mpyc-slider08-540x405.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:25:\"mpyc-slider08-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:25:\"mpyc-slider08-600x263.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:263;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:25:\"mpyc-slider08-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:25:\"mpyc-slider08-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:25:\"mpyc-slider08-600x263.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:263;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:25:\"mpyc-slider08-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `smrc_postmeta` VALUES (2200,1068,'_wp_attached_file','2021/04/race-12a.jpg');
INSERT INTO `smrc_postmeta` VALUES (2201,1068,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:300;s:6:\"height\";i:300;s:4:\"file\";s:20:\"2021/04/race-12a.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"race-12a-160x160.jpg\";s:5:\"width\";i:160;s:6:\"height\";i:160;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_latest_posts\";a:4:{s:4:\"file\";s:20:\"race-12a-300x240.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:20:\"race-12a-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:20:\"race-12a-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `smrc_postmeta` VALUES (2202,1069,'_wp_attached_file','2021/04/rowing_in_marina.jpg');
INSERT INTO `smrc_postmeta` VALUES (2203,1069,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:300;s:6:\"height\";i:300;s:4:\"file\";s:28:\"2021/04/rowing_in_marina.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"rowing_in_marina-160x160.jpg\";s:5:\"width\";i:160;s:6:\"height\";i:160;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_latest_posts\";a:4:{s:4:\"file\";s:28:\"rowing_in_marina-300x240.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:28:\"rowing_in_marina-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:28:\"rowing_in_marina-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"iPhone 7\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1513674883\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"3.99\";s:3:\"iso\";s:2:\"20\";s:13:\"shutter_speed\";s:19:\"0.00044903457566233\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `smrc_postmeta` VALUES (2204,1070,'_wp_attached_file','2021/04/juniors_racing.jpg');
INSERT INTO `smrc_postmeta` VALUES (2205,1070,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:300;s:6:\"height\";i:300;s:4:\"file\";s:26:\"2021/04/juniors_racing.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"juniors_racing-160x160.jpg\";s:5:\"width\";i:160;s:6:\"height\";i:160;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_latest_posts\";a:4:{s:4:\"file\";s:26:\"juniors_racing-300x240.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:26:\"juniors_racing-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:26:\"juniors_racing-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"iPhone 4\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1303496872\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"3.85\";s:3:\"iso\";s:2:\"80\";s:13:\"shutter_speed\";s:18:\"0.0011600928074246\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `smrc_postmeta` VALUES (2206,1071,'_wp_attached_file','2021/04/lounging_on_deck.jpg');
INSERT INTO `smrc_postmeta` VALUES (2207,1071,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:300;s:6:\"height\";i:300;s:4:\"file\";s:28:\"2021/04/lounging_on_deck.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"lounging_on_deck-160x160.jpg\";s:5:\"width\";i:160;s:6:\"height\";i:160;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_latest_posts\";a:4:{s:4:\"file\";s:28:\"lounging_on_deck-300x240.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:28:\"lounging_on_deck-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:28:\"lounging_on_deck-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:4:\"6.72\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"FinePix XP10\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1328446781\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"6.63\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:6:\"0.0025\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `smrc_postmeta` VALUES (2208,1074,'_wp_attached_file','2021/04/rowing_in_bay.jpg');
INSERT INTO `smrc_postmeta` VALUES (2209,1074,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1751;s:6:\"height\";i:1751;s:4:\"file\";s:25:\"2021/04/rowing_in_bay.jpg\";s:5:\"sizes\";a:18:{s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"rowing_in_bay-320x320.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:27:\"rowing_in_bay-1200x1200.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"rowing_in_bay-160x160.jpg\";s:5:\"width\";i:160;s:6:\"height\";i:160;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:25:\"rowing_in_bay-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:27:\"rowing_in_bay-1536x1536.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"boldthemes_grid\";a:4:{s:4:\"file\";s:25:\"rowing_in_bay-540x540.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_11\";a:4:{s:4:\"file\";s:25:\"rowing_in_bay-540x540.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_22\";a:4:{s:4:\"file\";s:27:\"rowing_in_bay-1080x1080.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:1080;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_21\";a:4:{s:4:\"file\";s:26:\"rowing_in_bay-1080x540.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_12\";a:4:{s:4:\"file\";s:26:\"rowing_in_bay-540x1080.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:1080;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_latest_posts\";a:4:{s:4:\"file\";s:25:\"rowing_in_bay-320x240.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_grid_gallery\";a:4:{s:4:\"file\";s:25:\"rowing_in_bay-540x405.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:25:\"rowing_in_bay-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:25:\"rowing_in_bay-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:25:\"rowing_in_bay-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:25:\"rowing_in_bay-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:25:\"rowing_in_bay-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:25:\"rowing_in_bay-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"iPhone 7\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1532163230\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"3.99\";s:3:\"iso\";s:2:\"20\";s:13:\"shutter_speed\";s:19:\"0.00057405281285878\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `smrc_postmeta` VALUES (2213,1080,'_wp_attached_file','2021/04/mpycfooterlogo.png');
INSERT INTO `smrc_postmeta` VALUES (2214,1080,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:283;s:6:\"height\";i:42;s:4:\"file\";s:26:\"2021/04/mpycfooterlogo.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"mpycfooterlogo-160x42.png\";s:5:\"width\";i:160;s:6:\"height\";i:42;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:25:\"mpycfooterlogo-100x42.png\";s:5:\"width\";i:100;s:6:\"height\";i:42;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:25:\"mpycfooterlogo-100x42.png\";s:5:\"width\";i:100;s:6:\"height\";i:42;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:{}}}');
INSERT INTO `smrc_postmeta` VALUES (2215,1080,'_edit_lock','1617785431:1');
INSERT INTO `smrc_postmeta` VALUES (2216,49,'_edit_lock','1617785200:1');
INSERT INTO `smrc_postmeta` VALUES (2221,1082,'_wp_attached_file','2021/04/mpyc-ico.png');
INSERT INTO `smrc_postmeta` VALUES (2222,1082,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:512;s:6:\"height\";i:512;s:4:\"file\";s:20:\"2021/04/mpyc-ico.png\";s:5:\"sizes\";a:8:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"mpyc-ico-320x320.png\";s:5:\"width\";i:320;s:6:\"height\";i:320;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"mpyc-ico-160x160.png\";s:5:\"width\";i:160;s:6:\"height\";i:160;s:9:\"mime-type\";s:9:\"image/png\";}s:23:\"boldthemes_latest_posts\";a:4:{s:4:\"file\";s:20:\"mpyc-ico-320x240.png\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:9:\"image/png\";}s:23:\"boldthemes_grid_gallery\";a:4:{s:4:\"file\";s:20:\"mpyc-ico-512x405.png\";s:5:\"width\";i:512;s:6:\"height\";i:405;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:20:\"mpyc-ico-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:20:\"mpyc-ico-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:20:\"mpyc-ico-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:20:\"mpyc-ico-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `smrc_postmeta` VALUES (2223,1083,'_wp_attached_file','2021/04/cropped-mpyc-ico.png');
INSERT INTO `smrc_postmeta` VALUES (2224,1083,'_wp_attachment_context','site-icon');
INSERT INTO `smrc_postmeta` VALUES (2225,1083,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:512;s:6:\"height\";i:512;s:4:\"file\";s:28:\"2021/04/cropped-mpyc-ico.png\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"cropped-mpyc-ico-320x320.png\";s:5:\"width\";i:320;s:6:\"height\";i:320;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"cropped-mpyc-ico-160x160.png\";s:5:\"width\";i:160;s:6:\"height\";i:160;s:9:\"mime-type\";s:9:\"image/png\";}s:23:\"boldthemes_latest_posts\";a:4:{s:4:\"file\";s:28:\"cropped-mpyc-ico-320x240.png\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:9:\"image/png\";}s:23:\"boldthemes_grid_gallery\";a:4:{s:4:\"file\";s:28:\"cropped-mpyc-ico-512x405.png\";s:5:\"width\";i:512;s:6:\"height\";i:405;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:28:\"cropped-mpyc-ico-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:28:\"cropped-mpyc-ico-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:28:\"cropped-mpyc-ico-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:28:\"cropped-mpyc-ico-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"site_icon-270\";a:4:{s:4:\"file\";s:28:\"cropped-mpyc-ico-270x270.png\";s:5:\"width\";i:270;s:6:\"height\";i:270;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"site_icon-192\";a:4:{s:4:\"file\";s:28:\"cropped-mpyc-ico-192x192.png\";s:5:\"width\";i:192;s:6:\"height\";i:192;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"site_icon-180\";a:4:{s:4:\"file\";s:28:\"cropped-mpyc-ico-180x180.png\";s:5:\"width\";i:180;s:6:\"height\";i:180;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"site_icon-32\";a:4:{s:4:\"file\";s:26:\"cropped-mpyc-ico-32x32.png\";s:5:\"width\";i:32;s:6:\"height\";i:32;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:{}}}');
INSERT INTO `smrc_postmeta` VALUES (2237,1088,'_wp_attached_file','2021/04/burgee-quote.png');
INSERT INTO `smrc_postmeta` VALUES (2238,1088,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:336;s:6:\"height\";i:336;s:4:\"file\";s:24:\"2021/04/burgee-quote.png\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"burgee-quote-320x320.png\";s:5:\"width\";i:320;s:6:\"height\";i:320;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"burgee-quote-160x160.png\";s:5:\"width\";i:160;s:6:\"height\";i:160;s:9:\"mime-type\";s:9:\"image/png\";}s:23:\"boldthemes_latest_posts\";a:4:{s:4:\"file\";s:24:\"burgee-quote-320x240.png\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:24:\"burgee-quote-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:24:\"burgee-quote-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:24:\"burgee-quote-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:24:\"burgee-quote-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `smrc_postmeta` VALUES (2239,1092,'_wp_attached_file','2021/04/burgee-parallax-bkg.png');
INSERT INTO `smrc_postmeta` VALUES (2240,1092,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1500;s:6:\"height\";i:710;s:4:\"file\";s:31:\"2021/04/burgee-parallax-bkg.png\";s:5:\"sizes\";a:17:{s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"burgee-parallax-bkg-320x151.png\";s:5:\"width\";i:320;s:6:\"height\";i:151;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:32:\"burgee-parallax-bkg-1200x568.png\";s:5:\"width\";i:1200;s:6:\"height\";i:568;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"burgee-parallax-bkg-160x160.png\";s:5:\"width\";i:160;s:6:\"height\";i:160;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:31:\"burgee-parallax-bkg-768x364.png\";s:5:\"width\";i:768;s:6:\"height\";i:364;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"boldthemes_grid\";a:4:{s:4:\"file\";s:31:\"burgee-parallax-bkg-540x256.png\";s:5:\"width\";i:540;s:6:\"height\";i:256;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"boldthemes_grid_11\";a:4:{s:4:\"file\";s:31:\"burgee-parallax-bkg-540x540.png\";s:5:\"width\";i:540;s:6:\"height\";i:540;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"boldthemes_grid_22\";a:4:{s:4:\"file\";s:32:\"burgee-parallax-bkg-1080x710.png\";s:5:\"width\";i:1080;s:6:\"height\";i:710;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"boldthemes_grid_21\";a:4:{s:4:\"file\";s:32:\"burgee-parallax-bkg-1080x540.png\";s:5:\"width\";i:1080;s:6:\"height\";i:540;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"boldthemes_grid_12\";a:4:{s:4:\"file\";s:31:\"burgee-parallax-bkg-540x710.png\";s:5:\"width\";i:540;s:6:\"height\";i:710;s:9:\"mime-type\";s:9:\"image/png\";}s:23:\"boldthemes_latest_posts\";a:4:{s:4:\"file\";s:31:\"burgee-parallax-bkg-320x240.png\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:9:\"image/png\";}s:23:\"boldthemes_grid_gallery\";a:4:{s:4:\"file\";s:31:\"burgee-parallax-bkg-540x405.png\";s:5:\"width\";i:540;s:6:\"height\";i:405;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:31:\"burgee-parallax-bkg-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:31:\"burgee-parallax-bkg-600x284.png\";s:5:\"width\";i:600;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:31:\"burgee-parallax-bkg-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:31:\"burgee-parallax-bkg-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:31:\"burgee-parallax-bkg-600x284.png\";s:5:\"width\";i:600;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:31:\"burgee-parallax-bkg-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `smrc_postmeta` VALUES (2241,1095,'_wp_attached_file','2021/04/uss-asa-logos.png');
INSERT INTO `smrc_postmeta` VALUES (2242,1095,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:500;s:6:\"height\";i:110;s:4:\"file\";s:25:\"2021/04/uss-asa-logos.png\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"uss-asa-logos-320x70.png\";s:5:\"width\";i:320;s:6:\"height\";i:70;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"uss-asa-logos-160x110.png\";s:5:\"width\";i:160;s:6:\"height\";i:110;s:9:\"mime-type\";s:9:\"image/png\";}s:23:\"boldthemes_latest_posts\";a:4:{s:4:\"file\";s:25:\"uss-asa-logos-320x110.png\";s:5:\"width\";i:320;s:6:\"height\";i:110;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:25:\"uss-asa-logos-300x110.png\";s:5:\"width\";i:300;s:6:\"height\";i:110;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:25:\"uss-asa-logos-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:25:\"uss-asa-logos-300x110.png\";s:5:\"width\";i:300;s:6:\"height\";i:110;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:25:\"uss-asa-logos-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `smrc_postmeta` VALUES (2243,1095,'_edit_lock','1617794907:1');
INSERT INTO `smrc_postmeta` VALUES (2247,33,'_edit_lock','1617956880:1');
INSERT INTO `smrc_postmeta` VALUES (2248,325,'_edit_lock','1617838229:1');
INSERT INTO `smrc_postmeta` VALUES (2252,702,'_edit_lock','1617839091:1');
INSERT INTO `smrc_postmeta` VALUES (2253,804,'_edit_lock','1617955478:1');
INSERT INTO `smrc_postmeta` VALUES (2254,804,'_edit_last','1');
INSERT INTO `smrc_postmeta` VALUES (2255,804,'boldthemes_theme_animations','normal');
INSERT INTO `smrc_postmeta` VALUES (2256,1114,'_wp_attached_file','2021/04/salmon.jpg');
INSERT INTO `smrc_postmeta` VALUES (2257,1114,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:800;s:4:\"file\";s:18:\"2021/04/salmon.jpg\";s:5:\"sizes\";a:15:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"salmon-320x320.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"salmon-160x160.jpg\";s:5:\"width\";i:160;s:6:\"height\";i:160;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:18:\"salmon-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"boldthemes_grid\";a:4:{s:4:\"file\";s:18:\"salmon-540x540.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_11\";a:4:{s:4:\"file\";s:18:\"salmon-540x540.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_21\";a:4:{s:4:\"file\";s:18:\"salmon-800x540.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_12\";a:4:{s:4:\"file\";s:18:\"salmon-540x800.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_latest_posts\";a:4:{s:4:\"file\";s:18:\"salmon-320x240.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_grid_gallery\";a:4:{s:4:\"file\";s:18:\"salmon-540x405.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:18:\"salmon-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:18:\"salmon-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:18:\"salmon-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:18:\"salmon-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:18:\"salmon-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:18:\"salmon-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `smrc_postmeta` VALUES (2258,1115,'_wp_attached_file','2021/04/oktoberfest.jpg');
INSERT INTO `smrc_postmeta` VALUES (2259,1115,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:800;s:4:\"file\";s:23:\"2021/04/oktoberfest.jpg\";s:5:\"sizes\";a:15:{s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"oktoberfest-320x320.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"oktoberfest-160x160.jpg\";s:5:\"width\";i:160;s:6:\"height\";i:160;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:23:\"oktoberfest-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"boldthemes_grid\";a:4:{s:4:\"file\";s:23:\"oktoberfest-540x540.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_11\";a:4:{s:4:\"file\";s:23:\"oktoberfest-540x540.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_21\";a:4:{s:4:\"file\";s:23:\"oktoberfest-800x540.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_12\";a:4:{s:4:\"file\";s:23:\"oktoberfest-540x800.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_latest_posts\";a:4:{s:4:\"file\";s:23:\"oktoberfest-320x240.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_grid_gallery\";a:4:{s:4:\"file\";s:23:\"oktoberfest-540x405.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:23:\"oktoberfest-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:23:\"oktoberfest-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:23:\"oktoberfest-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:23:\"oktoberfest-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:23:\"oktoberfest-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:23:\"oktoberfest-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `smrc_postmeta` VALUES (2260,1116,'_wp_attached_file','2021/04/paddleboard.jpg');
INSERT INTO `smrc_postmeta` VALUES (2261,1116,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:800;s:4:\"file\";s:23:\"2021/04/paddleboard.jpg\";s:5:\"sizes\";a:15:{s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"paddleboard-320x320.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"paddleboard-160x160.jpg\";s:5:\"width\";i:160;s:6:\"height\";i:160;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:23:\"paddleboard-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"boldthemes_grid\";a:4:{s:4:\"file\";s:23:\"paddleboard-540x540.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_11\";a:4:{s:4:\"file\";s:23:\"paddleboard-540x540.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_21\";a:4:{s:4:\"file\";s:23:\"paddleboard-800x540.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_12\";a:4:{s:4:\"file\";s:23:\"paddleboard-540x800.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_latest_posts\";a:4:{s:4:\"file\";s:23:\"paddleboard-320x240.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_grid_gallery\";a:4:{s:4:\"file\";s:23:\"paddleboard-540x405.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:23:\"paddleboard-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:23:\"paddleboard-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:23:\"paddleboard-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:23:\"paddleboard-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:23:\"paddleboard-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:23:\"paddleboard-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `smrc_postmeta` VALUES (2262,1117,'_wp_attached_file','2021/04/education.jpg');
INSERT INTO `smrc_postmeta` VALUES (2263,1117,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:800;s:4:\"file\";s:21:\"2021/04/education.jpg\";s:5:\"sizes\";a:15:{s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"education-320x320.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"education-160x160.jpg\";s:5:\"width\";i:160;s:6:\"height\";i:160;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:21:\"education-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"boldthemes_grid\";a:4:{s:4:\"file\";s:21:\"education-540x540.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_11\";a:4:{s:4:\"file\";s:21:\"education-540x540.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_21\";a:4:{s:4:\"file\";s:21:\"education-800x540.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_12\";a:4:{s:4:\"file\";s:21:\"education-540x800.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_latest_posts\";a:4:{s:4:\"file\";s:21:\"education-320x240.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_grid_gallery\";a:4:{s:4:\"file\";s:21:\"education-540x405.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:21:\"education-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:21:\"education-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:21:\"education-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:21:\"education-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:21:\"education-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:21:\"education-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `smrc_postmeta` VALUES (2264,1127,'_wp_attached_file','2021/04/clubdining.jpg');
INSERT INTO `smrc_postmeta` VALUES (2265,1127,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:1000;s:4:\"file\";s:22:\"2021/04/clubdining.jpg\";s:5:\"sizes\";a:18:{s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"clubdining-320x200.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:23:\"clubdining-1200x750.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:750;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"clubdining-160x160.jpg\";s:5:\"width\";i:160;s:6:\"height\";i:160;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:22:\"clubdining-768x480.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:23:\"clubdining-1536x960.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:960;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"boldthemes_grid\";a:4:{s:4:\"file\";s:22:\"clubdining-540x338.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:338;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_11\";a:4:{s:4:\"file\";s:22:\"clubdining-540x540.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_22\";a:4:{s:4:\"file\";s:24:\"clubdining-1080x1000.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_21\";a:4:{s:4:\"file\";s:23:\"clubdining-1080x540.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_12\";a:4:{s:4:\"file\";s:23:\"clubdining-540x1000.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_latest_posts\";a:4:{s:4:\"file\";s:22:\"clubdining-320x240.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_grid_gallery\";a:4:{s:4:\"file\";s:22:\"clubdining-540x405.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:22:\"clubdining-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:22:\"clubdining-600x375.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:22:\"clubdining-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:22:\"clubdining-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:22:\"clubdining-600x375.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:22:\"clubdining-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `smrc_postmeta` VALUES (2266,1128,'_wp_attached_file','2021/04/receptiontable.jpg');
INSERT INTO `smrc_postmeta` VALUES (2267,1128,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:1000;s:4:\"file\";s:26:\"2021/04/receptiontable.jpg\";s:5:\"sizes\";a:18:{s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"receptiontable-320x200.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:27:\"receptiontable-1200x750.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:750;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"receptiontable-160x160.jpg\";s:5:\"width\";i:160;s:6:\"height\";i:160;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:26:\"receptiontable-768x480.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:27:\"receptiontable-1536x960.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:960;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"boldthemes_grid\";a:4:{s:4:\"file\";s:26:\"receptiontable-540x338.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:338;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_11\";a:4:{s:4:\"file\";s:26:\"receptiontable-540x540.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_22\";a:4:{s:4:\"file\";s:28:\"receptiontable-1080x1000.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_21\";a:4:{s:4:\"file\";s:27:\"receptiontable-1080x540.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_12\";a:4:{s:4:\"file\";s:27:\"receptiontable-540x1000.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_latest_posts\";a:4:{s:4:\"file\";s:26:\"receptiontable-320x240.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_grid_gallery\";a:4:{s:4:\"file\";s:26:\"receptiontable-540x405.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:26:\"receptiontable-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:26:\"receptiontable-600x375.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:26:\"receptiontable-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:26:\"receptiontable-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:26:\"receptiontable-600x375.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:26:\"receptiontable-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `smrc_postmeta` VALUES (2268,1129,'_wp_attached_file','2021/04/eventdinner.jpg');
INSERT INTO `smrc_postmeta` VALUES (2269,1129,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:1000;s:4:\"file\";s:23:\"2021/04/eventdinner.jpg\";s:5:\"sizes\";a:18:{s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"eventdinner-320x200.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:24:\"eventdinner-1200x750.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:750;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"eventdinner-160x160.jpg\";s:5:\"width\";i:160;s:6:\"height\";i:160;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:23:\"eventdinner-768x480.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:24:\"eventdinner-1536x960.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:960;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"boldthemes_grid\";a:4:{s:4:\"file\";s:23:\"eventdinner-540x338.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:338;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_11\";a:4:{s:4:\"file\";s:23:\"eventdinner-540x540.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_22\";a:4:{s:4:\"file\";s:25:\"eventdinner-1080x1000.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_21\";a:4:{s:4:\"file\";s:24:\"eventdinner-1080x540.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_12\";a:4:{s:4:\"file\";s:24:\"eventdinner-540x1000.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_latest_posts\";a:4:{s:4:\"file\";s:23:\"eventdinner-320x240.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_grid_gallery\";a:4:{s:4:\"file\";s:23:\"eventdinner-540x405.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:23:\"eventdinner-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:23:\"eventdinner-600x375.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:23:\"eventdinner-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:23:\"eventdinner-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:23:\"eventdinner-600x375.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:23:\"eventdinner-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `smrc_postmeta` VALUES (2270,266,'_edit_lock','1617872069:1');
INSERT INTO `smrc_postmeta` VALUES (2271,1132,'_wp_attached_file','2016/02/covidvirus.jpg');
INSERT INTO `smrc_postmeta` VALUES (2272,1132,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1080;s:6:\"height\";i:810;s:4:\"file\";s:22:\"2016/02/covidvirus.jpg\";s:5:\"sizes\";a:15:{s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"covidvirus-320x240.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"covidvirus-160x160.jpg\";s:5:\"width\";i:160;s:6:\"height\";i:160;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:22:\"covidvirus-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"boldthemes_grid\";a:4:{s:4:\"file\";s:22:\"covidvirus-540x405.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_11\";a:4:{s:4:\"file\";s:22:\"covidvirus-540x540.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_21\";a:4:{s:4:\"file\";s:23:\"covidvirus-1080x540.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_12\";a:4:{s:4:\"file\";s:22:\"covidvirus-540x810.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:810;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_latest_posts\";a:4:{s:4:\"file\";s:22:\"covidvirus-320x240.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_grid_gallery\";a:4:{s:4:\"file\";s:22:\"covidvirus-540x405.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:22:\"covidvirus-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:22:\"covidvirus-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:22:\"covidvirus-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:22:\"covidvirus-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:22:\"covidvirus-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:22:\"covidvirus-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `smrc_postmeta` VALUES (2273,266,'_edit_last','1');
INSERT INTO `smrc_postmeta` VALUES (2276,266,'_wp_old_slug','new-family-rooms');
INSERT INTO `smrc_postmeta` VALUES (2277,266,'_wp_old_date','2016-02-07');
INSERT INTO `smrc_postmeta` VALUES (2278,266,'boldthemes_theme_tile_format','11');
INSERT INTO `smrc_postmeta` VALUES (2282,1141,'_wp_attached_file','2016/02/spinnaker.jpg');
INSERT INTO `smrc_postmeta` VALUES (2283,1141,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1080;s:6:\"height\";i:810;s:4:\"file\";s:21:\"2016/02/spinnaker.jpg\";s:5:\"sizes\";a:15:{s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"spinnaker-320x240.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"spinnaker-160x160.jpg\";s:5:\"width\";i:160;s:6:\"height\";i:160;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:21:\"spinnaker-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"boldthemes_grid\";a:4:{s:4:\"file\";s:21:\"spinnaker-540x405.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_11\";a:4:{s:4:\"file\";s:21:\"spinnaker-540x540.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_21\";a:4:{s:4:\"file\";s:22:\"spinnaker-1080x540.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_12\";a:4:{s:4:\"file\";s:21:\"spinnaker-540x810.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:810;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_latest_posts\";a:4:{s:4:\"file\";s:21:\"spinnaker-320x240.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_grid_gallery\";a:4:{s:4:\"file\";s:21:\"spinnaker-540x405.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:21:\"spinnaker-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:21:\"spinnaker-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:21:\"spinnaker-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:21:\"spinnaker-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:21:\"spinnaker-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:21:\"spinnaker-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `smrc_postmeta` VALUES (2284,232,'_edit_last','1');
INSERT INTO `smrc_postmeta` VALUES (2286,232,'_wp_old_slug','main-pool-reopened');
INSERT INTO `smrc_postmeta` VALUES (2287,232,'_wp_old_date','2016-02-15');
INSERT INTO `smrc_postmeta` VALUES (2288,232,'boldthemes_theme_tile_format','11');
INSERT INTO `smrc_postmeta` VALUES (2289,1143,'_wp_attached_file','2016/02/adultdingy.jpg');
INSERT INTO `smrc_postmeta` VALUES (2290,1143,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1080;s:6:\"height\";i:810;s:4:\"file\";s:22:\"2016/02/adultdingy.jpg\";s:5:\"sizes\";a:15:{s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"adultdingy-320x240.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"adultdingy-160x160.jpg\";s:5:\"width\";i:160;s:6:\"height\";i:160;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:22:\"adultdingy-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"boldthemes_grid\";a:4:{s:4:\"file\";s:22:\"adultdingy-540x405.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_11\";a:4:{s:4:\"file\";s:22:\"adultdingy-540x540.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_21\";a:4:{s:4:\"file\";s:23:\"adultdingy-1080x540.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_12\";a:4:{s:4:\"file\";s:22:\"adultdingy-540x810.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:810;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_latest_posts\";a:4:{s:4:\"file\";s:22:\"adultdingy-320x240.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_grid_gallery\";a:4:{s:4:\"file\";s:22:\"adultdingy-540x405.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:22:\"adultdingy-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:22:\"adultdingy-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:22:\"adultdingy-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:22:\"adultdingy-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:22:\"adultdingy-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:22:\"adultdingy-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `smrc_postmeta` VALUES (2291,230,'_edit_last','1');
INSERT INTO `smrc_postmeta` VALUES (2293,230,'_wp_old_slug','lots-of-activities-planned');
INSERT INTO `smrc_postmeta` VALUES (2294,230,'_wp_old_date','2016-02-02');
INSERT INTO `smrc_postmeta` VALUES (2295,230,'boldthemes_theme_tile_format','11');
INSERT INTO `smrc_postmeta` VALUES (2298,1146,'_wp_attached_file','2021/04/slider-shieldsnc.jpg');
INSERT INTO `smrc_postmeta` VALUES (2299,1146,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2500;s:6:\"height\";i:1094;s:4:\"file\";s:28:\"2021/04/slider-shieldsnc.jpg\";s:5:\"sizes\";a:19:{s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"slider-shieldsnc-320x140.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:140;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:29:\"slider-shieldsnc-1200x525.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:525;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"slider-shieldsnc-160x160.jpg\";s:5:\"width\";i:160;s:6:\"height\";i:160;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:28:\"slider-shieldsnc-768x336.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:336;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:29:\"slider-shieldsnc-1536x672.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:672;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:29:\"slider-shieldsnc-2048x896.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:896;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"boldthemes_grid\";a:4:{s:4:\"file\";s:28:\"slider-shieldsnc-540x236.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:236;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_11\";a:4:{s:4:\"file\";s:28:\"slider-shieldsnc-540x540.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_22\";a:4:{s:4:\"file\";s:30:\"slider-shieldsnc-1080x1080.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:1080;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_21\";a:4:{s:4:\"file\";s:29:\"slider-shieldsnc-1080x540.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_12\";a:4:{s:4:\"file\";s:29:\"slider-shieldsnc-540x1080.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:1080;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_latest_posts\";a:4:{s:4:\"file\";s:28:\"slider-shieldsnc-320x240.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_grid_gallery\";a:4:{s:4:\"file\";s:28:\"slider-shieldsnc-540x405.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:28:\"slider-shieldsnc-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:28:\"slider-shieldsnc-600x263.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:263;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:28:\"slider-shieldsnc-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:28:\"slider-shieldsnc-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:28:\"slider-shieldsnc-600x263.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:263;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:28:\"slider-shieldsnc-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `smrc_postmeta` VALUES (2300,1148,'_wp_attached_file','2021/04/slider-phrf.jpg');
INSERT INTO `smrc_postmeta` VALUES (2301,1148,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2500;s:6:\"height\";i:1094;s:4:\"file\";s:23:\"2021/04/slider-phrf.jpg\";s:5:\"sizes\";a:19:{s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"slider-phrf-320x140.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:140;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:24:\"slider-phrf-1200x525.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:525;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"slider-phrf-160x160.jpg\";s:5:\"width\";i:160;s:6:\"height\";i:160;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:23:\"slider-phrf-768x336.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:336;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:24:\"slider-phrf-1536x672.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:672;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:24:\"slider-phrf-2048x896.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:896;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"boldthemes_grid\";a:4:{s:4:\"file\";s:23:\"slider-phrf-540x236.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:236;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_11\";a:4:{s:4:\"file\";s:23:\"slider-phrf-540x540.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_22\";a:4:{s:4:\"file\";s:25:\"slider-phrf-1080x1080.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:1080;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_21\";a:4:{s:4:\"file\";s:24:\"slider-phrf-1080x540.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_12\";a:4:{s:4:\"file\";s:24:\"slider-phrf-540x1080.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:1080;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_latest_posts\";a:4:{s:4:\"file\";s:23:\"slider-phrf-320x240.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_grid_gallery\";a:4:{s:4:\"file\";s:23:\"slider-phrf-540x405.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:23:\"slider-phrf-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:23:\"slider-phrf-600x263.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:263;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:23:\"slider-phrf-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:23:\"slider-phrf-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:23:\"slider-phrf-600x263.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:263;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:23:\"slider-phrf-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `smrc_postmeta` VALUES (2302,1149,'_wp_attached_file','2021/04/slider-santanas.jpg');
INSERT INTO `smrc_postmeta` VALUES (2303,1149,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2500;s:6:\"height\";i:1094;s:4:\"file\";s:27:\"2021/04/slider-santanas.jpg\";s:5:\"sizes\";a:19:{s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"slider-santanas-320x140.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:140;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:28:\"slider-santanas-1200x525.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:525;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"slider-santanas-160x160.jpg\";s:5:\"width\";i:160;s:6:\"height\";i:160;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:27:\"slider-santanas-768x336.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:336;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:28:\"slider-santanas-1536x672.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:672;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:28:\"slider-santanas-2048x896.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:896;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"boldthemes_grid\";a:4:{s:4:\"file\";s:27:\"slider-santanas-540x236.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:236;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_11\";a:4:{s:4:\"file\";s:27:\"slider-santanas-540x540.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_22\";a:4:{s:4:\"file\";s:29:\"slider-santanas-1080x1080.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:1080;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_21\";a:4:{s:4:\"file\";s:28:\"slider-santanas-1080x540.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_12\";a:4:{s:4:\"file\";s:28:\"slider-santanas-540x1080.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:1080;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_latest_posts\";a:4:{s:4:\"file\";s:27:\"slider-santanas-320x240.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_grid_gallery\";a:4:{s:4:\"file\";s:27:\"slider-santanas-540x405.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:27:\"slider-santanas-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:27:\"slider-santanas-600x263.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:263;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:27:\"slider-santanas-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:27:\"slider-santanas-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:27:\"slider-santanas-600x263.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:263;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:27:\"slider-santanas-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `smrc_postmeta` VALUES (2304,1150,'_wp_attached_file','2021/04/slider-shields.jpg');
INSERT INTO `smrc_postmeta` VALUES (2305,1150,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2500;s:6:\"height\";i:1094;s:4:\"file\";s:26:\"2021/04/slider-shields.jpg\";s:5:\"sizes\";a:19:{s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"slider-shields-320x140.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:140;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:27:\"slider-shields-1200x525.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:525;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"slider-shields-160x160.jpg\";s:5:\"width\";i:160;s:6:\"height\";i:160;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:26:\"slider-shields-768x336.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:336;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:27:\"slider-shields-1536x672.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:672;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:27:\"slider-shields-2048x896.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:896;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"boldthemes_grid\";a:4:{s:4:\"file\";s:26:\"slider-shields-540x236.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:236;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_11\";a:4:{s:4:\"file\";s:26:\"slider-shields-540x540.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_22\";a:4:{s:4:\"file\";s:28:\"slider-shields-1080x1080.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:1080;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_21\";a:4:{s:4:\"file\";s:27:\"slider-shields-1080x540.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_12\";a:4:{s:4:\"file\";s:27:\"slider-shields-540x1080.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:1080;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_latest_posts\";a:4:{s:4:\"file\";s:26:\"slider-shields-320x240.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_grid_gallery\";a:4:{s:4:\"file\";s:26:\"slider-shields-540x405.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:26:\"slider-shields-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:26:\"slider-shields-600x263.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:263;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:26:\"slider-shields-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:26:\"slider-shields-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:26:\"slider-shields-600x263.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:263;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:26:\"slider-shields-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `smrc_postmeta` VALUES (2306,1156,'_wp_attached_file','2021/04/slider-cnidarian.jpg');
INSERT INTO `smrc_postmeta` VALUES (2307,1156,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2500;s:6:\"height\";i:1094;s:4:\"file\";s:28:\"2021/04/slider-cnidarian.jpg\";s:5:\"sizes\";a:19:{s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"slider-cnidarian-320x140.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:140;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:29:\"slider-cnidarian-1200x525.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:525;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"slider-cnidarian-160x160.jpg\";s:5:\"width\";i:160;s:6:\"height\";i:160;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:28:\"slider-cnidarian-768x336.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:336;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:29:\"slider-cnidarian-1536x672.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:672;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:29:\"slider-cnidarian-2048x896.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:896;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"boldthemes_grid\";a:4:{s:4:\"file\";s:28:\"slider-cnidarian-540x236.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:236;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_11\";a:4:{s:4:\"file\";s:28:\"slider-cnidarian-540x540.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_22\";a:4:{s:4:\"file\";s:30:\"slider-cnidarian-1080x1080.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:1080;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_21\";a:4:{s:4:\"file\";s:29:\"slider-cnidarian-1080x540.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_12\";a:4:{s:4:\"file\";s:29:\"slider-cnidarian-540x1080.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:1080;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_latest_posts\";a:4:{s:4:\"file\";s:28:\"slider-cnidarian-320x240.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_grid_gallery\";a:4:{s:4:\"file\";s:28:\"slider-cnidarian-540x405.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:28:\"slider-cnidarian-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:28:\"slider-cnidarian-600x263.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:263;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:28:\"slider-cnidarian-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:28:\"slider-cnidarian-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:28:\"slider-cnidarian-600x263.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:263;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:28:\"slider-cnidarian-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `smrc_postmeta` VALUES (2308,1157,'_wp_attached_file','2021/04/slider-stillwater.jpg');
INSERT INTO `smrc_postmeta` VALUES (2309,1157,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2500;s:6:\"height\";i:1094;s:4:\"file\";s:29:\"2021/04/slider-stillwater.jpg\";s:5:\"sizes\";a:19:{s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"slider-stillwater-320x140.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:140;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:30:\"slider-stillwater-1200x525.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:525;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"slider-stillwater-160x160.jpg\";s:5:\"width\";i:160;s:6:\"height\";i:160;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:29:\"slider-stillwater-768x336.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:336;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:30:\"slider-stillwater-1536x672.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:672;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:30:\"slider-stillwater-2048x896.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:896;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"boldthemes_grid\";a:4:{s:4:\"file\";s:29:\"slider-stillwater-540x236.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:236;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_11\";a:4:{s:4:\"file\";s:29:\"slider-stillwater-540x540.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_22\";a:4:{s:4:\"file\";s:31:\"slider-stillwater-1080x1080.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:1080;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_21\";a:4:{s:4:\"file\";s:30:\"slider-stillwater-1080x540.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_12\";a:4:{s:4:\"file\";s:30:\"slider-stillwater-540x1080.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:1080;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_latest_posts\";a:4:{s:4:\"file\";s:29:\"slider-stillwater-320x240.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_grid_gallery\";a:4:{s:4:\"file\";s:29:\"slider-stillwater-540x405.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:29:\"slider-stillwater-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:29:\"slider-stillwater-600x263.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:263;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:29:\"slider-stillwater-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:29:\"slider-stillwater-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:29:\"slider-stillwater-600x263.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:263;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:29:\"slider-stillwater-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `smrc_postmeta` VALUES (2310,1161,'_wp_attached_file','2021/04/slider-fjs.jpg');
INSERT INTO `smrc_postmeta` VALUES (2311,1161,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2500;s:6:\"height\";i:1094;s:4:\"file\";s:22:\"2021/04/slider-fjs.jpg\";s:5:\"sizes\";a:19:{s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"slider-fjs-320x140.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:140;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:23:\"slider-fjs-1200x525.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:525;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"slider-fjs-160x160.jpg\";s:5:\"width\";i:160;s:6:\"height\";i:160;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:22:\"slider-fjs-768x336.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:336;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:23:\"slider-fjs-1536x672.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:672;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:23:\"slider-fjs-2048x896.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:896;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"boldthemes_grid\";a:4:{s:4:\"file\";s:22:\"slider-fjs-540x236.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:236;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_11\";a:4:{s:4:\"file\";s:22:\"slider-fjs-540x540.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_22\";a:4:{s:4:\"file\";s:24:\"slider-fjs-1080x1080.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:1080;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_21\";a:4:{s:4:\"file\";s:23:\"slider-fjs-1080x540.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_12\";a:4:{s:4:\"file\";s:23:\"slider-fjs-540x1080.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:1080;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_latest_posts\";a:4:{s:4:\"file\";s:22:\"slider-fjs-320x240.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_grid_gallery\";a:4:{s:4:\"file\";s:22:\"slider-fjs-540x405.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:22:\"slider-fjs-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:22:\"slider-fjs-600x263.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:263;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:22:\"slider-fjs-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:22:\"slider-fjs-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:22:\"slider-fjs-600x263.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:263;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:22:\"slider-fjs-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `smrc_postmeta` VALUES (2312,1162,'_wp_attached_file','2021/04/slider-loverspoint.jpg');
INSERT INTO `smrc_postmeta` VALUES (2313,1162,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2500;s:6:\"height\";i:1094;s:4:\"file\";s:30:\"2021/04/slider-loverspoint.jpg\";s:5:\"sizes\";a:19:{s:6:\"medium\";a:4:{s:4:\"file\";s:30:\"slider-loverspoint-320x140.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:140;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:31:\"slider-loverspoint-1200x525.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:525;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"slider-loverspoint-160x160.jpg\";s:5:\"width\";i:160;s:6:\"height\";i:160;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:30:\"slider-loverspoint-768x336.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:336;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:31:\"slider-loverspoint-1536x672.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:672;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:31:\"slider-loverspoint-2048x896.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:896;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"boldthemes_grid\";a:4:{s:4:\"file\";s:30:\"slider-loverspoint-540x236.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:236;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_11\";a:4:{s:4:\"file\";s:30:\"slider-loverspoint-540x540.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_22\";a:4:{s:4:\"file\";s:32:\"slider-loverspoint-1080x1080.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:1080;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_21\";a:4:{s:4:\"file\";s:31:\"slider-loverspoint-1080x540.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_12\";a:4:{s:4:\"file\";s:31:\"slider-loverspoint-540x1080.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:1080;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_latest_posts\";a:4:{s:4:\"file\";s:30:\"slider-loverspoint-320x240.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_grid_gallery\";a:4:{s:4:\"file\";s:30:\"slider-loverspoint-540x405.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:30:\"slider-loverspoint-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:30:\"slider-loverspoint-600x263.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:263;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:30:\"slider-loverspoint-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:30:\"slider-loverspoint-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:30:\"slider-loverspoint-600x263.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:263;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:30:\"slider-loverspoint-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `smrc_postmeta` VALUES (2314,1163,'_wp_attached_file','2021/04/slider-luckyduckpg.jpg');
INSERT INTO `smrc_postmeta` VALUES (2315,1163,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2500;s:6:\"height\";i:1094;s:4:\"file\";s:30:\"2021/04/slider-luckyduckpg.jpg\";s:5:\"sizes\";a:19:{s:6:\"medium\";a:4:{s:4:\"file\";s:30:\"slider-luckyduckpg-320x140.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:140;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:31:\"slider-luckyduckpg-1200x525.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:525;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"slider-luckyduckpg-160x160.jpg\";s:5:\"width\";i:160;s:6:\"height\";i:160;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:30:\"slider-luckyduckpg-768x336.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:336;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:31:\"slider-luckyduckpg-1536x672.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:672;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:31:\"slider-luckyduckpg-2048x896.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:896;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"boldthemes_grid\";a:4:{s:4:\"file\";s:30:\"slider-luckyduckpg-540x236.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:236;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_11\";a:4:{s:4:\"file\";s:30:\"slider-luckyduckpg-540x540.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_22\";a:4:{s:4:\"file\";s:32:\"slider-luckyduckpg-1080x1080.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:1080;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_21\";a:4:{s:4:\"file\";s:31:\"slider-luckyduckpg-1080x540.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_12\";a:4:{s:4:\"file\";s:31:\"slider-luckyduckpg-540x1080.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:1080;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_latest_posts\";a:4:{s:4:\"file\";s:30:\"slider-luckyduckpg-320x240.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_grid_gallery\";a:4:{s:4:\"file\";s:30:\"slider-luckyduckpg-540x405.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:30:\"slider-luckyduckpg-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:30:\"slider-luckyduckpg-600x263.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:263;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:30:\"slider-luckyduckpg-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:30:\"slider-luckyduckpg-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:30:\"slider-luckyduckpg-600x263.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:263;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:30:\"slider-luckyduckpg-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `smrc_postmeta` VALUES (2325,1170,'_menu_item_type','custom');
INSERT INTO `smrc_postmeta` VALUES (2326,1170,'_menu_item_menu_item_parent','1213');
INSERT INTO `smrc_postmeta` VALUES (2327,1170,'_menu_item_object_id','1170');
INSERT INTO `smrc_postmeta` VALUES (2328,1170,'_menu_item_object','custom');
INSERT INTO `smrc_postmeta` VALUES (2329,1170,'_menu_item_target','');
INSERT INTO `smrc_postmeta` VALUES (2330,1170,'_menu_item_classes','a:1:{i:0;s:0:\"\";}');
INSERT INTO `smrc_postmeta` VALUES (2331,1170,'_menu_item_xfn','');
INSERT INTO `smrc_postmeta` VALUES (2332,1170,'_menu_item_url','http://mpycdev.theomggroup.com/#');
INSERT INTO `smrc_postmeta` VALUES (2333,1171,'_menu_item_type','custom');
INSERT INTO `smrc_postmeta` VALUES (2334,1171,'_menu_item_menu_item_parent','1213');
INSERT INTO `smrc_postmeta` VALUES (2335,1171,'_menu_item_object_id','1171');
INSERT INTO `smrc_postmeta` VALUES (2336,1171,'_menu_item_object','custom');
INSERT INTO `smrc_postmeta` VALUES (2337,1171,'_menu_item_target','');
INSERT INTO `smrc_postmeta` VALUES (2338,1171,'_menu_item_classes','a:1:{i:0;s:0:\"\";}');
INSERT INTO `smrc_postmeta` VALUES (2339,1171,'_menu_item_xfn','');
INSERT INTO `smrc_postmeta` VALUES (2340,1171,'_menu_item_url','http://mpycdev.theomggroup.com/#');
INSERT INTO `smrc_postmeta` VALUES (2341,1172,'_menu_item_type','custom');
INSERT INTO `smrc_postmeta` VALUES (2342,1172,'_menu_item_menu_item_parent','1213');
INSERT INTO `smrc_postmeta` VALUES (2343,1172,'_menu_item_object_id','1172');
INSERT INTO `smrc_postmeta` VALUES (2344,1172,'_menu_item_object','custom');
INSERT INTO `smrc_postmeta` VALUES (2345,1172,'_menu_item_target','');
INSERT INTO `smrc_postmeta` VALUES (2346,1172,'_menu_item_classes','a:1:{i:0;s:0:\"\";}');
INSERT INTO `smrc_postmeta` VALUES (2347,1172,'_menu_item_xfn','');
INSERT INTO `smrc_postmeta` VALUES (2348,1172,'_menu_item_url','http://mpycdev.theomggroup.com/#');
INSERT INTO `smrc_postmeta` VALUES (2357,1174,'_menu_item_type','custom');
INSERT INTO `smrc_postmeta` VALUES (2358,1174,'_menu_item_menu_item_parent','1225');
INSERT INTO `smrc_postmeta` VALUES (2359,1174,'_menu_item_object_id','1174');
INSERT INTO `smrc_postmeta` VALUES (2360,1174,'_menu_item_object','custom');
INSERT INTO `smrc_postmeta` VALUES (2361,1174,'_menu_item_target','');
INSERT INTO `smrc_postmeta` VALUES (2362,1174,'_menu_item_classes','a:1:{i:0;s:0:\"\";}');
INSERT INTO `smrc_postmeta` VALUES (2363,1174,'_menu_item_xfn','');
INSERT INTO `smrc_postmeta` VALUES (2364,1174,'_menu_item_url','https://www.regattanetwork.com/clubmgmt/applet_club_events.php?CLUB_ID=185');
INSERT INTO `smrc_postmeta` VALUES (2365,1175,'_menu_item_type','custom');
INSERT INTO `smrc_postmeta` VALUES (2366,1175,'_menu_item_menu_item_parent','1225');
INSERT INTO `smrc_postmeta` VALUES (2367,1175,'_menu_item_object_id','1175');
INSERT INTO `smrc_postmeta` VALUES (2368,1175,'_menu_item_object','custom');
INSERT INTO `smrc_postmeta` VALUES (2369,1175,'_menu_item_target','');
INSERT INTO `smrc_postmeta` VALUES (2370,1175,'_menu_item_classes','a:1:{i:0;s:0:\"\";}');
INSERT INTO `smrc_postmeta` VALUES (2371,1175,'_menu_item_xfn','');
INSERT INTO `smrc_postmeta` VALUES (2372,1175,'_menu_item_url','http://mpycdev.theomggroup.com/#');
INSERT INTO `smrc_postmeta` VALUES (2373,1176,'_menu_item_type','custom');
INSERT INTO `smrc_postmeta` VALUES (2374,1176,'_menu_item_menu_item_parent','1225');
INSERT INTO `smrc_postmeta` VALUES (2375,1176,'_menu_item_object_id','1176');
INSERT INTO `smrc_postmeta` VALUES (2376,1176,'_menu_item_object','custom');
INSERT INTO `smrc_postmeta` VALUES (2377,1176,'_menu_item_target','');
INSERT INTO `smrc_postmeta` VALUES (2378,1176,'_menu_item_classes','a:1:{i:0;s:0:\"\";}');
INSERT INTO `smrc_postmeta` VALUES (2379,1176,'_menu_item_xfn','');
INSERT INTO `smrc_postmeta` VALUES (2380,1176,'_menu_item_url','http://mpycdev.theomggroup.com/#');
INSERT INTO `smrc_postmeta` VALUES (2389,1178,'_menu_item_type','custom');
INSERT INTO `smrc_postmeta` VALUES (2390,1178,'_menu_item_menu_item_parent','1237');
INSERT INTO `smrc_postmeta` VALUES (2391,1178,'_menu_item_object_id','1178');
INSERT INTO `smrc_postmeta` VALUES (2392,1178,'_menu_item_object','custom');
INSERT INTO `smrc_postmeta` VALUES (2393,1178,'_menu_item_target','');
INSERT INTO `smrc_postmeta` VALUES (2394,1178,'_menu_item_classes','a:1:{i:0;s:0:\"\";}');
INSERT INTO `smrc_postmeta` VALUES (2395,1178,'_menu_item_xfn','');
INSERT INTO `smrc_postmeta` VALUES (2396,1178,'_menu_item_url','http://mpycdev.theomggroup.com/#');
INSERT INTO `smrc_postmeta` VALUES (2397,1179,'_menu_item_type','custom');
INSERT INTO `smrc_postmeta` VALUES (2398,1179,'_menu_item_menu_item_parent','1237');
INSERT INTO `smrc_postmeta` VALUES (2399,1179,'_menu_item_object_id','1179');
INSERT INTO `smrc_postmeta` VALUES (2400,1179,'_menu_item_object','custom');
INSERT INTO `smrc_postmeta` VALUES (2401,1179,'_menu_item_target','');
INSERT INTO `smrc_postmeta` VALUES (2402,1179,'_menu_item_classes','a:1:{i:0;s:0:\"\";}');
INSERT INTO `smrc_postmeta` VALUES (2403,1179,'_menu_item_xfn','');
INSERT INTO `smrc_postmeta` VALUES (2404,1179,'_menu_item_url','http://mpycdev.theomggroup.com/#');
INSERT INTO `smrc_postmeta` VALUES (2405,1180,'_menu_item_type','custom');
INSERT INTO `smrc_postmeta` VALUES (2406,1180,'_menu_item_menu_item_parent','1237');
INSERT INTO `smrc_postmeta` VALUES (2407,1180,'_menu_item_object_id','1180');
INSERT INTO `smrc_postmeta` VALUES (2408,1180,'_menu_item_object','custom');
INSERT INTO `smrc_postmeta` VALUES (2409,1180,'_menu_item_target','');
INSERT INTO `smrc_postmeta` VALUES (2410,1180,'_menu_item_classes','a:1:{i:0;s:0:\"\";}');
INSERT INTO `smrc_postmeta` VALUES (2411,1180,'_menu_item_xfn','');
INSERT INTO `smrc_postmeta` VALUES (2412,1180,'_menu_item_url','http://mpycdev.theomggroup.com/#');
INSERT INTO `smrc_postmeta` VALUES (2413,1181,'_menu_item_type','custom');
INSERT INTO `smrc_postmeta` VALUES (2414,1181,'_menu_item_menu_item_parent','1237');
INSERT INTO `smrc_postmeta` VALUES (2415,1181,'_menu_item_object_id','1181');
INSERT INTO `smrc_postmeta` VALUES (2416,1181,'_menu_item_object','custom');
INSERT INTO `smrc_postmeta` VALUES (2417,1181,'_menu_item_target','');
INSERT INTO `smrc_postmeta` VALUES (2418,1181,'_menu_item_classes','a:1:{i:0;s:0:\"\";}');
INSERT INTO `smrc_postmeta` VALUES (2419,1181,'_menu_item_xfn','');
INSERT INTO `smrc_postmeta` VALUES (2420,1181,'_menu_item_url','http://mpycdev.theomggroup.com/#');
INSERT INTO `smrc_postmeta` VALUES (2421,1182,'_menu_item_type','custom');
INSERT INTO `smrc_postmeta` VALUES (2422,1182,'_menu_item_menu_item_parent','0');
INSERT INTO `smrc_postmeta` VALUES (2423,1182,'_menu_item_object_id','1182');
INSERT INTO `smrc_postmeta` VALUES (2424,1182,'_menu_item_object','custom');
INSERT INTO `smrc_postmeta` VALUES (2425,1182,'_menu_item_target','');
INSERT INTO `smrc_postmeta` VALUES (2426,1182,'_menu_item_classes','a:1:{i:0;s:0:\"\";}');
INSERT INTO `smrc_postmeta` VALUES (2427,1182,'_menu_item_xfn','');
INSERT INTO `smrc_postmeta` VALUES (2428,1182,'_menu_item_url','http://mpycdev.theomggroup.com/#');
INSERT INTO `smrc_postmeta` VALUES (2429,1183,'_menu_item_type','custom');
INSERT INTO `smrc_postmeta` VALUES (2430,1183,'_menu_item_menu_item_parent','1182');
INSERT INTO `smrc_postmeta` VALUES (2431,1183,'_menu_item_object_id','1183');
INSERT INTO `smrc_postmeta` VALUES (2432,1183,'_menu_item_object','custom');
INSERT INTO `smrc_postmeta` VALUES (2433,1183,'_menu_item_target','');
INSERT INTO `smrc_postmeta` VALUES (2434,1183,'_menu_item_classes','a:1:{i:0;s:0:\"\";}');
INSERT INTO `smrc_postmeta` VALUES (2435,1183,'_menu_item_xfn','');
INSERT INTO `smrc_postmeta` VALUES (2436,1183,'_menu_item_url','http://mpycdev.theomggroup.com/#');
INSERT INTO `smrc_postmeta` VALUES (2453,1186,'_menu_item_type','custom');
INSERT INTO `smrc_postmeta` VALUES (2454,1186,'_menu_item_menu_item_parent','0');
INSERT INTO `smrc_postmeta` VALUES (2455,1186,'_menu_item_object_id','1186');
INSERT INTO `smrc_postmeta` VALUES (2456,1186,'_menu_item_object','custom');
INSERT INTO `smrc_postmeta` VALUES (2457,1186,'_menu_item_target','');
INSERT INTO `smrc_postmeta` VALUES (2458,1186,'_menu_item_classes','a:1:{i:0;s:0:\"\";}');
INSERT INTO `smrc_postmeta` VALUES (2459,1186,'_menu_item_xfn','');
INSERT INTO `smrc_postmeta` VALUES (2460,1186,'_menu_item_url','http://mpycdev.theomggroup.com/#');
INSERT INTO `smrc_postmeta` VALUES (2461,1187,'_menu_item_type','custom');
INSERT INTO `smrc_postmeta` VALUES (2462,1187,'_menu_item_menu_item_parent','1186');
INSERT INTO `smrc_postmeta` VALUES (2463,1187,'_menu_item_object_id','1187');
INSERT INTO `smrc_postmeta` VALUES (2464,1187,'_menu_item_object','custom');
INSERT INTO `smrc_postmeta` VALUES (2465,1187,'_menu_item_target','');
INSERT INTO `smrc_postmeta` VALUES (2466,1187,'_menu_item_classes','a:1:{i:0;s:0:\"\";}');
INSERT INTO `smrc_postmeta` VALUES (2467,1187,'_menu_item_xfn','');
INSERT INTO `smrc_postmeta` VALUES (2468,1187,'_menu_item_url','http://mpycdev.theomggroup.com/#');
INSERT INTO `smrc_postmeta` VALUES (2469,1188,'_menu_item_type','custom');
INSERT INTO `smrc_postmeta` VALUES (2470,1188,'_menu_item_menu_item_parent','1186');
INSERT INTO `smrc_postmeta` VALUES (2471,1188,'_menu_item_object_id','1188');
INSERT INTO `smrc_postmeta` VALUES (2472,1188,'_menu_item_object','custom');
INSERT INTO `smrc_postmeta` VALUES (2473,1188,'_menu_item_target','');
INSERT INTO `smrc_postmeta` VALUES (2474,1188,'_menu_item_classes','a:1:{i:0;s:0:\"\";}');
INSERT INTO `smrc_postmeta` VALUES (2475,1188,'_menu_item_xfn','');
INSERT INTO `smrc_postmeta` VALUES (2476,1188,'_menu_item_url','http://mpycdev.theomggroup.com/#');
INSERT INTO `smrc_postmeta` VALUES (2477,1189,'_menu_item_type','custom');
INSERT INTO `smrc_postmeta` VALUES (2478,1189,'_menu_item_menu_item_parent','1186');
INSERT INTO `smrc_postmeta` VALUES (2479,1189,'_menu_item_object_id','1189');
INSERT INTO `smrc_postmeta` VALUES (2480,1189,'_menu_item_object','custom');
INSERT INTO `smrc_postmeta` VALUES (2481,1189,'_menu_item_target','');
INSERT INTO `smrc_postmeta` VALUES (2482,1189,'_menu_item_classes','a:1:{i:0;s:0:\"\";}');
INSERT INTO `smrc_postmeta` VALUES (2483,1189,'_menu_item_xfn','');
INSERT INTO `smrc_postmeta` VALUES (2484,1189,'_menu_item_url','http://mpycdev.theomggroup.com/#');
INSERT INTO `smrc_postmeta` VALUES (2488,1191,'_menu_item_type','custom');
INSERT INTO `smrc_postmeta` VALUES (2489,1191,'_menu_item_menu_item_parent','1225');
INSERT INTO `smrc_postmeta` VALUES (2490,1191,'_menu_item_object_id','1191');
INSERT INTO `smrc_postmeta` VALUES (2491,1191,'_menu_item_object','custom');
INSERT INTO `smrc_postmeta` VALUES (2492,1191,'_menu_item_target','');
INSERT INTO `smrc_postmeta` VALUES (2493,1191,'_menu_item_classes','a:1:{i:0;s:0:\"\";}');
INSERT INTO `smrc_postmeta` VALUES (2494,1191,'_menu_item_xfn','');
INSERT INTO `smrc_postmeta` VALUES (2495,1191,'_menu_item_url','http://mpycdev.theomggroup.com/#');
INSERT INTO `smrc_postmeta` VALUES (2506,921,'_edit_lock','1617942681:1');
INSERT INTO `smrc_postmeta` VALUES (2507,634,'_edit_lock','1617942740:1');
INSERT INTO `smrc_postmeta` VALUES (2513,33,'_edit_last','1');
INSERT INTO `smrc_postmeta` VALUES (2514,33,'boldthemes_theme_animations','normal');
INSERT INTO `smrc_postmeta` VALUES (2519,1210,'_wp_attached_file','2021/04/smallboats.jpg');
INSERT INTO `smrc_postmeta` VALUES (2520,1210,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2500;s:6:\"height\";i:1094;s:4:\"file\";s:22:\"2021/04/smallboats.jpg\";s:5:\"sizes\";a:19:{s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"smallboats-320x140.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:140;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:23:\"smallboats-1200x525.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:525;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"smallboats-160x160.jpg\";s:5:\"width\";i:160;s:6:\"height\";i:160;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:22:\"smallboats-768x336.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:336;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:23:\"smallboats-1536x672.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:672;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:23:\"smallboats-2048x896.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:896;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"boldthemes_grid\";a:4:{s:4:\"file\";s:22:\"smallboats-540x236.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:236;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_11\";a:4:{s:4:\"file\";s:22:\"smallboats-540x540.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_22\";a:4:{s:4:\"file\";s:24:\"smallboats-1080x1080.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:1080;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_21\";a:4:{s:4:\"file\";s:23:\"smallboats-1080x540.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_12\";a:4:{s:4:\"file\";s:23:\"smallboats-540x1080.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:1080;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_latest_posts\";a:4:{s:4:\"file\";s:22:\"smallboats-320x240.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_grid_gallery\";a:4:{s:4:\"file\";s:22:\"smallboats-540x405.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:22:\"smallboats-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:22:\"smallboats-600x263.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:263;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:22:\"smallboats-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:22:\"smallboats-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:22:\"smallboats-600x263.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:263;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:22:\"smallboats-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `smrc_postmeta` VALUES (2521,1213,'_menu_item_type','post_type');
INSERT INTO `smrc_postmeta` VALUES (2522,1213,'_menu_item_menu_item_parent','0');
INSERT INTO `smrc_postmeta` VALUES (2523,1213,'_menu_item_object_id','33');
INSERT INTO `smrc_postmeta` VALUES (2524,1213,'_menu_item_object','page');
INSERT INTO `smrc_postmeta` VALUES (2525,1213,'_menu_item_target','');
INSERT INTO `smrc_postmeta` VALUES (2526,1213,'_menu_item_classes','a:1:{i:0;s:0:\"\";}');
INSERT INTO `smrc_postmeta` VALUES (2527,1213,'_menu_item_xfn','');
INSERT INTO `smrc_postmeta` VALUES (2528,1213,'_menu_item_url','');
INSERT INTO `smrc_postmeta` VALUES (2531,1216,'_menu_item_type','custom');
INSERT INTO `smrc_postmeta` VALUES (2532,1216,'_menu_item_menu_item_parent','0');
INSERT INTO `smrc_postmeta` VALUES (2533,1216,'_menu_item_object_id','1216');
INSERT INTO `smrc_postmeta` VALUES (2534,1216,'_menu_item_object','custom');
INSERT INTO `smrc_postmeta` VALUES (2535,1216,'_menu_item_target','');
INSERT INTO `smrc_postmeta` VALUES (2536,1216,'_menu_item_classes','a:1:{i:0;s:0:\"\";}');
INSERT INTO `smrc_postmeta` VALUES (2537,1216,'_menu_item_xfn','');
INSERT INTO `smrc_postmeta` VALUES (2538,1216,'_menu_item_url','#');
INSERT INTO `smrc_postmeta` VALUES (2539,1217,'_menu_item_type','custom');
INSERT INTO `smrc_postmeta` VALUES (2540,1217,'_menu_item_menu_item_parent','0');
INSERT INTO `smrc_postmeta` VALUES (2541,1217,'_menu_item_object_id','1217');
INSERT INTO `smrc_postmeta` VALUES (2542,1217,'_menu_item_object','custom');
INSERT INTO `smrc_postmeta` VALUES (2543,1217,'_menu_item_target','');
INSERT INTO `smrc_postmeta` VALUES (2544,1217,'_menu_item_classes','a:1:{i:0;s:0:\"\";}');
INSERT INTO `smrc_postmeta` VALUES (2545,1217,'_menu_item_xfn','');
INSERT INTO `smrc_postmeta` VALUES (2546,1217,'_menu_item_url','#');
INSERT INTO `smrc_postmeta` VALUES (2547,1218,'_menu_item_type','custom');
INSERT INTO `smrc_postmeta` VALUES (2548,1218,'_menu_item_menu_item_parent','0');
INSERT INTO `smrc_postmeta` VALUES (2549,1218,'_menu_item_object_id','1218');
INSERT INTO `smrc_postmeta` VALUES (2550,1218,'_menu_item_object','custom');
INSERT INTO `smrc_postmeta` VALUES (2551,1218,'_menu_item_target','');
INSERT INTO `smrc_postmeta` VALUES (2552,1218,'_menu_item_classes','a:1:{i:0;s:0:\"\";}');
INSERT INTO `smrc_postmeta` VALUES (2553,1218,'_menu_item_xfn','');
INSERT INTO `smrc_postmeta` VALUES (2554,1218,'_menu_item_url','#');
INSERT INTO `smrc_postmeta` VALUES (2555,1219,'_menu_item_type','custom');
INSERT INTO `smrc_postmeta` VALUES (2556,1219,'_menu_item_menu_item_parent','0');
INSERT INTO `smrc_postmeta` VALUES (2557,1219,'_menu_item_object_id','1219');
INSERT INTO `smrc_postmeta` VALUES (2558,1219,'_menu_item_object','custom');
INSERT INTO `smrc_postmeta` VALUES (2559,1219,'_menu_item_target','');
INSERT INTO `smrc_postmeta` VALUES (2560,1219,'_menu_item_classes','a:1:{i:0;s:0:\"\";}');
INSERT INTO `smrc_postmeta` VALUES (2561,1219,'_menu_item_xfn','');
INSERT INTO `smrc_postmeta` VALUES (2562,1219,'_menu_item_url','#');
INSERT INTO `smrc_postmeta` VALUES (2565,1220,'_edit_last','1');
INSERT INTO `smrc_postmeta` VALUES (2566,1220,'boldthemes_theme_animations','normal');
INSERT INTO `smrc_postmeta` VALUES (2567,1220,'_edit_lock','1617947675:1');
INSERT INTO `smrc_postmeta` VALUES (2576,1225,'_menu_item_type','post_type');
INSERT INTO `smrc_postmeta` VALUES (2577,1225,'_menu_item_menu_item_parent','0');
INSERT INTO `smrc_postmeta` VALUES (2578,1225,'_menu_item_object_id','1220');
INSERT INTO `smrc_postmeta` VALUES (2579,1225,'_menu_item_object','page');
INSERT INTO `smrc_postmeta` VALUES (2580,1225,'_menu_item_target','');
INSERT INTO `smrc_postmeta` VALUES (2581,1225,'_menu_item_classes','a:1:{i:0;s:0:\"\";}');
INSERT INTO `smrc_postmeta` VALUES (2582,1225,'_menu_item_xfn','');
INSERT INTO `smrc_postmeta` VALUES (2583,1225,'_menu_item_url','');
INSERT INTO `smrc_postmeta` VALUES (2586,17,'_edit_lock','1617955357:1');
INSERT INTO `smrc_postmeta` VALUES (2587,17,'_edit_last','1');
INSERT INTO `smrc_postmeta` VALUES (2588,17,'boldthemes_theme_animations','normal');
INSERT INTO `smrc_postmeta` VALUES (2589,773,'_edit_lock','1617955403:1');
INSERT INTO `smrc_postmeta` VALUES (2592,1235,'_edit_last','1');
INSERT INTO `smrc_postmeta` VALUES (2593,1235,'_edit_lock','1617955983:1');
INSERT INTO `smrc_postmeta` VALUES (2594,1236,'_edit_last','1');
INSERT INTO `smrc_postmeta` VALUES (2595,1236,'_edit_lock','1617957093:1');
INSERT INTO `smrc_postmeta` VALUES (2596,1237,'_menu_item_type','post_type');
INSERT INTO `smrc_postmeta` VALUES (2597,1237,'_menu_item_menu_item_parent','0');
INSERT INTO `smrc_postmeta` VALUES (2598,1237,'_menu_item_object_id','1236');
INSERT INTO `smrc_postmeta` VALUES (2599,1237,'_menu_item_object','page');
INSERT INTO `smrc_postmeta` VALUES (2600,1237,'_menu_item_target','');
INSERT INTO `smrc_postmeta` VALUES (2601,1237,'_menu_item_classes','a:1:{i:0;s:0:\"\";}');
INSERT INTO `smrc_postmeta` VALUES (2602,1237,'_menu_item_xfn','');
INSERT INTO `smrc_postmeta` VALUES (2603,1237,'_menu_item_url','');
INSERT INTO `smrc_postmeta` VALUES (2604,1236,'boldthemes_theme_animations','normal');
INSERT INTO `smrc_postmeta` VALUES (2607,1240,'_wp_attached_file','2021/03/luckyduck.jpg');
INSERT INTO `smrc_postmeta` VALUES (2608,1240,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:335;s:4:\"file\";s:21:\"2021/03/luckyduck.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"luckyduck-320x168.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:168;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"luckyduck-160x160.jpg\";s:5:\"width\";i:160;s:6:\"height\";i:160;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"boldthemes_grid\";a:4:{s:4:\"file\";s:21:\"luckyduck-540x283.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:283;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_11\";a:4:{s:4:\"file\";s:21:\"luckyduck-540x335.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:335;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"boldthemes_grid_12\";a:4:{s:4:\"file\";s:21:\"luckyduck-540x335.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:335;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_latest_posts\";a:4:{s:4:\"file\";s:21:\"luckyduck-320x240.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"boldthemes_grid_gallery\";a:4:{s:4:\"file\";s:21:\"luckyduck-540x335.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:335;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:21:\"luckyduck-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:21:\"luckyduck-600x314.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:314;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:21:\"luckyduck-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:21:\"luckyduck-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:21:\"luckyduck-600x314.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:314;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:21:\"luckyduck-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
--
-- Table structure for table `smrc_posts`
--
DROP TABLE IF EXISTS `smrc_posts`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `smrc_posts` (
`ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`post_author` bigint(20) unsigned NOT NULL DEFAULT '0',
`post_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`post_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`post_content` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
`post_title` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
`post_excerpt` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
`post_status` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'publish',
`comment_status` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'open',
`ping_status` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'open',
`post_password` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`post_name` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`to_ping` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
`pinged` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
`post_modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`post_modified_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`post_content_filtered` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
`post_parent` bigint(20) unsigned NOT NULL DEFAULT '0',
`guid` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`menu_order` int(11) NOT NULL DEFAULT '0',
`post_type` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'post',
`post_mime_type` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`comment_count` bigint(20) NOT NULL DEFAULT '0',
PRIMARY KEY (`ID`),
KEY `post_name` (`post_name`(191)),
KEY `type_status_date` (`post_type`,`post_status`,`post_date`,`ID`),
KEY `post_parent` (`post_parent`),
KEY `post_author` (`post_author`)
) ENGINE=InnoDB AUTO_INCREMENT=1245 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `smrc_posts`
--
INSERT INTO `smrc_posts` VALUES (2,1,'2016-02-22 12:40:41','2016-02-22 12:40:41','\n [bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/2\"][bt_header superheadline=\"TOP BOTTOM\" headline=\"Small headline with dash\" headline_size=\"small\" dash=\"top bottom\" subheadline=\"If you chose to stay with us you will enjoy modern home comforts in a traditional setting. Whether you are looking for a short weekend break or a longer holiday, we offer a range of packages that we think cater for all.\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"TOP\" headline=\"Small headline\" headline_size=\"small\" dash=\"top\" subheadline=\"If you chose to stay with us you will enjoy modern home comforts in a traditional setting. Whether you are looking for a short weekend break or a longer holiday, we offer a range of packages that we think cater for all.\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"BOTTOM\" headline=\"Small headline\" headline_size=\"small\" dash=\"bottom\" subheadline=\"If you chose to stay with us you will enjoy modern home comforts in a traditional setting. Whether you are looking for a short weekend break or a longer holiday, we offer a range of packages that we think cater for all.\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"NO DASH\" headline=\"Small headline\" headline_size=\"small\" dash=\"no\" subheadline=\"If you chose to stay with us you will enjoy modern home comforts in a traditional setting. Whether you are looking for a short weekend break or a longer holiday, we offer a range of packages that we think cater for all.\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/2\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"TOP BOTTOM\" headline=\"Medium headline with dash\" headline_size=\"medium\" dash=\"top bottom\" subheadline=\"If you chose to stay with us you will enjoy modern home comforts in a traditional setting. Whether you are looking for a short weekend break or a longer holiday, we offer a range of packages that we think cater for all.\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"TOP\" headline=\"Medium headline\" headline_size=\"medium\" dash=\"top\" subheadline=\"If you chose to stay with us you will enjoy modern home comforts in a traditional setting. Whether you are looking for a short weekend break or a longer holiday, we offer a range of packages that we think cater for all.\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"BOTTOM\" headline=\"Medium headline\" headline_size=\"medium\" dash=\"bottom\" subheadline=\"If you chose to stay with us you will enjoy modern home comforts in a traditional setting. Whether you are looking for a short weekend break or a longer holiday, we offer a range of packages that we think cater for all.\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"NO DASH\" headline=\"Medium headline\" headline_size=\"medium\" dash=\"no\" subheadline=\"If you chose to stay with us you will enjoy modern home comforts in a traditional setting. Whether you are looking for a short weekend break or a longer holiday, we offer a range of packages that we think cater for all.\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/3\"][bt_header superheadline=\"TOP BOTTOM\" headline=\"Small headline with dash\" headline_size=\"small\" dash=\"top bottom\" subheadline=\"If you chose to stay with us you will enjoy modern home comforts in a traditional setting. Whether you are looking for a short weekend break or a longer holiday, we offer a range of packages that we think cater for all.\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/3\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"TOP BOTTOM\" headline=\"Small headline with dash\" headline_size=\"small\" dash=\"top bottom\" subheadline=\"If you chose to stay with us you will enjoy modern home comforts in a traditional setting. Whether you are looking for a short weekend break or a longer holiday, we offer a range of packages that we think cater for all.\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/3\" align=\"right\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"TOP BOTTOM\" headline=\"Small headline with dash\" headline_size=\"small\" dash=\"top bottom\" subheadline=\"If you chose to stay with us you will enjoy modern home comforts in a traditional setting. Whether you are looking for a short weekend break or a longer holiday, we offer a range of packages that we think cater for all.\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"dark\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/2\"][bt_header superheadline=\"TOP BOTTOM\" headline=\"Large headline with dash\" headline_size=\"large\" dash=\"top bottom\" subheadline=\"If you chose to stay with us you will enjoy modern home comforts in a traditional setting. Whether you are looking for a short weekend break or a longer holiday, we offer a range of packages that we think cater for all.\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"TOP\" headline=\"Large headline\" headline_size=\"large\" dash=\"top\" subheadline=\"If you chose to stay with us you will enjoy modern home comforts in a traditional setting. Whether you are looking for a short weekend break or a longer holiday, we offer a range of packages that we think cater for all.\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"BOTTOM\" headline=\"Large headline\" headline_size=\"large\" dash=\"bottom\" subheadline=\"If you chose to stay with us you will enjoy modern home comforts in a traditional setting. Whether you are looking for a short weekend break or a longer holiday, we offer a range of packages that we think cater for all.\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"NO DASH\" headline=\"Large headline\" headline_size=\"large\" dash=\"no\" subheadline=\"If you chose to stay with us you will enjoy modern home comforts in a traditional setting. Whether you are looking for a short weekend break or a longer holiday, we offer a range of packages that we think cater for all.\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/2\"][bt_header superheadline=\"TOP BOTTOM\" headline=\"Extralarge headline with dash\" headline_size=\"extralarge\" dash=\"top bottom\" subheadline=\"If you chose to stay with us you will enjoy modern home comforts in a traditional setting. Whether you are looking for a short weekend break or a longer holiday, we offer a range of packages that we think cater for all.\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"TOP\" headline=\"Extralarge headline\" headline_size=\"extralarge\" dash=\"top\" subheadline=\"If you chose to stay with us you will enjoy modern home comforts in a traditional setting. Whether you are looking for a short weekend break or a longer holiday, we offer a range of packages that we think cater for all.\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"BOTTOM\" headline=\"Extralarge headline\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"If you chose to stay with us you will enjoy modern home comforts in a traditional setting. Whether you are looking for a short weekend break or a longer holiday, we offer a range of packages that we think cater for all.\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"NO DASH\" headline=\"Extralarge headline\" headline_size=\"extralarge\" dash=\"no\" subheadline=\"If you chose to stay with us you will enjoy modern home comforts in a traditional setting. Whether you are looking for a short weekend break or a longer holiday, we offer a range of packages that we think cater for all.\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\"][bt_header superheadline=\"TOP BOTTOM\" headline=\"Huge headline with dash\" headline_size=\"huge\" dash=\"top bottom\" subheadline=\"If you chose to stay with us you will enjoy modern home comforts in a traditional setting. Whether you are looking for a short weekend break or a longer holiday, we offer a range of packages that we think cater for all.\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"TOP\" headline=\"Huge headline\" headline_size=\"huge\" dash=\"top\" subheadline=\"If you chose to stay with us you will enjoy modern home comforts in a traditional setting. Whether you are looking for a short weekend break or a longer holiday, we offer a range of packages that we think cater for all.\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"BOTTOM\" headline=\"Huge headline\" headline_size=\"huge\" dash=\"bottom\" subheadline=\"If you chose to stay with us you will enjoy modern home comforts in a traditional setting. Whether you are looking for a short weekend break or a longer holiday, we offer a range of packages that we think cater for all.\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"NO DASH\" headline=\"Huge headline\" headline_size=\"huge\" dash=\"no\" subheadline=\"If you chose to stay with us you will enjoy modern home comforts in a traditional setting. Whether you are looking for a short weekend break or a longer holiday, we offer a range of packages that we think cater for all.\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section] ','Sample Typography','\n ','publish','closed','open','','sample-typography','','','2016-02-22 12:40:41','2016-02-22 12:40:41','',33,'http://hotel.omnicom-dev.com/summer/?page_id=2',0,'page','',0);
INSERT INTO `smrc_posts` VALUES (8,1,'2016-02-23 11:08:55','2016-02-23 11:08:55','\n [bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSemiSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"2/3\" align=\"left\" vertical_align=\"btMiddleVertical\" border=\"no_border\" cell_padding=\"default\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"The little things matter\" headline=\"Hotel Amenities\" headline_size=\"extralarge\" dash=\"bottom\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\" subheadline=\"We know how something others consider redundant might be important for you. That’s why we’ve added as many amenities we can for every room we have at hotel California.\" el_class=\"\" el_style=\"\"][/bt_header][/bt_column][bt_column width=\"1/3\" align=\"left\" vertical_align=\"btMiddleVertical\" border=\"no_border\" cell_padding=\"default\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"bottomSemiSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"547\" back_color=\"#e6e6e6\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"0.5\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"323\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"width: 60px; margin-top: -28px;\"][/bt_image][bt_hr top_spaced=\"topSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btDoublePadding\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"#ffffff\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"Everyday ease\" headline=\"Room amenities\" headline_size=\"medium\" dash=\"top\" subheadline=\"Hotel California offers a large number of Room amenities that will ease up your stay when you\'re on your vacation. Here\'s what you always get when you stay here.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"3/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_row_inner][bt_column_inner width=\"1/3\" align=\"left\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"btTextIndent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_icons][bt_icon icon=\"cs_ea18\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoLargeSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Widescreen LCD TV\" headline_size=\"small\" dash=\"bottom\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\" subheadline=\"Enjoy your favourite TV shows or sports when you\'re at your room resting on a 40`` TV screen.\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"1/3\" align=\"left\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"btTextIndent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_icons][bt_icon icon=\"cs_ea19\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoLargeSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Wine bottle\" headline_size=\"small\" dash=\"bottom\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\" subheadline=\"Have a complementary bottle of wine free, when you stay for more than 5 nights at California.\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"1/3\" align=\"left\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"btTextIndent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_icons][bt_icon icon=\"cs_ea2c\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoLargeSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Coffeemaker\" headline_size=\"small\" dash=\"bottom\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\" subheadline=\"Start your morning with the highest quality coffee made in-room with Lavazza coffeemaker.\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_row_inner][bt_column_inner width=\"1/3\" align=\"left\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"btTextIndent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_icons][bt_icon icon=\"cs_ea53\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoLargeSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Free Wi-Fi\" headline_size=\"small\" dash=\"bottom\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\" subheadline=\"Rest and do some work if you need to, high speed wi-fi internet is free all around the hotel premises.\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"1/3\" align=\"left\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"btTextIndent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_icons][bt_icon icon=\"cs_ea1a\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoLargeSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Everyday towel changes\" headline_size=\"small\" dash=\"bottom\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\" subheadline=\"Or room staff will change the towels everyday if you prefer to. Just leave them in the bath.\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"1/3\" align=\"left\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"btTextIndent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_icons][bt_icon icon=\"cs_ea2d\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoLargeSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Cocktails?\" headline_size=\"small\" dash=\"bottom\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\" subheadline=\"If you\'re a fan of cocktails - our bartenders will make it for you. Just visit the lobby or pool bar.\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_row_inner][bt_column_inner width=\"1/3\" align=\"left\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"btTextIndent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_icons][bt_icon icon=\"cs_ea33\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoLargeSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Alarm clock\" headline_size=\"small\" dash=\"bottom\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\" subheadline=\"If you\'re in a need to stay up early (but we hardly suspect it!), our alarm clocks will take care of that.\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"1/3\" align=\"left\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"btTextIndent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_icons][bt_icon icon=\"cs_ea31\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoLargeSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Premium bathtubs\" headline_size=\"small\" dash=\"bottom\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\" subheadline=\"Jacuzzi or a regular bath tub? It\'s your choice, so whichever you prefer, let us know when booking.\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"1/3\" align=\"left\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"btTextIndent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_icons][bt_icon icon=\"cs_ea33\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoLargeSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Alarm clock\" headline_size=\"small\" dash=\"bottom\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\" subheadline=\"Need to get up early? Not really, just to come down on breakfast. No worries, we\'ve got you covered.\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"dark\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#584528\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\"][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\n\n[contact-form-7 id=\"397\" title=\"Booking form\"]\n\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"548\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"0.5\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btDoublePadding\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"#b71234\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"btDarkSkin\" el_style=\"\"][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"Outside ease\" headline=\"Additional Services\" headline_size=\"medium\" dash=\"top\" subheadline=\"But the real things start outside, when you step out of your room. We\'ll help you to rest, take care of your luggage, or your clothing, or provide you with a guide when needed.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"3/4\"][bt_row_inner][bt_column_inner width=\"1/3\" align=\"left\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"btTextIndent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_icons][bt_icon icon=\"cs_ea1c\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoLargeSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Indoor and outdoor pool\" headline_size=\"small\" dash=\"bottom\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\" subheadline=\"Our pools are always open, whether it’s summer or winter. You just decide which one you want.\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"1/3\" align=\"left\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"btTextIndent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_icons][bt_icon icon=\"cs_ea1f\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoLargeSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Baggage carriers\" headline_size=\"small\" dash=\"bottom\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\" subheadline=\"Our staff will gladly help you out with your baggage and carry them into your room.\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"1/3\" align=\"left\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"btTextIndent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_icons][bt_icon icon=\"cs_ea20\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoLargeSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Clothes cleaning\" headline_size=\"small\" dash=\"bottom\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\" subheadline=\"Need to wash your clothes? No worries! Our cleaning services will help you out for a small fee.\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_row_inner][bt_column_inner width=\"1/3\" align=\"left\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"btTextIndent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_icons][bt_icon icon=\"cs_ea29\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoLargeSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Privacy is essential\" headline_size=\"small\" dash=\"bottom\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\" subheadline=\"Whether you just want a quiet nap or value your privacy, just let us know. Noone will bother you.\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"1/3\" align=\"left\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"btTextIndent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_icons][bt_icon icon=\"cs_ea2e\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoLargeSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Covered parking lot\" headline_size=\"small\" dash=\"bottom\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\" subheadline=\"Your car will be safe and sound on our covered car parking lot. You can additionally pay for garage.\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"1/3\" align=\"left\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"btTextIndent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_icons][bt_icon icon=\"cs_ea1e\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoLargeSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Guide\" headline_size=\"small\" dash=\"bottom\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\" subheadline=\"Our professional guides will be there to help you when hiking or skiing on unmarked places.\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_row_inner][bt_column_inner width=\"1/3\" align=\"left\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"btTextIndent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_icons][bt_icon icon=\"cs_ea32\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoLargeSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Room restaurant\" headline_size=\"small\" dash=\"bottom\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\" subheadline=\"Anytime you want, we\'ll provide you with room service, whether it\'s breakfast, lunch or dinner.\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"1/3\" align=\"left\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"btTextIndent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_icons][bt_icon icon=\"cs_ea34\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoLargeSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Airport transport\" headline_size=\"small\" dash=\"bottom\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\" subheadline=\"If you didn\'t came in by your car or by bus, we can drive you with out shuttle to the airport.\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"1/3\" align=\"left\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"btTextIndent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_icons][bt_icon icon=\"cs_ea2f\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoLargeSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Photographer\" headline_size=\"small\" dash=\"bottom\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\" subheadline=\"Capture your best moments on your vacation by having our professional photographer with you.\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][/bt_column][/bt_row][/bt_section] ','Amenities','\n ','publish','closed','closed','','amenities','','','2016-02-23 11:08:55','2016-02-23 11:08:55','',33,'http://hotel.omnicom-dev.com/?page_id=7',0,'page','',0);
INSERT INTO `smrc_posts` VALUES (11,1,'2016-02-23 11:09:24','2016-02-23 11:09:24','\n [bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSemiSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"2/3\" align=\"left\" vertical_align=\"btMiddleVertical\" border=\"no_border\" cell_padding=\"default\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Fun at the sea\" headline=\"Activities\" headline_size=\"extralarge\" dash=\"bottom\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\" subheadline=\"There\'s always something fun to do at Hotel California. Whether it\'s the beach, the sea or just plain activities that will make your day, we can have everything prepared for you and your family.\" el_class=\"\" el_style=\"\"][/bt_header][/bt_column][bt_column width=\"1/3\" align=\"left\" vertical_align=\"btMiddleVertical\" border=\"no_border\" cell_padding=\"default\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/2\" align=\"right\" vertical_align=\"btTopVertical\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"73\" caption_title=\"\" caption_text=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_column][bt_column width=\"1/2\" align=\"left\" vertical_align=\"btMiddleVertical\" border=\"no_border\" cell_padding=\"default\" animation=\"no_animation\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"#e6e6e6\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSemiSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"ENJOY THE GAME\" headline=\"Beach Voleyball\" headline_size=\"large\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_e9ac\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoBigSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e040\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoBigSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e041\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoBigSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\n\nBeach volleyball is ouy visitors favourite sport, highly enjoyable for everyone young or old. Just gather your team on the beach and find the opponents in a matter of minutes. And show what you can do, be a winner!\n\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_button text=\"READ MORE\" icon=\"no_icon\" url=\"#\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Normal\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSemiSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"1/2\" align=\"left\" vertical_align=\"btMiddleVertical\" border=\"no_border\" cell_padding=\"default\" animation=\"no_animation\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"#e6e6e6\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSemiSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"Enjoy the beach\" headline=\"Horseback riding\" headline_size=\"large\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_ea13\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoBigSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1e\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoBigSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e05b\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoBigSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\n\nHow about a lazy afternoon with your friends on a hors, while the sun goes down? If you want to chill out, our horse riding team will teach you in a matter of minutes and help you wind down after a good day on the sun.\n\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_button text=\"READ MORE\" icon=\"no_icon\" url=\"#\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Normal\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSemiSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/2\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"74\" el_class=\"\" el_style=\"\"][bt_image image=\"74\" caption_title=\"\" caption_text=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_column][/bt_row][bt_row][bt_column width=\"1/2\" align=\"right\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"75\" el_class=\"\" el_style=\"\"][bt_image image=\"75\" caption_title=\"\" caption_text=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_column][bt_column width=\"1/2\" align=\"left\" vertical_align=\"btMiddleVertical\" border=\"no_border\" cell_padding=\"default\" animation=\"no_animation\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"#e6e6e6\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSemiSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"Enjoy the sea\" headline=\"Waterskiing\" headline_size=\"large\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_e05b\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoBigSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9a3\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoBigSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9e5\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoBigSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\n\nIf you are a big fan of water sports, then why not try the waterskiing or waterboarding? At hotel California you will find there\'s an amateur champoionship every year. Rated as the most fun activity by our visitors.\n\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_button text=\"READ MORE\" icon=\"no_icon\" url=\"#\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Normal\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSemiSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"1/2\" align=\"left\" vertical_align=\"btMiddleVertical\" border=\"no_border\" cell_padding=\"default\" animation=\"no_animation\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"#e6e6e6\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSemiSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"Enjoy the sky\" headline=\"Parasailing\" headline_size=\"large\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_ea2f\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoBigSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"s7_e67b\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoBigSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9f3\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoBigSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\n\nEnjoy the thrill on the sky with our parasailing team and feel the California sun on your face. The team will help you get your adrenaline high and will be capuring your moments on a high-definition camera.\n\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_button text=\"READ MORE\" icon=\"no_icon\" url=\"#\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Normal\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSemiSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/2\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"76\" el_class=\"\" el_style=\"\"][bt_image image=\"76\" caption_title=\"\" caption_text=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_column][/bt_row][/bt_section] ','Activities','\n ','publish','closed','closed','','activities','','','2016-02-23 11:09:24','2016-02-23 11:09:24','',0,'http://hotel.omnicom-dev.com/?page_id=11',0,'page','',0);
INSERT INTO `smrc_posts` VALUES (15,1,'2021-04-02 11:19:18','2021-04-02 11:19:18','<label> Your name\n [text* your-name] </label>\n\n<label> Your email\n [email* your-email] </label>\n\n<label> Subject\n [text* your-subject] </label>\n\n<label> Your message (optional)\n [textarea your-message] </label>\n\n[submit \"Submit\"]\n[_site_title] \"[your-subject]\"\n[_site_title] <wordpress@mpycdev.theomggroup.com>\nFrom: [your-name] <[your-email]>\nSubject: [your-subject]\n\nMessage Body:\n[your-message]\n\n-- \nThis e-mail was sent from a contact form on [_site_title] ([_site_url])\n[_site_admin_email]\nReply-To: [your-email]\n\n0\n0\n\n[_site_title] \"[your-subject]\"\n[_site_title] <wordpress@mpycdev.theomggroup.com>\nMessage Body:\n[your-message]\n\n-- \nThis e-mail was sent from a contact form on [_site_title] ([_site_url])\n[your-email]\nReply-To: [_site_admin_email]\n\n0\n0\nThank you for your message. It has been sent.\nThere was an error trying to send your message. Please try again later.\nOne or more fields have an error. Please check and try again.\nThere was an error trying to send your message. Please try again later.\nYou must accept the terms and conditions before sending your message.\nThe field is required.\nThe field is too long.\nThe field is too short.\nThere was an unknown error uploading the file.\nYou are not allowed to upload files of this type.\nThe file is too big.\nThere was an error uploading the file.','Contact form 1','','publish','closed','closed','','contact-form-1','','','2021-04-02 11:19:18','2021-04-02 11:19:18','',0,'http://mpycdev.theomggroup.com/?post_type=wpcf7_contact_form&p=15',0,'wpcf7_contact_form','',0);
INSERT INTO `smrc_posts` VALUES (16,1,'2021-04-02 11:26:48','2021-04-02 11:26:48','','woocommerce-placeholder','','inherit','open','closed','','woocommerce-placeholder','','','2021-04-02 11:26:48','2021-04-02 11:26:48','',0,'http://mpycdev.theomggroup.com/wp-content/uploads/2021/04/woocommerce-placeholder.png',0,'attachment','image/png',0);
INSERT INTO `smrc_posts` VALUES (17,1,'2016-02-23 11:09:57','2016-02-23 11:09:57','[bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSemiSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"yes\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"2/3\" align=\"left\" vertical_align=\"btMiddleVertical\" border=\"no_border\" cell_padding=\"default\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Just say hello\" headline=\"Contact us anytime\" headline_size=\"extralarge\" dash=\"bottom\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\" subheadline=\"we know you\'re always busy, but we are always there for you should you have any questions for us. Whether it\'s vacation related or you just want to send us a comment.\" el_class=\"\" el_style=\"\"][/bt_header][/bt_column][bt_column width=\"1/3\" align=\"left\" vertical_align=\"btMiddleVertical\" border=\"no_border\" cell_padding=\"default\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"yes\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/3\" align=\"left\" vertical_align=\"btMiddleVertical\" border=\"no_border\" cell_padding=\"btDoublePadding\" animation=\"no_animation\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"#e5e5e5\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"Contact\" headline=\"Hotel California\" headline_size=\"medium\" dash=\"top\" subheadline=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer mollis viverra diam ac ornare. Donec rhoncus nisi in felis congue, at pulvinar nibh dapibus.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"2/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btDoublePadding\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"#f1f1f1\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSemiSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\r\n\r\n[contact-form-7 id=\"32\" title=\"Contact form\"]\r\n\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSemiSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\"][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"2/3\"][bt_gmaps latitude=\"36.602383\" longitude=\"-121.879245 \" zoom=\"11\" icon=\"342\" height=\"400px\" primary_color=\"#dd3333\" secondary_color=\"#c1c1c1\" water_color=\"#1e73be\" custom_style=\"WwogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJhZG1pbmlzdHJhdGl2ZSIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImxhYmVscy50ZXh0LmZpbGwiLAogICAgICAgICJzdHlsZXJzIjogWwogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAiY29sb3IiOiAiIzQ0NDQ0NCIKICAgICAgICAgICAgfQogICAgICAgIF0KICAgIH0sCiAgICB7CiAgICAgICAgImZlYXR1cmVUeXBlIjogImxhbmRzY2FwZSIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJjb2xvciI6ICIjZjJmMmYyIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAicG9pIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiYWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInZpc2liaWxpdHkiOiAib2ZmIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAicm9hZCIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJzYXR1cmF0aW9uIjogLTEwMAogICAgICAgICAgICB9LAogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAibGlnaHRuZXNzIjogNDUKICAgICAgICAgICAgfQogICAgICAgIF0KICAgIH0sCiAgICB7CiAgICAgICAgImZlYXR1cmVUeXBlIjogInJvYWQuaGlnaHdheSIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogInNpbXBsaWZpZWQiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJyb2FkLmhpZ2h3YXkiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJnZW9tZXRyeSIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogInNpbXBsaWZpZWQiCiAgICAgICAgICAgIH0sCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJjb2xvciI6ICIjZDc3Mjg3IgogICAgICAgICAgICB9LAogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAibGlnaHRuZXNzIjogIjAiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJyb2FkLmhpZ2h3YXkiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJsYWJlbHMudGV4dCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogIm9uIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAicm9hZC5oaWdod2F5IiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAibGFiZWxzLmljb24iLAogICAgICAgICJzdHlsZXJzIjogWwogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAidmlzaWJpbGl0eSI6ICJvbiIKICAgICAgICAgICAgfQogICAgICAgIF0KICAgIH0sCiAgICB7CiAgICAgICAgImZlYXR1cmVUeXBlIjogInJvYWQuYXJ0ZXJpYWwiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJhbGwiLAogICAgICAgICJzdHlsZXJzIjogWwogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAidmlzaWJpbGl0eSI6ICJvbiIKICAgICAgICAgICAgfQogICAgICAgIF0KICAgIH0sCiAgICB7CiAgICAgICAgImZlYXR1cmVUeXBlIjogInJvYWQuYXJ0ZXJpYWwiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJnZW9tZXRyeS5maWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgImNvbG9yIjogIiNkNzcyODciCiAgICAgICAgICAgIH0sCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJsaWdodG5lc3MiOiAiNzUiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJyb2FkLmFydGVyaWFsIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAibGFiZWxzLmljb24iLAogICAgICAgICJzdHlsZXJzIjogWwogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAidmlzaWJpbGl0eSI6ICJvZmYiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJyb2FkLmxvY2FsIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiZ2VvbWV0cnkuZmlsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJsaWdodG5lc3MiOiAiNzUiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJ0cmFuc2l0IiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiYWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInZpc2liaWxpdHkiOiAib2ZmIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAidHJhbnNpdC5saW5lIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiYWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInZpc2liaWxpdHkiOiAib24iCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJ0cmFuc2l0LnN0YXRpb24uYnVzIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiYWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInZpc2liaWxpdHkiOiAib24iCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJ0cmFuc2l0LnN0YXRpb24ucmFpbCIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogIm9uIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAidHJhbnNpdC5zdGF0aW9uLnJhaWwiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJsYWJlbHMuaWNvbiIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ3ZWlnaHQiOiAiMC4wMSIKICAgICAgICAgICAgfSwKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgImh1ZSI6ICIjZmYwMDM1IgogICAgICAgICAgICB9LAogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAibGlnaHRuZXNzIjogIjAiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJ3YXRlciIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogIm9uIgogICAgICAgICAgICB9LAogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAiY29sb3IiOiAiIzgwZTRkOCIKICAgICAgICAgICAgfSwKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgImxpZ2h0bmVzcyI6ICIyNSIKICAgICAgICAgICAgfSwKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInNhdHVyYXRpb24iOiAiLTIzIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfQpd\" el_class=\"\" el_style=\"\" api_key=\"AIzaSyBda9LxQ-Wztqsk6aFI7SkcdiypnKTPfiI\"][/bt_gmaps][/bt_column][bt_column width=\"1/3\" align=\"left\" vertical_align=\"btMiddleVertical\" border=\"no_border\" cell_padding=\"btDoublePadding\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"#e5e5e5\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_service icon=\"s7_e638\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoMediumSize\" url=\"\" headline=\"Address\" dash=\"\" text=\"27th Avenue\r\nNew York, W2 3XE\" el_class=\"\" el_style=\"\" superheadline=\"\"][/bt_service][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSemiSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_service icon=\"s7_e670\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoMediumSize\" url=\"\" headline=\"Phone\" dash=\"\" text=\"+555-40-220-6672\" el_class=\"\" el_style=\"\" superheadline=\"\"][/bt_service][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSemiSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_service icon=\"s7_e63a\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoMediumSize\" url=\"\" headline=\"Email\" dash=\"\" text=\"office@california.hotel\" el_class=\"\" el_style=\"\" superheadline=\"\"][/bt_service][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"321\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"0.3\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Follow us\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Find out what’s hot and new, and get discounts for being a loyal customer and a Hotel California fan.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_icons][bt_icon icon=\"fa_f09a\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f099\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f0d5\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_column][/bt_row][/bt_section]','Contact','\n ','publish','closed','closed','','contact','','','2021-04-09 08:02:37','2021-04-09 08:02:37','',33,'http://hotel.omnicom-dev.com/?page_id=17',0,'page','',0);
INSERT INTO `smrc_posts` VALUES (19,1,'2016-02-23 11:11:29','2016-02-23 11:11:29','\n [bt_section layout=\"boxed\" top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"2/3\"][bt_header superheadline=\"Buy souvenires\" headline=\"Online Shop\" headline_size=\"extralarge\" dash=\"bottom\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\" subheadline=\"Purchase Hotel California souvenires for you and your friends. Show your affection for this great state and where you\'ve been on a vacation. \" el_class=\"\" el_style=\"\"][/bt_header][/bt_column][bt_column width=\"1/3\"][/bt_column][/bt_row][/bt_section] ','Shop','\n ','publish','closed','closed','','shop','','','2016-02-23 11:11:29','2016-02-23 11:11:29','',0,'http://hotel.omnicom-dev.com/?page_id=19',0,'page','',0);
INSERT INTO `smrc_posts` VALUES (32,1,'2016-02-23 11:12:55','2016-02-23 11:12:55','\n <p>Your Name (required)<br />\n [text* your-name] </p>\n\n<p>Your Email (required)<br />\n [email* your-email] </p>\n\n<p>Subject<br />\n [text your-subject] </p>\n\n<p>Your Message<br />\n [textarea your-message] </p>\n\n<p>[submit \"Send\"]</p>\nHotel California \"[your-subject]\"\n[your-name] <wordpress@hotel.bold-themes.com>\nFrom: [your-name] <[your-email]>\nSubject: [your-subject]\n\nMessage Body:\n[your-message]\n\n--\nThis e-mail was sent from a contact form on Hotel California (http://hotel.bold-themes.com/summer)\ninfo@bold-themes.com\nReply-To: [your-email]\n\n\n\n\nHotel California \"[your-subject]\"\nHotel California <wordpress@hotel.omnicom-dev.com>\nMessage Body:\n[your-message]\n\n--\nThis e-mail was sent from a contact form on Hotel California (http://hotel.omnicom-dev.com)\n[your-email]\nReply-To: info@bold-themes.com\n\n\n\nThank you for your message. It has been sent.\nThere was an error trying to send your message. Please try again later.\nOne or more fields have an error. Please check and try again.\nThere was an error trying to send your message. Please try again later.\nYou must accept the terms and conditions before sending your message.\nThe field is required.\nThe field is too long.\nThe field is too short.\nThe date format is incorrect.\nThe date is before the earliest one allowed.\nThe date is after the latest one allowed.\nThere was an unknown error uploading the file.\nYou are not allowed to upload files of this type.\nThe file is too big.\nThere was an error uploading the file.\nThe number format is invalid.\nThe number is smaller than the minimum allowed.\nThe number is larger than the maximum allowed.\nThe answer to the quiz is incorrect.\nYour entered code is incorrect.\nThe e-mail address entered is invalid.\nThe URL is invalid.\nThe telephone number is invalid. ','Contact form','\n ','publish','closed','closed','','contact-form-1-2','','','2016-02-23 11:12:55','2016-02-23 11:12:55','',0,'http://hotel.omnicom-dev.com/?post_type=wpcf7_contact_form&p=28',0,'wpcf7_contact_form','',0);
INSERT INTO `smrc_posts` VALUES (33,1,'2016-02-23 11:14:01','2016-02-23 11:14:01','[bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"1210\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\"][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"yes\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"2/3\"][bt_header superheadline=\"MPYC\" headline=\"About Us\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Nulla quis vestibulum risus. Sed eros augue, laoreet ac risus finibus, semper porta eros. Donec eleifend blandit luctus. Curabitur at massa dignissim, semper mauris a, sollicitudin ipsum. \" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_text]\r\n\r\nMaecenas enim arcu, pharetra pharetra rutrum ac, condimentum vel nulla. Duis risus diam, consectetur sed purus in, ullamcorper vulputate eros. Aliquam felis neque, posuere vel purus eu, dapibus mattis dolor. Nam maximus elit augue, eu ornare tortor feugiat eget.\r\n<blockquote>Nulla dictum euismod purus, quis commodo mauris posuere auctor. Phasellus nec lectus gravida, tempus metus sit amet, mattis leo. Donec mauris orci, consectetur in congue et, dapibus sed nisi. Duis sem lacus, elementum vel luctus quis, scelerisque et nibh.</blockquote>\r\nMauris eget bibendum libero, hendrerit faucibus tellus. Morbi felis dolor, tempus ac posuere id, facilisis non diam. Pellentesque vitae libero lacus. Sed rhoncus eros vel elit lacinia lacinia. Fusce laoreet sit amet urna ut sagittis. Fusce vitae ornare massa. Nam mollis elit quis eleifend dictum.\r\n\r\n[/bt_text][/bt_column][bt_column width=\"1/3\" align=\"right\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btDoublePadding\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_custom_menu menu=\"About\" el_class=\"\" el_style=\"\"][/bt_custom_menu][/bt_column][/bt_row][bt_row][/bt_row][/bt_section]','About us','\n ','publish','closed','closed','','about-us','','','2021-04-09 05:22:37','2021-04-09 05:22:37','',0,'http://hotel.omnicom-dev.com/?page_id=29',0,'page','',0);
INSERT INTO `smrc_posts` VALUES (41,1,'2016-02-23 12:44:20','2016-02-23 12:44:20',' ','summer-room-4',' ','inherit','open','closed','','summer-room-4','','','2021-04-07 08:34:44','2021-04-07 08:34:44','',0,'http://mpycdev.theomggroup.com/wp-content/uploads/2016/02/summer-room-4.jpg',0,'attachment','image/jpeg',0);
INSERT INTO `smrc_posts` VALUES (42,1,'2016-02-23 12:44:23','2016-02-23 12:44:23',' ','summer-room-3',' ','inherit','open','closed','','summer-room-3','','','2021-04-07 08:34:44','2021-04-07 08:34:44','',0,'http://mpycdev.theomggroup.com/wp-content/uploads/2016/02/summer-room-3.jpg',0,'attachment','image/jpeg',0);
INSERT INTO `smrc_posts` VALUES (43,1,'2016-02-23 12:44:25','2016-02-23 12:44:25',' ','summer-room-2',' ','inherit','open','closed','','summer-room-2','','','2021-04-07 08:34:45','2021-04-07 08:34:45','',0,'http://mpycdev.theomggroup.com/wp-content/uploads/2016/02/summer-room-2.jpg',0,'attachment','image/jpeg',0);
INSERT INTO `smrc_posts` VALUES (44,1,'2016-02-23 12:44:27','2016-02-23 12:44:27',' ','summer-room-1',' ','inherit','open','closed','','summer-room-1','','','2021-04-07 08:34:45','2021-04-07 08:34:45','',0,'http://mpycdev.theomggroup.com/wp-content/uploads/2016/02/summer-room-1.jpg',0,'attachment','image/jpeg',0);
INSERT INTO `smrc_posts` VALUES (46,1,'2016-02-23 13:08:00','2016-02-23 13:08:00',' ','summer-hero-2',' ','inherit','open','closed','','summer-hero-2','','','2021-04-07 08:34:45','2021-04-07 08:34:45','',0,'http://mpycdev.theomggroup.com/wp-content/uploads/2016/02/summer-hero-2.jpg',0,'attachment','image/jpeg',0);
INSERT INTO `smrc_posts` VALUES (47,1,'2016-02-23 13:08:02','2016-02-23 13:08:02',' ','summer-hero-1',' ','inherit','open','closed','','summer-hero-1','','','2021-04-07 08:34:44','2021-04-07 08:34:44','',0,'http://mpycdev.theomggroup.com/wp-content/uploads/2016/02/summer-hero-1.jpg',0,'attachment','image/jpeg',0);
INSERT INTO `smrc_posts` VALUES (48,1,'2016-02-23 13:15:06','2016-02-23 13:15:06',' ','summer-logo',' ','inherit','open','closed','','summer-logo','','','2021-04-07 08:34:44','2021-04-07 08:34:44','',0,'http://mpycdev.theomggroup.com/wp-content/uploads/2016/02/summer-logo.png',0,'attachment','image/png',0);
INSERT INTO `smrc_posts` VALUES (49,1,'2016-02-23 13:15:08','2016-02-23 13:15:08',' ','summer-logo-footer',' ','inherit','open','closed','','summer-logo-footer','','','2021-04-07 08:33:46','2021-04-07 08:33:46','',0,'http://mpycdev.theomggroup.com/wp-content/uploads/2016/02/summer-logo-footer.png',0,'attachment','image/png',0);
INSERT INTO `smrc_posts` VALUES (66,1,'2016-02-23 15:14:55','2016-02-23 15:14:55',' ','summer-offers-background',' ','inherit','open','closed','','summer-offers-background','','','2021-04-07 08:34:45','2021-04-07 08:34:45','',0,'http://mpycdev.theomggroup.com/wp-content/uploads/2016/02/summer-offers-background.jpg',0,'attachment','image/jpeg',0);
INSERT INTO `smrc_posts` VALUES (67,1,'2016-02-23 15:15:01','2016-02-23 15:15:01',' ','summer-offer-1',' ','inherit','open','closed','','summer-offer-1','','','2021-04-07 08:34:45','2021-04-07 08:34:45','',0,'http://mpycdev.theomggroup.com/wp-content/uploads/2016/02/summer-offer-1.jpg',0,'attachment','image/jpeg',0);
INSERT INTO `smrc_posts` VALUES (68,1,'2016-02-23 15:15:02','2016-02-23 15:15:02',' ','summer-offer-2',' ','inherit','open','closed','','summer-offer-2','','','2021-04-07 08:34:45','2021-04-07 08:34:45','',0,'http://mpycdev.theomggroup.com/wp-content/uploads/2016/02/summer-offer-2.jpg',0,'attachment','image/jpeg',0);
INSERT INTO `smrc_posts` VALUES (69,1,'2016-02-23 15:15:03','2016-02-23 15:15:03',' ','summer-offer-3',' ','inherit','open','closed','','summer-offer-3','','','2021-04-07 08:34:45','2021-04-07 08:34:45','',0,'http://mpycdev.theomggroup.com/wp-content/uploads/2016/02/summer-offer-3.jpg',0,'attachment','image/jpeg',0);
INSERT INTO `smrc_posts` VALUES (73,1,'2016-02-23 15:27:26','2016-02-23 15:27:26',' ','summer-activity-1',' ','inherit','open','closed','','summer-activity-1','','','2021-04-07 08:34:45','2021-04-07 08:34:45','',0,'http://mpycdev.theomggroup.com/wp-content/uploads/2016/02/summer-activity-1.jpg',0,'attachment','image/jpeg',0);
INSERT INTO `smrc_posts` VALUES (74,1,'2016-02-23 15:27:29','2016-02-23 15:27:29',' ','summer-activity-2',' ','inherit','open','closed','','summer-activity-2','','','2021-04-07 08:34:45','2021-04-07 08:34:45','',0,'http://mpycdev.theomggroup.com/wp-content/uploads/2016/02/summer-activity-2.jpg',0,'attachment','image/jpeg',0);
INSERT INTO `smrc_posts` VALUES (75,1,'2016-02-23 15:27:30','2016-02-23 15:27:30',' ','summer-activity-3',' ','inherit','open','closed','','summer-activity-3','','','2021-04-07 08:34:46','2021-04-07 08:34:46','',0,'http://mpycdev.theomggroup.com/wp-content/uploads/2016/02/summer-activity-3.jpg',0,'attachment','image/jpeg',0);
INSERT INTO `smrc_posts` VALUES (76,1,'2016-02-23 15:27:32','2016-02-23 15:27:32',' ','summer-activity-4',' ','inherit','open','closed','','summer-activity-4','','','2021-04-07 08:34:46','2021-04-07 08:34:46','',0,'http://mpycdev.theomggroup.com/wp-content/uploads/2016/02/summer-activity-4.jpg',0,'attachment','image/jpeg',0);
INSERT INTO `smrc_posts` VALUES (78,1,'2016-02-23 15:37:53','2016-02-23 15:37:53',' ','summer-testimonial',' ','inherit','open','closed','','summer-testimonial','','','2021-04-07 08:34:46','2021-04-07 08:34:46','',0,'http://mpycdev.theomggroup.com/wp-content/uploads/2016/02/summer-testimonial.jpg',0,'attachment','image/jpeg',0);
INSERT INTO `smrc_posts` VALUES (81,1,'2016-02-23 15:59:06','2016-02-23 15:59:06',' ','summer-about-1',' ','inherit','open','closed','','summer-about-1','','','2021-04-07 08:34:46','2021-04-07 08:34:46','',0,'http://mpycdev.theomggroup.com/wp-content/uploads/2016/02/summer-about-1-1.jpg',0,'attachment','image/jpeg',0);
INSERT INTO `smrc_posts` VALUES (82,1,'2016-02-23 15:59:08','2016-02-23 15:59:08',' ','summer-about-2',' ','inherit','open','closed','','summer-about-2','','','2021-04-07 08:34:51','2021-04-07 08:34:51','',0,'http://mpycdev.theomggroup.com/wp-content/uploads/2016/02/summer-about-2.jpg',0,'attachment','image/jpeg',0);
INSERT INTO `smrc_posts` VALUES (83,1,'2016-02-23 15:59:09','2016-02-23 15:59:09','\n ','summer-about-3','\n ','inherit','open','closed','','summer-about-3','','','2016-02-23 15:59:09','2016-02-23 15:59:09','',0,'http://mpycdev.theomggroup.com/wp-content/uploads/2016/02/summer-about-3.jpg',0,'attachment','image/jpeg',0);
INSERT INTO `smrc_posts` VALUES (84,1,'2016-02-23 15:59:11','2016-02-23 15:59:11','\n ','summer-about-4','\n ','inherit','open','closed','','summer-about-4','','','2016-02-23 15:59:11','2016-02-23 15:59:11','',0,'http://mpycdev.theomggroup.com/wp-content/uploads/2016/02/summer-about-4.jpg',0,'attachment','image/jpeg',0);
INSERT INTO `smrc_posts` VALUES (85,1,'2016-02-23 15:59:12','2016-02-23 15:59:12','\n ','summer-about-5','\n ','inherit','open','closed','','summer-about-5','','','2016-02-23 15:59:12','2016-02-23 15:59:12','',0,'http://mpycdev.theomggroup.com/wp-content/uploads/2016/02/summer-about-5.jpg',0,'attachment','image/jpeg',0);
INSERT INTO `smrc_posts` VALUES (91,1,'2016-02-24 09:46:49','2016-02-24 09:46:49','\n [bt_section layout=\"boxed\" top_spaced=\"topSemiSpaced\" bottom_spaced=\"bottomSemiSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/2\"][bt_header superheadline=\"Online\" headline=\"Shopping cart\" headline_size=\"large\" dash=\"no\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][/bt_column][bt_column width=\"1/2\"][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"2/3\"][bt_text][woocommerce_cart][/bt_text][/bt_column][bt_column width=\"1/3\"][bt_header superheadline=\"Shop\" headline=\"Usefull info\" headline_size=\"small\" dash=\"no\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\n\nPurchase Hotel California souvenires for you and your friends. Show your affection for this great state and where you’ve been on a vacation.\n\n[/bt_text][/bt_column][/bt_row][/bt_section] ','Cart','\n ','publish','closed','closed','','cart','','','2016-02-24 09:46:49','2016-02-24 09:46:49','',19,'http://hotel.omnicom-dev.com/summer/cart/',0,'page','',0);
INSERT INTO `smrc_posts` VALUES (92,1,'2016-02-24 09:46:49','2016-02-24 09:46:49','\n [bt_section layout=\"boxed\" top_spaced=\"topSemiSpaced\" bottom_spaced=\"bottomSemiSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/2\"][bt_header superheadline=\"Online\" headline=\"Checkout\" headline_size=\"large\" dash=\"no\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][/bt_column][bt_column width=\"1/2\"][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"2/3\"][bt_text][woocommerce_checkout][/bt_text][/bt_column][bt_column width=\"1/3\"][bt_header superheadline=\"Shop\" headline=\"Usefull info\" headline_size=\"small\" dash=\"no\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][/bt_column][/bt_row][/bt_section] ','Checkout','\n ','publish','closed','closed','','checkout','','','2016-02-24 09:46:49','2016-02-24 09:46:49','',19,'http://hotel.omnicom-dev.com/summer/checkout/',0,'page','',0);
INSERT INTO `smrc_posts` VALUES (93,1,'2016-02-24 09:46:49','2016-02-24 09:46:49','\n [bt_section layout=\"boxed\" top_spaced=\"topSemiSpaced\" bottom_spaced=\"bottomSemiSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/2\"][bt_header superheadline=\"Online\" headline=\"My Account\" headline_size=\"large\" dash=\"no\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][/bt_column][bt_column width=\"1/2\"][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"2/3\"][bt_text][woocommerce_my_account][/bt_text][/bt_column][bt_column width=\"1/3\"][bt_header superheadline=\"Shop\" headline=\"Usefull info\" headline_size=\"small\" dash=\"no\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\n\nPurchase Hotel California souvenires for you and your friends. Show your affection for this great state and where you’ve been on a vacation.\n\n[/bt_text][/bt_column][/bt_row][/bt_section] ','My Account','\n ','publish','closed','closed','','my-account','','','2016-02-24 09:46:49','2016-02-24 09:46:49','',19,'http://hotel.omnicom-dev.com/summer/my-account/',0,'page','',0);
INSERT INTO `smrc_posts` VALUES (95,1,'2013-06-07 10:35:51','2013-06-07 10:35:51','\n Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. ','Silver California / red star keychain','\n Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. ','publish','open','closed','','silver-california-red-star-keychain','','','2021-04-02 11:40:27','2021-04-02 11:40:27','',0,'http://demo2.woothemes.com/dummydata/?post_type=product&p=15',0,'product','',1);
INSERT INTO `smrc_posts` VALUES (96,1,'2013-06-07 10:41:52','2013-06-07 10:41:52','\n Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. ','Silver brown California / white star keychain','\n Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. ','publish','open','closed','','silver-brown-california-white-star-keychain','','','2021-04-02 11:40:27','2021-04-02 11:40:27','',0,'http://demo2.woothemes.com/woocommerce/?post_type=product&p=19',0,'product','',2);
INSERT INTO `smrc_posts` VALUES (97,1,'2013-06-07 10:46:01','2013-06-07 10:46:01','\n Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. ','Silver red California / white star keychain','\n Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. ','publish','open','closed','','silver-red-california-white-star-keychain','','','2021-04-02 11:40:27','2021-04-02 11:40:27','',0,'http://demo2.woothemes.com/woocommerce/?post_type=product&p=22',0,'product','',3);
INSERT INTO `smrc_posts` VALUES (98,1,'2013-06-07 10:49:51','2013-06-07 10:49:51','\n Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. ','Silver red California keychain','\n Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. ','publish','open','closed','','silver-red-california-keychain','','','2021-04-02 11:40:26','2021-04-02 11:40:26','',0,'http://demo2.woothemes.com/woocommerce/?post_type=product&p=31',0,'product','',1);
INSERT INTO `smrc_posts` VALUES (99,1,'2013-06-07 10:52:06','2013-06-07 10:52:06','\n Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. ','Hotel California logo t-shirt (red)','\n Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. ','publish','open','closed','','hotel-california-logo-t-shirt-red','','','2013-06-07 10:52:06','2013-06-07 10:52:06','',0,'http://demo2.woothemes.com/woocommerce/?post_type=product&p=34',0,'product','',0);
INSERT INTO `smrc_posts` VALUES (100,1,'2013-06-07 10:53:15','2013-06-07 10:53:15','\n Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. ','Silver California keychain','\n Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. ','publish','open','closed','','silver-california-keychain','','','2021-04-02 11:40:26','2021-04-02 11:40:26','',0,'http://demo2.woothemes.com/woocommerce/?post_type=product&p=37',0,'product','',2);
INSERT INTO `smrc_posts` VALUES (101,1,'2013-06-07 11:00:28','2013-06-07 11:00:28','\n Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. ','Hotel California logo t-shirt (white)','\n Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. ','publish','open','closed','','hotel-california-logo-t-shirt-white','','','2021-04-02 11:40:26','2021-04-02 11:40:26','',0,'http://demo2.woothemes.com/woocommerce/?post_type=product&p=40',0,'product','',3);
INSERT INTO `smrc_posts` VALUES (102,1,'2013-06-07 11:02:31','2013-06-07 11:02:31','\n Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. ','California map t-shirt (red)','\n Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. ','publish','open','closed','','california-map-t-shirt-red','','','2021-04-02 11:40:26','2021-04-02 11:40:26','',0,'http://demo2.woothemes.com/woocommerce/?post_type=product&p=47',0,'product','',2);
INSERT INTO `smrc_posts` VALUES (103,1,'2013-06-07 11:03:56','2013-06-07 11:03:56','\n Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. ','Hotel California logo t-shirt (brown)','\n Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. ','publish','open','closed','','hotel-california-logo-t-shirt-brown','','','2021-04-02 11:40:27','2021-04-02 11:40:27','',0,'http://demo2.woothemes.com/woocommerce/?post_type=product&p=50',0,'product','',3);
INSERT INTO `smrc_posts` VALUES (104,1,'2013-06-07 11:05:37','2013-06-07 11:05:37','\n Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. ','California bear t-shirt (white)','\n Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. ','publish','open','closed','','california-bear-t-shirt-white','','','2021-04-02 11:40:26','2021-04-02 11:40:26','',0,'http://demo2.woothemes.com/woocommerce/?post_type=product&p=53',0,'product','',2);
INSERT INTO `smrc_posts` VALUES (105,1,'2013-06-07 11:07:19','2013-06-07 11:07:19','\n Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. ','Bear t-shirt (white)','\n Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. ','publish','open','closed','','bear-t-shirt-white','','','2021-04-02 11:40:26','2021-04-02 11:40:26','',0,'http://demo2.woothemes.com/woocommerce/?post_type=product&p=56',0,'product','',5);
INSERT INTO `smrc_posts` VALUES (106,1,'2013-06-07 11:12:55','2013-06-07 11:12:55','\n Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. ','Bear t-shirt (brown)','\n Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. ','publish','open','closed','','bear-t-shirt-brown','','','2021-04-02 11:40:26','2021-04-02 11:40:26','',0,'http://demo2.woothemes.com/woocommerce/?post_type=product&p=60',0,'product','',2);
INSERT INTO `smrc_posts` VALUES (107,1,'2013-06-07 11:22:50','2013-06-07 11:22:50','\n Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. ','California hotel brown mug','\n Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. ','publish','open','closed','','california-hotel-brown-mug','','','2013-06-07 11:22:50','2013-06-07 11:22:50','',0,'http://demo2.woothemes.com/woocommerce/?post_type=product&p=67',0,'product','',0);
INSERT INTO `smrc_posts` VALUES (108,1,'2013-06-07 11:25:01','2013-06-07 11:25:01','\n Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. ','Clipped star California brown mug','\n Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. ','publish','open','closed','','clipped-star-california-brown-mug','','','2021-04-02 11:40:26','2021-04-02 11:40:26','',0,'http://demo2.woothemes.com/woocommerce/?post_type=product&p=70',0,'product','',4);
INSERT INTO `smrc_posts` VALUES (109,1,'2013-06-07 11:27:38','2013-06-07 11:27:38','\n Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. ','California hotel red mug','\n Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. ','publish','open','closed','','california-hotel-red-mug','','','2021-04-02 11:40:27','2021-04-02 11:40:27','',0,'http://demo2.woothemes.com/woocommerce/?post_type=product&p=73',0,'product','',2);
INSERT INTO `smrc_posts` VALUES (110,1,'2013-06-07 11:28:45','2013-06-07 11:28:45','\n Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. ','California map poster','\n Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. ','publish','open','closed','','california-map-poster','','','2021-04-02 11:40:27','2021-04-02 11:40:27','',0,'http://demo2.woothemes.com/woocommerce/?post_type=product&p=76',0,'product','',1);
INSERT INTO `smrc_posts` VALUES (111,1,'2013-06-07 10:44:57','2013-06-07 10:44:57','\n ','Silver red California / white star keychain - black','pa_color: black','publish','open','open','','product-22-variation','','','2013-06-07 10:44:57','2013-06-07 10:44:57','',97,'http://demo2.woothemes.com/woocommerce/?product_variation=product-22-variation',0,'product_variation','',0);
INSERT INTO `smrc_posts` VALUES (112,1,'2013-06-07 10:44:58','2013-06-07 10:44:58','\n ','Silver red California / white star keychain - green','pa_color: green','publish','open','open','','product-22-variation-2','','','2013-06-07 10:44:58','2013-06-07 10:44:58','',97,'http://demo2.woothemes.com/woocommerce/?product_variation=product-22-variation-2',1,'product_variation','',0);
INSERT INTO `smrc_posts` VALUES (113,1,'2013-06-07 10:59:15','2013-06-07 10:59:15','\n ','Hotel California logo t-shirt (white) - black','pa_color: black','publish','open','open','','product-40-variation','','','2013-06-07 10:59:15','2013-06-07 10:59:15','',101,'http://demo2.woothemes.com/woocommerce/?product_variation=product-40-variation',0,'product_variation','',0);
INSERT INTO `smrc_posts` VALUES (114,1,'2013-06-07 10:59:15','2013-06-07 10:59:15','\n ','Hotel California logo t-shirt (white) - blue','pa_color: blue','publish','open','open','','product-40-variation-2','','','2013-06-07 10:59:15','2013-06-07 10:59:15','',101,'http://demo2.woothemes.com/woocommerce/?product_variation=product-40-variation-2',1,'product_variation','',0);
INSERT INTO `smrc_posts` VALUES (115,1,'2013-06-07 11:29:44','2013-06-07 11:29:44','\n Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. ','California bear poster','\n Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. ','publish','open','closed','','california-bear-poster','','','2013-06-07 11:29:44','2013-06-07 11:29:44','',0,'http://demo2.woothemes.com/woocommerce/?post_type=product&p=79',0,'product','',0);
INSERT INTO `smrc_posts` VALUES (116,1,'2013-06-07 11:33:05','2013-06-07 11:33:05','\n Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. ','Big star brown mug','\n Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. ','publish','open','closed','','big-star-brown-mug','','','2013-06-07 11:33:05','2013-06-07 11:33:05','',0,'http://demo2.woothemes.com/woocommerce/?post_type=product&p=83',0,'product','',0);
INSERT INTO `smrc_posts` VALUES (117,1,'2013-06-07 11:34:14','2013-06-07 11:34:14','\n Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. ','Clipped star California red mug','\n Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. ','publish','open','closed','','clipped-star-california-red-mug','','','2021-04-02 11:40:27','2021-04-02 11:40:27','',0,'http://demo2.woothemes.com/woocommerce/?post_type=product&p=87',0,'product','',1);
INSERT INTO `smrc_posts` VALUES (118,1,'2013-06-07 11:35:18','2013-06-07 11:35:18','\n Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. ','California bear mug','\n Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. ','publish','open','closed','','california-bear-mug','','','2021-04-02 11:40:27','2021-04-02 11:40:27','',0,'http://demo2.woothemes.com/woocommerce/?post_type=product&p=90',0,'product','',1);
INSERT INTO `smrc_posts` VALUES (119,1,'2013-06-07 11:36:34','2013-06-07 11:36:34','\n Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. ','Hotel California logo mug','\n Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. ','publish','open','closed','','hotel-california-logo-mug','','','2013-06-07 11:36:34','2013-06-07 11:36:34','',0,'http://demo2.woothemes.com/woocommerce/?post_type=product&p=93',0,'product','',0);
INSERT INTO `smrc_posts` VALUES (120,1,'2013-06-07 11:37:23','2013-06-07 11:37:23','\n Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. ','Big star red mug','\n Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. ','publish','open','closed','','big-red-star-mug','','','2021-04-02 11:40:27','2021-04-02 11:40:27','',0,'http://demo2.woothemes.com/woocommerce/?post_type=product&p=96',0,'product','',2);
INSERT INTO `smrc_posts` VALUES (121,1,'2013-06-07 11:38:12','2013-06-07 11:38:12','\n Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. ','California star mug','\n Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. ','publish','open','closed','','california-star-mug','','','2021-04-02 11:40:27','2021-04-02 11:40:27','',0,'http://demo2.woothemes.com/woocommerce/?post_type=product&p=99',0,'product','',2);
INSERT INTO `smrc_posts` VALUES (123,1,'2015-09-03 10:30:44','2015-09-03 10:30:44','\n Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ulla.\nLorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.\nUt wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla\n<blockquote>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</blockquote>\nUt wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla facilisi.\nNam liber tempor cum soluta nobis eleifend option congue nihil imperdiet doming id quod mazim placerat facer possim assum. Typi non habent claritatem insitam; est usus legentis in iis qui facit eorum claritatem. Investigationes demonstraverunt lectores legere me lius quod ii legunt saepius. Claritas est etiam processus dynamicus, qui sequitur mutationem consuetudium lectorum. Mirum est notare quam littera gothica, quam nunc putamus parum claram, anteposuerit litterarum formas humanitatis per seacula quarta decima et quinta decima. Eodem modo typi, qui nunc nobis videntur parum clari, fiant sollemnes in futurum. ','Best night photo at hotel','\n Vivamus at convallis dui. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Donec egestas dolor vel pharetra consequat. Nullam ac leo non magna blandit fermentum a nec lectus. ','publish','open','open','','best-nigh-photo-at-hotel','','','2015-09-03 10:30:44','2015-09-03 10:30:44','',0,'http://showcase.omnicom-dev.com/eiusmond/?p=1',0,'post','',1);
INSERT INTO `smrc_posts` VALUES (151,1,'2015-09-07 15:24:18','2015-09-07 15:24:18','\n Phasellus non lorem quis erat scelerisque efficitur. Nullam mattis odio magna, vel viverra magna viverra nec. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Donec mattis fermentum diam, vitae dictum est convallis et. Aenean mauris lorem, sodales eget condimentum nec, faucibus vitae est. Fusce vulputate odio non mollis commodo. Curabitur efficitur id tellus at imperdiet. Vestibulum commodo dui non eros fringilla, eget sagittis enim placerat. Integer sed nunc leo. Donec interdum felis tortor, finibus fringilla nisi finibus id. Sed placerat, felis ut laoreet semper, nisi ante ullamcorper lacus, at tincidunt elit metus non nibh. Fusce suscipit orci est, tincidunt eleifend odio porttitor et. Aliquam ac velit non orci ullamcorper molestie at ac enim. Curabitur in placerat mi.\n\nMauris dignissim efficitur magna nec pellentesque. Curabitur vulputate, ligula nec dictum tempus, metus urna aliquet nisl, sed consequat nisi nisl sit amet lectus. Integer ac ornare dui. Mauris est lacus, ullamcorper ac tellus id, ultricies volutpat nisi. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Quisque semper quis purus vel aliquam. Donec hendrerit pharetra suscipit. Fusce tristique ipsum elit, id vestibulum nibh feugiat id. Integer volutpat nibh et sem imperdiet, eget dapibus diam laoreet. Praesent feugiat nibh sed magna ullamcorper, nec viverra mi tristique. Fusce rhoncus sapien ultrices, porttitor lectus id, condimentum dui. Etiam at iaculis nisl. Duis vulputate, erat at hendrerit tristique, enim velit luctus dui, in malesuada augue ex quis elit. Maecenas libero dui, venenatis ut lorem quis, hendrerit aliquam odio. Cras sit amet faucibus erat. ','A view at the San Diego beaches','\n Aenean finibus lobortis placerat. Integer nec augue eros. Aliquam aliquet malesuada nulla, a lacinia eros lacinia ac. Donec aliquam semper nulla eget pretium. Nullam et ex sed neque varius. ','publish','closed','closed','','a-view-at-the-san-diego-beaches','','','2015-09-07 15:24:18','2015-09-07 15:24:18','',0,'http://showcase.omnicom-dev.com/home-made/?post_type=portfolio&p=151',0,'portfolio','',0);
INSERT INTO `smrc_posts` VALUES (152,1,'2015-09-07 15:24:53','2015-09-07 15:24:53','\n Phasellus non lorem quis erat scelerisque efficitur. Nullam mattis odio magna, vel viverra magna viverra nec. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Donec mattis fermentum diam, vitae dictum est convallis et. Aenean mauris lorem, sodales eget condimentum nec, faucibus vitae est. Fusce vulputate odio non mollis commodo. Curabitur efficitur id tellus at imperdiet. Vestibulum commodo dui non eros fringilla, eget sagittis enim placerat. Integer sed nunc leo. Donec interdum felis tortor, finibus fringilla nisi finibus id. Sed placerat, felis ut laoreet semper, nisi ante ullamcorper lacus, at tincidunt elit metus non nibh. Fusce suscipit orci est, tincidunt eleifend odio porttitor et. Aliquam ac velit non orci ullamcorper molestie at ac enim. Curabitur in placerat mi.\n\nMauris dignissim efficitur magna nec pellentesque. Curabitur vulputate, ligula nec dictum tempus, metus urna aliquet nisl, sed consequat nisi nisl sit amet lectus. Integer ac ornare dui. Mauris est lacus, ullamcorper ac tellus id, ultricies volutpat nisi. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Quisque semper quis purus vel aliquam. Donec hendrerit pharetra suscipit. Fusce tristique ipsum elit, id vestibulum nibh feugiat id. Integer volutpat nibh et sem imperdiet, eget dapibus diam laoreet. Praesent feugiat nibh sed magna ullamcorper, nec viverra mi tristique. Fusce rhoncus sapien ultrices, porttitor lectus id, condimentum dui. Etiam at iaculis nisl. Duis vulputate, erat at hendrerit tristique, enim velit luctus dui, in malesuada augue ex quis elit. Maecenas libero dui, venenatis ut lorem quis, hendrerit aliquam odio. Cras sit amet faucibus erat. ','New restaurant courses','\n Mauris dignissim efficitur magna nec pellentesque. Curabitur vulputate, ligula nec dictum tempus, metus urna aliquet nisl, sed consequat nisi nisl sit amet lectus. Integer ac ornare dui. ','publish','closed','closed','','new-restaurant-courses','','','2015-09-07 15:24:53','2015-09-07 15:24:53','',0,'http://showcase.omnicom-dev.com/home-made/?post_type=portfolio&p=152',0,'portfolio','',0);
INSERT INTO `smrc_posts` VALUES (153,1,'2015-09-07 15:25:18','2015-09-07 15:25:18','\n Phasellus non lorem quis erat scelerisque efficitur. Nullam mattis odio magna, vel viverra magna viverra nec. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Donec mattis fermentum diam, vitae dictum est convallis et. Aenean mauris lorem, sodales eget condimentum nec, faucibus vitae est. Fusce vulputate odio non mollis commodo. Curabitur efficitur id tellus at imperdiet. Vestibulum commodo dui non eros fringilla, eget sagittis enim placerat. Integer sed nunc leo. Donec interdum felis tortor, finibus fringilla nisi finibus id. Sed placerat, felis ut laoreet semper, nisi ante ullamcorper lacus, at tincidunt elit metus non nibh. Fusce suscipit orci est, tincidunt eleifend odio porttitor et. Aliquam ac velit non orci ullamcorper molestie at ac enim. Curabitur in placerat mi.\n\nMauris dignissim efficitur magna nec pellentesque. Curabitur vulputate, ligula nec dictum tempus, metus urna aliquet nisl, sed consequat nisi nisl sit amet lectus. Integer ac ornare dui. Mauris est lacus, ullamcorper ac tellus id, ultricies volutpat nisi. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Quisque semper quis purus vel aliquam. Donec hendrerit pharetra suscipit. Fusce tristique ipsum elit, id vestibulum nibh feugiat id. Integer volutpat nibh et sem imperdiet, eget dapibus diam laoreet. Praesent feugiat nibh sed magna ullamcorper, nec viverra mi tristique. Fusce rhoncus sapien ultrices, porttitor lectus id, condimentum dui. Etiam at iaculis nisl. Duis vulputate, erat at hendrerit tristique, enim velit luctus dui, in malesuada augue ex quis elit. Maecenas libero dui, venenatis ut lorem quis, hendrerit aliquam odio. Cras sit amet faucibus erat. ','Hotel lawns win a prize','\n Phasellus ornare suscipit tellus, at volutpat lectus porttitor ut. Nam massa libero, vehicula varius bibendum eu, cursus non neque. Vivamus bibendum, est venenatis commodo convallis. ','publish','closed','closed','','hotel-lawns-win-a-prize','','','2015-09-07 15:25:18','2015-09-07 15:25:18','',0,'http://showcase.omnicom-dev.com/home-made/?post_type=portfolio&p=153',0,'portfolio','',0);
INSERT INTO `smrc_posts` VALUES (154,1,'2015-09-07 15:26:01','2015-09-07 15:26:01','\n Phasellus non lorem quis erat scelerisque efficitur. Nullam mattis odio magna, vel viverra magna viverra nec. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Donec mattis fermentum diam, vitae dictum est convallis et. Aenean mauris lorem, sodales eget condimentum nec, faucibus vitae est. Fusce vulputate odio non mollis commodo. Curabitur efficitur id tellus at imperdiet. Vestibulum commodo dui non eros fringilla, eget sagittis enim placerat. Integer sed nunc leo. Donec interdum felis tortor, finibus fringilla nisi finibus id. Sed placerat, felis ut laoreet semper, nisi ante ullamcorper lacus, at tincidunt elit metus non nibh. Fusce suscipit orci est, tincidunt eleifend odio porttitor et. Aliquam ac velit non orci ullamcorper molestie at ac enim. Curabitur in placerat mi.\n\nMauris dignissim efficitur magna nec pellentesque. Curabitur vulputate, ligula nec dictum tempus, metus urna aliquet nisl, sed consequat nisi nisl sit amet lectus. Integer ac ornare dui. Mauris est lacus, ullamcorper ac tellus id, ultricies volutpat nisi. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Quisque semper quis purus vel aliquam. Donec hendrerit pharetra suscipit. Fusce tristique ipsum elit, id vestibulum nibh feugiat id. Integer volutpat nibh et sem imperdiet, eget dapibus diam laoreet. Praesent feugiat nibh sed magna ullamcorper, nec viverra mi tristique. Fusce rhoncus sapien ultrices, porttitor lectus id, condimentum dui. Etiam at iaculis nisl. Duis vulputate, erat at hendrerit tristique, enim velit luctus dui, in malesuada augue ex quis elit. Maecenas libero dui, venenatis ut lorem quis, hendrerit aliquam odio. Cras sit amet faucibus erat. ','New sunbeds','\n Donec non magna mollis libero aliquam ultrices. Nam sagittis mi mauris, et egestas tellus tincidunt ut. Nulla pulvinar sapien id venenatis commodo. Duis sodales, risus sed ullamcorper. ','publish','closed','closed','','new-sunbeds','','','2015-09-07 15:26:01','2015-09-07 15:26:01','',0,'http://showcase.omnicom-dev.com/home-made/?post_type=portfolio&p=154',0,'portfolio','',0);
INSERT INTO `smrc_posts` VALUES (155,1,'2015-09-07 15:26:21','2015-09-07 15:26:21','\n Phasellus non lorem quis erat scelerisque efficitur. Nullam mattis odio magna, vel viverra magna viverra nec. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Donec mattis fermentum diam, vitae dictum est convallis et. Aenean mauris lorem, sodales eget condimentum nec, faucibus vitae est. Fusce vulputate odio non mollis commodo. Curabitur efficitur id tellus at imperdiet. Vestibulum commodo dui non eros fringilla, eget sagittis enim placerat. Integer sed nunc leo. Donec interdum felis tortor, finibus fringilla nisi finibus id. Sed placerat, felis ut laoreet semper, nisi ante ullamcorper lacus, at tincidunt elit metus non nibh. Fusce suscipit orci est, tincidunt eleifend odio porttitor et. Aliquam ac velit non orci ullamcorper molestie at ac enim. Curabitur in placerat mi.\n\nMauris dignissim efficitur magna nec pellentesque. Curabitur vulputate, ligula nec dictum tempus, metus urna aliquet nisl, sed consequat nisi nisl sit amet lectus. Integer ac ornare dui. Mauris est lacus, ullamcorper ac tellus id, ultricies volutpat nisi. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Quisque semper quis purus vel aliquam. Donec hendrerit pharetra suscipit. Fusce tristique ipsum elit, id vestibulum nibh feugiat id. Integer volutpat nibh et sem imperdiet, eget dapibus diam laoreet. Praesent feugiat nibh sed magna ullamcorper, nec viverra mi tristique. Fusce rhoncus sapien ultrices, porttitor lectus id, condimentum dui. Etiam at iaculis nisl. Duis vulputate, erat at hendrerit tristique, enim velit luctus dui, in malesuada augue ex quis elit. Maecenas libero dui, venenatis ut lorem quis, hendrerit aliquam odio. Cras sit amet faucibus erat. ','Beach accessibility','\n Quisque in ante nec nisi aliquam eleifend. Ut efficitur, eros ac bibendum tempor, diam ante laoreet tortor, sit amet rhoncus mauris neque non mauris. Vestibulum cursus sapien risus. ','publish','closed','closed','','beach-accessibility','','','2015-09-07 15:26:21','2015-09-07 15:26:21','',0,'http://showcase.omnicom-dev.com/home-made/?post_type=portfolio&p=155',0,'portfolio','',0);
INSERT INTO `smrc_posts` VALUES (156,1,'2015-09-07 15:34:35','2015-09-07 15:34:35','\n Phasellus non lorem quis erat scelerisque efficitur. Nullam mattis odio magna, vel viverra magna viverra nec. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Donec mattis fermentum diam, vitae dictum est convallis et. Aenean mauris lorem, sodales eget condimentum nec, faucibus vitae est. Fusce vulputate odio non mollis commodo. Curabitur efficitur id tellus at imperdiet. Vestibulum commodo dui non eros fringilla, eget sagittis enim placerat. Integer sed nunc leo. Donec interdum felis tortor, finibus fringilla nisi finibus id. Sed placerat, felis ut laoreet semper, nisi ante ullamcorper lacus, at tincidunt elit metus non nibh. Fusce suscipit orci est, tincidunt eleifend odio porttitor et. Aliquam ac velit non orci ullamcorper molestie at ac enim. Curabitur in placerat mi.\n\nMauris dignissim efficitur magna nec pellentesque. Curabitur vulputate, ligula nec dictum tempus, metus urna aliquet nisl, sed consequat nisi nisl sit amet lectus. Integer ac ornare dui. Mauris est lacus, ullamcorper ac tellus id, ultricies volutpat nisi. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Quisque semper quis purus vel aliquam. Donec hendrerit pharetra suscipit. Fusce tristique ipsum elit, id vestibulum nibh feugiat id. Integer volutpat nibh et sem imperdiet, eget dapibus diam laoreet. Praesent feugiat nibh sed magna ullamcorper, nec viverra mi tristique. Fusce rhoncus sapien ultrices, porttitor lectus id, condimentum dui. Etiam at iaculis nisl. Duis vulputate, erat at hendrerit tristique, enim velit luctus dui, in malesuada augue ex quis elit. Maecenas libero dui, venenatis ut lorem quis, hendrerit aliquam odio. Cras sit amet faucibus erat. ','Hotel pool reopened','\n Phasellus non lorem quis erat scelerisque efficitur. Nullam mattis odio magna, vel viverra magna viverra nec. Pellentesque habitant morbi tristique senectus et netus et malesuada. ','publish','closed','closed','','hotel-pool-reopened','','','2015-09-07 15:34:35','2015-09-07 15:34:35','',0,'http://showcase.omnicom-dev.com/home-made/?post_type=portfolio&p=156',0,'portfolio','',0);
INSERT INTO `smrc_posts` VALUES (230,1,'2021-03-24 09:51:48','2021-03-24 09:51:48','<span dir=\"ltr\">The new Adult Dinghy Sailing Program is underway. Hosted by coordinator Heidi Hall, a hearty group of adults took them helm of the club Opti\'s and Lasers, most often used by our juniors. The new program gives the older crowd a chance to get hands on learning. All March sessions were filled to capacity and as restrictions from Covid-19 ease, Heidi is expecting full sessions for the foreseeable future. </span>\r\n\r\n<span dir=\"ltr\">The program runs on </span><span dir=\"ltr\">Saturdays with the exception of Saturday, April 17th </span><span dir=\"ltr\">when the SUP Clinic will take place. </span><span dir=\"ltr\">If you have always wanted to sail your own boat or would </span><span dir=\"ltr\">like to volunteer please contact </span><a href=\"mailto:adultsailing@mpyc.org\" target=\"_blank\" rel=\"noopener\"><span dir=\"ltr\">adultsailing@mpyc.org</span></a><span dir=\"ltr\"> to </span><span dir=\"ltr\">join the fun! These 2.5 hour dinghy sessions provide </span><span dir=\"ltr\">MPYC members a chance to sail in Optis and Lasers in </span><span dir=\"ltr\">the harbor and on the Bay. This is a fun, relaxed, and supportive </span><span dir=\"ltr\">sailing environment where everyone progresses at his/her/</span><span dir=\"ltr\">their own pace and comfort! In addition to personalized </span><span dir=\"ltr\">sailing instruction, you’ll meet new friends to socialize </span><span dir=\"ltr\">with back at the club.</span>\r\n\r\n<span dir=\"ltr\">We hope to see you down at K Dock!</span>','Adults in Dinghys','The new Adult Dinghy Sailing Program is underway. Hosted by coordinator Heidi Hall, a hearty group of adults took them helm of the club Opti\'s and Lasers, most often used by our juniors.','publish','open','open','','adults-in-dinghys','','','2021-04-08 09:45:18','2021-04-08 09:45:18','',0,'http://showcase.omnicom-dev.com/home-made/?p=230',0,'post','',0);
INSERT INTO `smrc_posts` VALUES (232,1,'2021-03-30 09:52:08','2021-03-30 09:52:08','After a year\'s absence due to the Coronavirus pandemic, the Spinnaker Cup and California Offshore Race Week are set to return to MPYC. The prestigious multi-leg offshore regatta is will start with the Spinnaker Cup May 29-30. The Cup is the first leg of the competition hosted jointly by Encinal YC, Monterey Peninsula YC, Santa Barbara YC and San Diego YC.\r\n\r\nThe Spinnaker Cup course runs from San Francisco Bay to Monterey. Sailors then tackle leg 2 from MPYC to Santa Barbara Yacht Club in the Coastal Cup. The final test is the final leg from Santa Barbara to San Diego in the SoCal 300. Scores from all three legs are combined to determine the overall CA500 winner of the week-long event.\r\n\r\n[caption id=\"attachment_1240\" align=\"alignright\" width=\"320\"]<img class=\"wp-image-1240 size-medium\" src=\"http://mpycdev.theomggroup.com/wp-content/uploads/2021/03/luckyduck-320x168.jpg\" alt=\"\" width=\"320\" height=\"168\" /> Dave MacEwen\'s Lucky Duck[/caption]\r\n\r\nMPYC\'s own Dave MacEwen and his Lucky Duck team claimed top honors in the event in 2018 on the familiar blue Santa Cruz 52. Lucky Duck took top honors in the Spinnaker Cup, second in the Coastal Cup and 3rd in the SoCall 300. Lucky Duck won both its division and in points overall, marking the skipper\'s best performance in four California Offshore Race Week appearances.\r\n\r\nMPYC Vice Commodore Scott Brubaker is the MPYC organizer for the event and is excited the big boats are returning after a year off. \"We were worried the Spinnaker Cup might be delayed again because of Covid restrictions from the state,\" he said. \"But case numbers are dropping, new precautions are in place, and we\'re looking forward to a great event.\"\r\n\r\nLearn more about Spinnaker Cup and CORW <a href=\"https://offshoreraceweek.com/\">here</a>.','Spinnaker Cup 2021','After a year\'s absence due to the Coronavirus pandemic, the Spinnaker Cup and California Offshore Race Week are set to return to MPYC.','publish','open','open','','spinnaker-cup-2021','','','2021-04-09 09:20:49','2021-04-09 09:20:49','',0,'http://showcase.omnicom-dev.com/home-made/?p=232',0,'post','',0);
INSERT INTO `smrc_posts` VALUES (234,1,'2015-07-11 09:53:33','2015-07-11 09:53:33','\n Sed nunc dui, hendrerit et est nec, suscipit hendrerit massa. Donec at diam sit amet ipsum mollis placerat. Phasellus posuere tortor ut nibh pretium auctor. Aenean rhoncus fermentum urna, sed posuere nisl dapibus at. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Etiam ac libero at erat interdum aliquet ac vel sem. Nulla consectetur in quam sit amet finibus. Duis viverra iaculis ante vitae faucibus. Phasellus eu nulla ex. Praesent eget enim quis arcu laoreet interdum.\n\nVivamus convallis ligula felis, id semper nulla maximus porta. Nam et varius magna. Nunc pulvinar, justo eu rutrum pellentesque, urna nisl finibus lorem, id auctor massa velit sed ligula. Sed porta nulla sit amet tristique luctus.\n\nPhasellus vitae porttitor eros. Donec rutrum varius mauris quis malesuada. Vivamus tempor risus elit, vitae pharetra nunc porttitor in. Praesent euismod orci tellus, nec facilisis ante placerat vitae. Integer pharetra gravida massa, a hendrerit libero pulvinar ut. Maecenas ac ante eget sapien gravida lacinia. Cras lacinia rutrum leo eget euismod. Duis augue est, consectetur egestas lacus sed, pharetra egestas enim. Praesent molestie leo neque, non finibus libero sollicitudin non. Mauris id sodales ligula, non sollicitudin nisl. ','San Diego from birds view','\n Vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla. ','publish','open','open','','san-diego-from-birsds-view','','','2015-07-11 09:53:33','2015-07-11 09:53:33','',0,'http://showcase.omnicom-dev.com/home-made/?p=234',0,'post','',0);
INSERT INTO `smrc_posts` VALUES (243,1,'2015-09-08 10:15:45','2015-09-08 10:15:45','\n Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ulla.\nLorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.\nUt wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla\n<blockquote>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</blockquote>\nUt wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla facilisi.\nNam liber tempor cum soluta nobis eleifend option congue nihil imperdiet doming id quod mazim placerat facer possim assum. Typi non habent claritatem insitam; est usus legentis in iis qui facit eorum claritatem. Investigationes demonstraverunt lectores legere me lius quod ii legunt saepius. Claritas est etiam processus dynamicus, qui sequitur mutationem consuetudium lectorum. Mirum est notare quam littera gothica, quam nunc putamus parum claram, anteposuerit litterarum formas humanitatis per seacula quarta decima et quinta decima. Eodem modo typi, qui nunc nobis videntur parum clari, fiant sollemnes in futurum. ','Beach prepared for new season','\n Suspendisse pharetra mattis molestie. Sed vitae tempus ipsum. Nam ultrices elit quis lectus suscipit, id cursus nisl tristique. Aenean id dapibus lacus. Sed a mollis felis, eu lobortis purus. ','publish','open','open','','beach-prepared-for-new-season','','','2015-09-08 10:15:45','2015-09-08 10:15:45','',0,'http://showcase.omnicom-dev.com/home-made/?p=243',0,'post','',2);
INSERT INTO `smrc_posts` VALUES (251,1,'2015-08-06 10:20:11','2015-08-06 10:20:11','\n Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ulla.\nLorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.\nUt wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla\n<blockquote>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</blockquote>\nUt wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla facilisi.\nNam liber tempor cum soluta nobis eleifend option congue nihil imperdiet doming id quod mazim placerat facer possim assum. Typi non habent claritatem insitam; est usus legentis in iis qui facit eorum claritatem. Investigationes demonstraverunt lectores legere me lius quod ii legunt saepius. Claritas est etiam processus dynamicus, qui sequitur mutationem consuetudium lectorum. Mirum est notare quam littera gothica, quam nunc putamus parum claram, anteposuerit litterarum formas humanitatis per seacula quarta decima et quinta decima. Eodem modo typi, qui nunc nobis videntur parum clari, fiant sollemnes in futurum. ','New interconnecting rooms','\n Ut vitae fermentum diam. Quisque ultricies a libero non feugiat. Maecenas nec purus eu leo scelerisque auctor. In venenatis ligula quis neque facilisis luctus. ','publish','open','open','','new-interconnecting-rooms','','','2015-08-06 10:20:11','2015-08-06 10:20:11','',0,'http://showcase.omnicom-dev.com/home-made/?p=251',0,'post','',0);
INSERT INTO `smrc_posts` VALUES (266,1,'2021-04-07 08:50:19','2021-04-07 08:50:19','The Commodore and Board of Directors are updating club policies based on guidance from the Monterey County Health Department and California state health officials. Currently, restrictions are easing in Monterey County and we\'re hopeful that pattern will continue. At this time, masks are required at MPYC events and in the clubhouse when not actively eating or drinking and there a capacity limitations in place.\r\n<blockquote>The safety of our members and guests is our first priority.</blockquote>\r\n\"Safety is paramount here,\" said Commodore Jean DuPreez. \"But we are especially encouraged that the vast majority of our members are either fully vaccinated or have received their first shot to prevent the spread of Covid-19.\r\n\r\nGiven capacity limitations, members are encouraged to make reservations for dining or drinks on the deck. Should you have any questions regarding the current Covid protection status at the club, don\'t hesitate to call the office.','Covid-19 Precautions','The Commodore and Board of Directors are updating club policies based on guidance from the Monterey County Health Department and California state health officials. ','publish','open','open','','covid-update','','','2021-04-08 08:54:29','2021-04-08 08:54:29','',0,'http://showcase.omnicom-dev.com/home-made/?p=266',0,'post','',0);
INSERT INTO `smrc_posts` VALUES (287,1,'2015-09-01 14:01:20','2015-09-01 14:01:20','\n Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ulla.\nLorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.\nUt wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla\n<blockquote>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</blockquote>\nUt wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla facilisi.\nNam liber tempor cum soluta nobis eleifend option congue nihil imperdiet doming id quod mazim placerat facer possim assum. Typi non habent claritatem insitam; est usus legentis in iis qui facit eorum claritatem. Investigationes demonstraverunt lectores legere me lius quod ii legunt saepius. Claritas est etiam processus dynamicus, qui sequitur mutationem consuetudium lectorum. Mirum est notare quam littera gothica, quam nunc putamus parum claram, anteposuerit litterarum formas humanitatis per seacula quarta decima et quinta decima. Eodem modo typi, qui nunc nobis videntur parum clari, fiant sollemnes in futurum. ','Kaskade live from San Diego','\n Ut vitae fermentum diam. Quisque ultricies a libero non feugiat. Maecenas nec purus eu leo scelerisque auctor. In venenatis ligula quis neque facilisis luctus. In ipsum elit, mollis viverra. ','publish','open','open','','kaskade-live-from-san-diego','','','2015-09-01 14:01:20','2015-09-01 14:01:20','',0,'http://showcase.omnicom-dev.com/home-made/?p=287',0,'post','',0);
INSERT INTO `smrc_posts` VALUES (289,1,'2015-08-01 14:03:37','2015-08-01 14:03:37','\n Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.\n<blockquote>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</blockquote>\nUt wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla facilisi. ','The ocean is my friend','\n Vivamus at convallis dui. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Donec egestas dolor vel pharetra consequat. Nullam ac leo non magna blandit fermentum a nec lectus. ','publish','open','open','','the-ocean-is-my-friend','','','2015-08-01 14:03:37','2015-08-01 14:03:37','',0,'http://showcase.omnicom-dev.com/home-made/?p=289',0,'post','',0);
INSERT INTO `smrc_posts` VALUES (291,1,'2015-08-25 14:08:35','2015-08-25 14:08:35','\n Vivamus at convallis dui. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Donec egestas dolor vel pharetra consequat. Nullam ac leo non magna blandit fermentum a nec lectus. Maecenas sed nisi in mauris ultrices dapibus. Etiam ex quam, pellentesque id condimentum sed, viverra non lacus. Curabitur sagittis lobortis cursus. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Fusce maximus ante tristique tortor aliquam, quis euismod quam maximus. Pellentesque eu libero in tortor sodales tempus. Integer rutrum arcu eu iaculis luctus. Suspendisse potenti. Sed sed tortor id lectus accumsan interdum. Etiam non congue quam. Morbi hendrerit nisi ac justo mattis bibendum.\n\nAliquam et ullamcorper ipsum. Morbi eu magna massa. Praesent aliquet mi in velit tempor fermentum. Maecenas in euismod sapien. Sed vehicula ullamcorper massa eget placerat. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque vel mauris sit amet tellus scelerisque dignissim eu a nulla. Fusce luctus eleifend finibus. Etiam dignissim, sem et ornare ultrices, tellus ex efficitur mi, et blandit nibh felis quis nisl. Suspendisse magna metus, dictum in odio sit amet, feugiat egestas nunc. Aenean posuere ullamcorper libero a pharetra. Sed laoreet gravida commodo. Vestibulum ut imperdiet nulla. Aliquam erat volutpat.\n<blockquote>Pellentesque ut augue nunc. Donec faucibus finibus diam non congue. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas.</blockquote>\nDonec finibus nisl ipsum, ac blandit nisi sodales vitae. Pellentesque pulvinar aliquam enim dignissim lobortis. Donec augue nulla, luctus nec lacus ac, egestas dictum tellus. Ut ac justo ut ante vehicula venenatis vulputate a nibh. In consectetur pulvinar dolor quis aliquet. Aliquam feugiat turpis magna, vitae interdum mauris sodales et. Cras non ex tempor, consequat sem ut, varius dolor.\n\nNullam a gravida sem, quis congue augue. Pellentesque feugiat turpis a orci commodo condimentum. Praesent at ornare dui, non lacinia lorem. Ut pharetra arcu eu erat dapibus tincidunt. Curabitur iaculis, est id egestas sodales, nisl risus iaculis tellus, in facilisis elit felis sed nulla. Proin elit metus, euismod eget leo vitae, tincidunt vestibulum justo. Nullam pellentesque justo nibh, nec vulputate nisl dapibus pharetra. Integer nec ex at turpis convallis egestas posuere sit amet justo. Fusce vitae arcu nec nulla convallis lobortis sollicitudin vitae lacus. Duis lacinia enim id velit pharetra laoreet. Sed eu nulla sodales, tempus metus a, tempus nulla. ','What to do when in San Diego','\n Fusce vitae arcu nec nulla convallis lobortis sollicitudin vitae lacus. Duis lacinia enim id velit pharetra laoreet. Sed eu nulla sodales, tempus metus a, tempus nulla. ','publish','open','open','','what-to-do-when-in-san-diego','','','2015-08-25 14:08:35','2015-08-25 14:08:35','',0,'http://showcase.omnicom-dev.com/home-made/?p=291',0,'post','',0);
INSERT INTO `smrc_posts` VALUES (293,1,'2015-09-04 07:38:29','2015-09-04 07:38:29','\n Phasellus non lorem quis erat scelerisque efficitur. Nullam mattis odio magna, vel viverra magna viverra nec. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Donec mattis fermentum diam, vitae dictum est convallis et. Aenean mauris lorem, sodales eget condimentum nec, faucibus vitae est. Fusce vulputate odio non mollis commodo. Curabitur efficitur id tellus at imperdiet. Vestibulum commodo dui non eros fringilla, eget sagittis enim placerat. Integer sed nunc leo. Donec interdum felis tortor, finibus fringilla nisi finibus id. Sed placerat, felis ut laoreet semper, nisi ante ullamcorper lacus, at tincidunt elit metus non nibh. Fusce suscipit orci est, tincidunt eleifend odio porttitor et. Aliquam ac velit non orci ullamcorper molestie at ac enim. Curabitur in placerat mi.\n\nMauris dignissim efficitur magna nec pellentesque. Curabitur vulputate, ligula nec dictum tempus, metus urna aliquet nisl, sed consequat nisi nisl sit amet lectus. Integer ac ornare dui. Mauris est lacus, ullamcorper ac tellus id, ultricies volutpat nisi. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Quisque semper quis purus vel aliquam. Donec hendrerit pharetra suscipit. Fusce tristique ipsum elit, id vestibulum nibh feugiat id. Integer volutpat nibh et sem imperdiet, eget dapibus diam laoreet. Praesent feugiat nibh sed magna ullamcorper, nec viverra mi tristique. Fusce rhoncus sapien ultrices, porttitor lectus id, condimentum dui. Etiam at iaculis nisl. Duis vulputate, erat at hendrerit tristique, enim velit luctus dui, in malesuada augue ex quis elit. Maecenas libero dui, venenatis ut lorem quis, hendrerit aliquam odio. Cras sit amet faucibus erat. ','California snapshots','\n Nulla facilisi. Sed vel maximus nisi, ut tristique nulla. Quisque at augue et arcu vulputate finibus. Aenean non justo fermentum. ','publish','closed','closed','','stockholm-snapshots','','','2015-09-04 07:38:29','2015-09-04 07:38:29','',0,'http://showcase.omnicom-dev.com/eiusmond/?post_type=portfolio&p=87',0,'portfolio','',0);
INSERT INTO `smrc_posts` VALUES (294,1,'2015-09-04 07:48:13','2015-09-04 07:48:13','\n Phasellus non lorem quis erat scelerisque efficitur. Nullam mattis odio magna, vel viverra magna viverra nec. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Donec mattis fermentum diam, vitae dictum est convallis et. Aenean mauris lorem, sodales eget condimentum nec, faucibus vitae est. Fusce vulputate odio non mollis commodo. Curabitur efficitur id tellus at imperdiet. Vestibulum commodo dui non eros fringilla, eget sagittis enim placerat. Integer sed nunc leo. Donec interdum felis tortor, finibus fringilla nisi finibus id. Sed placerat, felis ut laoreet semper, nisi ante ullamcorper lacus, at tincidunt elit metus non nibh. Fusce suscipit orci est, tincidunt eleifend odio porttitor et. Aliquam ac velit non orci ullamcorper molestie at ac enim. Curabitur in placerat mi.\n\nMauris dignissim efficitur magna nec pellentesque. Curabitur vulputate, ligula nec dictum tempus, metus urna aliquet nisl, sed consequat nisi nisl sit amet lectus. Integer ac ornare dui. Mauris est lacus, ullamcorper ac tellus id, ultricies volutpat nisi. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Quisque semper quis purus vel aliquam. Donec hendrerit pharetra suscipit. Fusce tristique ipsum elit, id vestibulum nibh feugiat id. Integer volutpat nibh et sem imperdiet, eget dapibus diam laoreet. Praesent feugiat nibh sed magna ullamcorper, nec viverra mi tristique. Fusce rhoncus sapien ultrices, porttitor lectus id, condimentum dui. Etiam at iaculis nisl. Duis vulputate, erat at hendrerit tristique, enim velit luctus dui, in malesuada augue ex quis elit. Maecenas libero dui, venenatis ut lorem quis, hendrerit aliquam odio. Cras sit amet faucibus erat. ','Sounds of San Diego','\n Quisque varius mauris nec neque pellentesque, in luctus ante vulputate. Fusce lectus sapien, sagittis id cursus sit amet, porttitor ultricies tellus. ','publish','closed','closed','','sounds-of-new-york','','','2015-09-04 07:48:13','2015-09-04 07:48:13','',0,'http://showcase.omnicom-dev.com/eiusmond/?post_type=portfolio&p=96',0,'portfolio','',0);
INSERT INTO `smrc_posts` VALUES (295,1,'2015-09-04 07:48:16','2015-09-04 07:48:16','\n Phasellus non lorem quis erat scelerisque efficitur. Nullam mattis odio magna, vel viverra magna viverra nec. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Donec mattis fermentum diam, vitae dictum est convallis et. Aenean mauris lorem, sodales eget condimentum nec, faucibus vitae est. Fusce vulputate odio non mollis commodo. Curabitur efficitur id tellus at imperdiet. Vestibulum commodo dui non eros fringilla, eget sagittis enim placerat. Integer sed nunc leo. Donec interdum felis tortor, finibus fringilla nisi finibus id. Sed placerat, felis ut laoreet semper, nisi ante ullamcorper lacus, at tincidunt elit metus non nibh. Fusce suscipit orci est, tincidunt eleifend odio porttitor et. Aliquam ac velit non orci ullamcorper molestie at ac enim. Curabitur in placerat mi.\n\nMauris dignissim efficitur magna nec pellentesque. Curabitur vulputate, ligula nec dictum tempus, metus urna aliquet nisl, sed consequat nisi nisl sit amet lectus. Integer ac ornare dui. Mauris est lacus, ullamcorper ac tellus id, ultricies volutpat nisi. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Quisque semper quis purus vel aliquam. Donec hendrerit pharetra suscipit. Fusce tristique ipsum elit, id vestibulum nibh feugiat id. Integer volutpat nibh et sem imperdiet, eget dapibus diam laoreet. Praesent feugiat nibh sed magna ullamcorper, nec viverra mi tristique. Fusce rhoncus sapien ultrices, porttitor lectus id, condimentum dui. Etiam at iaculis nisl. Duis vulputate, erat at hendrerit tristique, enim velit luctus dui, in malesuada augue ex quis elit. Maecenas libero dui, venenatis ut lorem quis, hendrerit aliquam odio. Cras sit amet faucibus erat. ','Restaurant sofas, a place to chill','\n Nulla vitae diam arcu. Vestibulum venenatis finibus ipsum, sit amet vulputate arcu pretium sit amet. Fusce ut maximus lacus. Nunc tincidunt, erat ac elementum laoreet, eros diam congue nibh, id commodo. ','publish','closed','closed','','restaurant-sofas','','','2015-09-04 07:48:16','2015-09-04 07:48:16','',0,'http://showcase.omnicom-dev.com/eiusmond/?post_type=portfolio&p=97',0,'portfolio','',0);
INSERT INTO `smrc_posts` VALUES (296,1,'2015-09-04 07:48:18','2015-09-04 07:48:18','\n Phasellus non lorem quis erat scelerisque efficitur. Nullam mattis odio magna, vel viverra magna viverra nec. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Donec mattis fermentum diam, vitae dictum est convallis et. Aenean mauris lorem, sodales eget condimentum nec, faucibus vitae est. Fusce vulputate odio non mollis commodo. Curabitur efficitur id tellus at imperdiet. Vestibulum commodo dui non eros fringilla, eget sagittis enim placerat. Integer sed nunc leo. Donec interdum felis tortor, finibus fringilla nisi finibus id. Sed placerat, felis ut laoreet semper, nisi ante ullamcorper lacus, at tincidunt elit metus non nibh. Fusce suscipit orci est, tincidunt eleifend odio porttitor et. Aliquam ac velit non orci ullamcorper molestie at ac enim. Curabitur in placerat mi.\n\nMauris dignissim efficitur magna nec pellentesque. Curabitur vulputate, ligula nec dictum tempus, metus urna aliquet nisl, sed consequat nisi nisl sit amet lectus. Integer ac ornare dui. Mauris est lacus, ullamcorper ac tellus id, ultricies volutpat nisi. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Quisque semper quis purus vel aliquam. Donec hendrerit pharetra suscipit. Fusce tristique ipsum elit, id vestibulum nibh feugiat id. Integer volutpat nibh et sem imperdiet, eget dapibus diam laoreet. Praesent feugiat nibh sed magna ullamcorper, nec viverra mi tristique. Fusce rhoncus sapien ultrices, porttitor lectus id, condimentum dui. Etiam at iaculis nisl. Duis vulputate, erat at hendrerit tristique, enim velit luctus dui, in malesuada augue ex quis elit. Maecenas libero dui, venenatis ut lorem quis, hendrerit aliquam odio. Cras sit amet faucibus erat. ','Maisonette gets new style','\n Nulla facilisi. Curabitur felis est, venenatis id nibh id, dignissim vulputate nunc. Maecenas pellentesque, lacus vestibulum pretium dapibus, nisi nunc tempus ex, quis blandit felis libero eget lectus. Vestibulum sapien libero, ornare non libero sit amet, suscipit placerat dolor. Nam bibendum ut purus. ','publish','closed','closed','','maisonette-gets-new-style','','','2015-09-04 07:48:18','2015-09-04 07:48:18','',0,'http://showcase.omnicom-dev.com/eiusmond/?post_type=portfolio&p=98',0,'portfolio','',0);
INSERT INTO `smrc_posts` VALUES (311,1,'2016-02-24 10:02:58','2016-02-24 10:02:58','\n ','summer-awards','\n ','inherit','open','closed','','summer-awards','','','2016-02-24 10:02:58','2016-02-24 10:02:58','',0,'http://mpycdev.theomggroup.com/wp-content/uploads/2016/02/summer-awards.png',0,'attachment','image/png',0);
INSERT INTO `smrc_posts` VALUES (313,1,'2016-02-24 13:26:37','2016-02-24 13:26:37',' ','summer-news-1',' ','inherit','open','closed','','summer-news-1','','','2021-04-08 09:24:30','2021-04-08 09:24:30','',0,'http://mpycdev.theomggroup.com/wp-content/uploads/2015/08/summer-news-1.jpg',0,'attachment','image/jpeg',0);
INSERT INTO `smrc_posts` VALUES (314,1,'2016-02-24 13:26:40','2016-02-24 13:26:40',' ','summer-news-2',' ','inherit','open','closed','','summer-news-2','','','2021-04-08 05:37:09','2021-04-08 05:37:09','',0,'http://mpycdev.theomggroup.com/wp-content/uploads/2015/08/summer-news-2.jpg',0,'attachment','image/jpeg',0);
INSERT INTO `smrc_posts` VALUES (315,1,'2016-02-24 13:26:43','2016-02-24 13:26:43',' ','summer-news-3',' ','inherit','open','closed','','summer-news-3','','','2021-04-08 09:36:02','2021-04-08 09:36:02','',0,'http://mpycdev.theomggroup.com/wp-content/uploads/2015/08/summer-news-3.jpg',0,'attachment','image/jpeg',0);
INSERT INTO `smrc_posts` VALUES (321,1,'2016-02-24 13:42:20','2016-02-24 13:42:20',' ','summer-star-big',' ','inherit','open','closed','','summer-star-big','','','2021-04-07 10:15:05','2021-04-07 10:15:05','',0,'http://mpycdev.theomggroup.com/wp-content/uploads/2016/02/summer-star-big.png',0,'attachment','image/png',0);
INSERT INTO `smrc_posts` VALUES (322,1,'2016-02-24 13:42:22','2016-02-24 13:42:22','\n ','summer-star-brown','\n ','inherit','open','closed','','summer-star-brown','','','2016-02-24 13:42:22','2016-02-24 13:42:22','',0,'http://mpycdev.theomggroup.com/wp-content/uploads/2016/02/summer-star-brown.png',0,'attachment','image/png',0);
INSERT INTO `smrc_posts` VALUES (323,1,'2016-02-24 13:42:25','2016-02-24 13:42:25',' ','summer-star-red',' ','inherit','open','closed','','summer-star-red','','','2021-04-07 11:32:49','2021-04-07 11:32:49','',0,'http://mpycdev.theomggroup.com/wp-content/uploads/2016/02/summer-star-red.png',0,'attachment','image/png',0);
INSERT INTO `smrc_posts` VALUES (325,1,'2016-02-24 14:22:09','2016-02-24 14:22:09','\n ','Single post','\n ','publish','closed','closed','','single-post','','','2016-02-24 14:22:09','2016-02-24 14:22:09','',971,'http://hotel.omnicom-dev.com/summer/?page_id=325',0,'page','',0);
INSERT INTO `smrc_posts` VALUES (339,1,'2016-02-25 10:56:21','2016-02-25 10:56:21','\n [bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSemiSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/3\" align=\"left\" vertical_align=\"btMiddleVertical\" border=\"no_border\" cell_padding=\"default\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Executive\" headline=\"Deluxe Suite\" headline_size=\"extralarge\" dash=\"top\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][/bt_column][bt_column width=\"2/3\" align=\"left\" vertical_align=\"btMiddleVertical\" border=\"no_border\" cell_padding=\"default\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_text]\n\nAt the heart of San Diego, on one of the most colorful beaches, right next to the Pacific ocean, lies the Hotel California, most famous for it’s easy going staff and vacation you’ll never forget...\n\n[/bt_text][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"bottomSemiSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\"][bt_slider height=\"auto\" auto_play=\"\" hide_arrows=\"\" hide_paging=\"\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"371\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"372\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"373\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"377\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][/bt_slider][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"2/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_row_inner][bt_column_inner width=\"1/1\" align=\"left\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"btTextIndent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_text]\n\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Ut interdum nisi a justo dignissim, id sollicitudin ipsum suscipit. Ut magna purus, blandit quis bibendum sodales, rhoncus quis nibh. Sed gravida est leo, sed tristique nulla consequat vel. Donec id lacus id nisl pharetra pharetra. Interdum et malesuada fames ac ante ipsum primis in faucibus. Suspendisse nec leo nec dui porttitor varius sit amet ac velit.\n\nVivamus ornare viverra ex non rutrum. Cras pulvinar vitae eros in mollis. Donec tincidunt, metus nec tempor ornare, ligula est vehicula mauris, scelerisque cursus arcu sem vitae quam. Suspendisse rutrum aliquam odio, non vehicula nulla pellentesque et.\n<blockquote>Aliquam tincidunt sollicitudin lectus, quis consequat nisi elementum interdum. Etiam ac scelerisque magna. Nulla dignissim, nisi ac varius porta, velit dolor pretium.</blockquote>\nVestibulum placerat eleifend arcu at pellentesque. Phasellus vitae augue at ligula ullamcorper suscipit. Sed euismod, odio ut ullamcorper bibendum, erat quam gravida nibh, pellentesque eleifend urna dui ac nibh. Morbi auctor cursus vestibulum. Integer tristique neque erat, sed tempor urna semper a.\n\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSemiSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_grid_gallery ids=\"371,378,377,376,375,374,373,372\" format=\"\" lightbox=\"yes\" grid_gap=\"20\" columns=\"4\" links=\"\" el_class=\"\" el_style=\"\"][/bt_grid_gallery][/bt_column][bt_column width=\"1/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"323\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"width: 38px; margin: -18px auto auto 20px; position: absolute; z-index: 1;\"][/bt_image][bt_row_inner][bt_column_inner width=\"1/1\" align=\"left\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"btHighlight\" text_indent=\"btTextIndent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Amenities\" headline_size=\"medium\" dash=\"no\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"cs_ea18\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea19\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea2c\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1c\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea20\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea33\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\n\nSize: 60 square feet\nView: Sea or Garden view\nTerraces: Balcony\nOccupants: Maximum 3 persons\nRoom service: Available per request\n\n[/bt_text][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/2\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"BOOK NOW\" icon=\"no_icon\" url=\"\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Medium\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][/bt_column_inner][bt_column_inner width=\"1/2\" align=\"left\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"FROM\" headline=\"$99 / night\" headline_size=\"medium\" dash=\"no\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/1\" align=\"left\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"btHighlight\" text_indent=\"btTextIndent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_custom_menu menu=\"Rooms\" el_class=\"\" el_style=\"\"][/bt_custom_menu][/bt_column_inner][/bt_row_inner][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"dark\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#584528\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\"][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\n\n[contact-form-7 id=\"397\" title=\"Booking form\"]\n\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"2/3\"][bt_header superheadline=\"\" headline=\"Other Rooms\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"If you chose to stay with us you will enjoy modern home comforts in a traditional setting. Whether you are looking for a short weekend break or a longer holiday, we offer a range of packages that will cater for all.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/3\"][/bt_column][/bt_row][bt_row][bt_column width=\"1/4\"][bt_image image=\"44\" caption_text=\"View\" size=\"\" shape=\"square\" url=\"room details\" target=\"_self\" el_class=\"\" el_style=\"\" caption=\"Double room\" show_titles=\"no\" caption_title=\"Room details\"][bt_header superheadline=\"Room features\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"fa_f21a\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"s7_e67b\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"s7_e675\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"DELUXE\" headline=\"Double Room\" headline_size=\"medium\" dash=\"top\" subheadline=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer mollis viverra diam ac ornare. Donec rhoncus nisi in felis congue, at pulvinar nibh dapibus.\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/2\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"1/2\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\"][bt_image image=\"43\" caption_text=\"\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"EXECUTIVE\" headline=\"Junior Suite\" headline_size=\"medium\" dash=\"top\" subheadline=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer mollis viverra diam ac ornare. Donec rhoncus nisi in felis congue, at pulvinar nibh dapibus.\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/2\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"1/2\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\"][bt_image image=\"42\" caption_text=\"\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"DELUXE\" headline=\"Double Room\" headline_size=\"medium\" dash=\"top\" subheadline=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer mollis viverra diam ac ornare. Donec rhoncus nisi in felis congue, at pulvinar nibh dapibus.\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/2\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"1/2\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\"][bt_image image=\"41\" caption_text=\"\" size=\"medium\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"DELUXE\" headline=\"Family Room\" headline_size=\"medium\" dash=\"top\" subheadline=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer mollis viverra diam ac ornare. Donec rhoncus nisi in felis congue, at pulvinar nibh dapibus.\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/2\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"1/2\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section] ','Room details','\n ','publish','closed','closed','','room-details','','','2016-02-25 10:56:21','2016-02-25 10:56:21','',626,'http://hotel.omnicom-dev.com/summer/?page_id=339',0,'page','',0);
INSERT INTO `smrc_posts` VALUES (342,1,'2016-02-25 11:05:08','2016-02-25 11:05:08','\n ','summer-map-pin','\n ','inherit','open','closed','','summer-map-pin','','','2016-02-25 11:05:08','2016-02-25 11:05:08','',0,'http://mpycdev.theomggroup.com/wp-content/uploads/2016/02/summer-map-pin.png',0,'attachment','image/png',0);
INSERT INTO `smrc_posts` VALUES (366,1,'2016-02-29 11:49:14','2016-02-29 11:49:14','\n ','summer-icon','\n ','inherit','open','closed','','summer-icon','','','2016-02-29 11:49:14','2016-02-29 11:49:14','',0,'http://mpycdev.theomggroup.com/wp-content/uploads/2016/02/summer-icon.png',0,'attachment','image/png',0);
INSERT INTO `smrc_posts` VALUES (369,1,'2016-02-29 13:38:19','2016-02-29 13:38:19','\n ','Shop sidebar','\n ','publish','closed','closed','','shop-sidebar','','','2016-02-29 13:38:19','2016-02-29 13:38:19','',0,'http://hotel.omnicom-dev.com/summer/?post_type=sidebar&p=369',0,'sidebar','',0);
INSERT INTO `smrc_posts` VALUES (371,1,'2016-02-29 14:17:31','2016-02-29 14:17:31','\n ','summer-single-room-1','\n ','inherit','open','closed','','summer-single-room-1','','','2016-02-29 14:17:31','2016-02-29 14:17:31','',0,'http://mpycdev.theomggroup.com/wp-content/uploads/2016/02/summer-single-room-1.jpg',0,'attachment','image/jpeg',0);
INSERT INTO `smrc_posts` VALUES (372,1,'2016-02-29 14:17:32','2016-02-29 14:17:32','\n ','summer-single-room-2','\n ','inherit','open','closed','','summer-single-room-2','','','2016-02-29 14:17:32','2016-02-29 14:17:32','',0,'http://mpycdev.theomggroup.com/wp-content/uploads/2016/02/summer-single-room-2.jpg',0,'attachment','image/jpeg',0);
INSERT INTO `smrc_posts` VALUES (373,1,'2016-02-29 14:17:34','2016-02-29 14:17:34','\n ','summer-single-room-3','\n ','inherit','open','closed','','summer-single-room-3','','','2016-02-29 14:17:34','2016-02-29 14:17:34','',0,'http://mpycdev.theomggroup.com/wp-content/uploads/2016/02/summer-single-room-3.jpg',0,'attachment','image/jpeg',0);
INSERT INTO `smrc_posts` VALUES (374,1,'2016-02-29 14:17:35','2016-02-29 14:17:35','\n ','summer-single-room-4','\n ','inherit','open','closed','','summer-single-room-4','','','2016-02-29 14:17:35','2016-02-29 14:17:35','',0,'http://mpycdev.theomggroup.com/wp-content/uploads/2016/02/summer-single-room-4.jpg',0,'attachment','image/jpeg',0);
INSERT INTO `smrc_posts` VALUES (375,1,'2016-02-29 14:17:36','2016-02-29 14:17:36','\n ','summer-single-room-5','\n ','inherit','open','closed','','summer-single-room-5','','','2016-02-29 14:17:36','2016-02-29 14:17:36','',0,'http://mpycdev.theomggroup.com/wp-content/uploads/2016/02/summer-single-room-5.jpg',0,'attachment','image/jpeg',0);
INSERT INTO `smrc_posts` VALUES (376,1,'2016-02-29 14:17:37','2016-02-29 14:17:37','\n ','summer-single-room-6','\n ','inherit','open','closed','','summer-single-room-6','','','2016-02-29 14:17:37','2016-02-29 14:17:37','',0,'http://mpycdev.theomggroup.com/wp-content/uploads/2016/02/summer-single-room-6.jpg',0,'attachment','image/jpeg',0);
INSERT INTO `smrc_posts` VALUES (377,1,'2016-02-29 14:17:38','2016-02-29 14:17:38','\n ','summer-single-room-7','\n ','inherit','open','closed','','summer-single-room-7','','','2016-02-29 14:17:38','2016-02-29 14:17:38','',0,'http://mpycdev.theomggroup.com/wp-content/uploads/2016/02/summer-single-room-7.jpg',0,'attachment','image/jpeg',0);
INSERT INTO `smrc_posts` VALUES (378,1,'2016-02-29 14:17:40','2016-02-29 14:17:40','\n ','summer-single-room-8','\n ','inherit','open','closed','','summer-single-room-8','','','2016-02-29 14:17:40','2016-02-29 14:17:40','',0,'http://mpycdev.theomggroup.com/wp-content/uploads/2016/02/summer-single-room-8.jpg',0,'attachment','image/jpeg',0);
INSERT INTO `smrc_posts` VALUES (397,1,'2016-03-01 09:13:15','2016-03-01 09:13:15','\n <div class=\"boldRow btBookingRow\" style=\"z-index: 10;\">\n<div class=\"rowItem col-xs-12 col-sm-6 col-lg-2\">\n[date* ArrivalDate min:today max:today+60days id:bookingArrivalDate placeholder \"Arrival\"]\n</div>\n<div class=\"btClear btSeparator topSmallSpaced noBorder visible-xs visible-ms\"><hr></div>\n<div class=\"rowItem col-xs-12 col-sm-6 col-lg-2\">\n[date* DepartureDate min:today+1day max:today+61days id:bookingDepartureDate placeholder \"Departure\"]\n</div>\n<div class=\"btClear btSeparator topSmallSpaced noBorder visible-xs visible-ms visible-sm visible-md\"><hr></div>\n<div class=\"rowItem col-xs-12 col-sm-6 col-lg-2\">\n[select* Room placeholder \"Choose a Room\" \"Standard Double Room\" \"Standard Family Room\" \"Garden Family Room\" \"Deluxe Double Room\" \"Executive Junior Suite\" \"Executive Deluxe Suite\" \"Executive Double Suite\" \"Maisonette\"]\n</div>\n<div class=\"btClear btSeparator topSmallSpaced noBorder visible-xs visible-ms\"><hr></div>\n<div class=\"rowItem col-xs-12 col-sm-6 col-lg-2\">\n[select* Adults placeholder \"How many Adults\" \"1\" \"2\" \"3\" \"4\" \"5\" \"6\" \"7\" \"8\" \"9\" \"10\"]\n</div>\n<div class=\"btClear btSeparator topSmallSpaced noBorder visible-xs visible-ms visible-sm visible-md\"><hr></div>\n<div class=\"rowItem col-xs-12 col-sm-6 col-lg-2\">\n[select Children placeholder \"How many Children\" \"1\" \"2\" \"3\" \"4\" \"5\" \"6\" \"7\" \"8\" \"9\" \"10\"]\n</div>\n<div class=\"btClear btSeparator topSmallSpaced noBorder visible-xs visible-ms\"><hr></div>\n<div class=\"rowItem col-xs-12 col-sm-6 col-lg-2\">\n<div class=\"btBookingNext\">BOOK NOW</div>\n</div>\n</div>\n\n<div class=\"boldRow btBookingRow\">\n<div class=\"rowItem col-xs-12 col-sm-4 col-lg-5\">\n[text* Name placeholder \"Your Name\"]\n</div>\n<div class=\"btClear btSeparator topSmallSpaced noBorder visible-xs visible-ms\"><hr></div>\n<div class=\"rowItem col-xs-12 col-sm-4 col-lg-5\">\n[email* Email placeholder \"Your Email\"]\n</div>\n<div class=\"btClear btSeparator topSmallSpaced noBorder visible-xs visible-ms\"><hr></div>\n<div class=\"rowItem col-xs-12 col-sm-4 col-lg-2\">\n[submit \"SEND\"]\n</div>\n</div>\nHotel California form\n[name] <wordpress@hotel.bold-themes.com>\nName: [Name]\nEmail: [Email]\n\nArrival date: [ArrivalDate]\nDeparture: [DepartureDate]\nRoom: [Room]\nAdults: [Adults]\nChildren: [Children]\n\n\n--\nThis e-mail was sent from a contact form on Hotel California (http://hotel.bold-themes.com/summer)\ninfo@bold-themes.com\nReply-To: [Email]\n\n\n\n\nHotel California \"[your-subject]\"\nHotel California <wordpress@hotel.omnicom-dev.com>\nMessage Body:\n[your-message]\n\n--\nThis e-mail was sent from a contact form on Hotel California (http://hotel.omnicom-dev.com/summer)\n[your-email]\nReply-To: info@bold-themes.com\n\n\n\nThank you for your message. It has been sent.\nThere was an error trying to send your message. Please try again later.\nOne or more fields have an error. Please check and try again.\nThere was an error trying to send your message. Please try again later.\nYou must accept the terms and conditions before sending your message.\nThe field is required.\nThe field is too long.\nThe field is too short.\nThe date format is incorrect.\nThe date is before the earliest one allowed.\nThe date is after the latest one allowed.\nThere was an unknown error uploading the file.\nYou are not allowed to upload files of this type.\nThe file is too big.\nThere was an error uploading the file.\nThe number format is invalid.\nThe number is smaller than the minimum allowed.\nThe number is larger than the maximum allowed.\nThe answer to the quiz is incorrect.\nYour entered code is incorrect.\nThe e-mail address entered is invalid.\nThe URL is invalid.\nThe telephone number is invalid.\non_submit: \"boldthemes_initBookingForm();\" ','Booking form','\n ','publish','closed','closed','','booking-form','','','2016-03-01 09:13:15','2016-03-01 09:13:15','',0,'http://hotel.omnicom-dev.com/summer/?post_type=wpcf7_contact_form&p=397',0,'wpcf7_contact_form','',0);
INSERT INTO `smrc_posts` VALUES (412,1,'2016-03-08 12:30:49','2016-03-08 12:30:49','\n [bt_section layout=\"boxed\" top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][/bt_row][/bt_section] ','Single product','\n ','publish','closed','closed','','single-product','','','2016-03-08 12:30:49','2016-03-08 12:30:49','',19,'http://hotel.omnicom-dev.com/summer/?page_id=412',0,'page','',0);
INSERT INTO `smrc_posts` VALUES (436,1,'2016-03-11 08:58:07','2016-03-11 08:58:07','\n [bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSemiSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"2/3\" align=\"left\" vertical_align=\"btMiddleVertical\" border=\"no_border\" cell_padding=\"default\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"View before choosing\" headline=\"Photo Gallery\" headline_size=\"extralarge\" dash=\"bottom\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\" subheadline=\"There\'s always something fun to do at Hotel California. Whether it\'s the beach, the sea or just plain activities that will make your day, we can have everything prepared for you and your family.\" el_class=\"\" el_style=\"\"][/bt_header][/bt_column][bt_column width=\"1/3\" align=\"left\" vertical_align=\"btMiddleVertical\" border=\"no_border\" cell_padding=\"default\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"bottomSemiSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"no_animation\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"#e5e5e5\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Exterior\" headline_size=\"large\" dash=\"bottom\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][bt_text]\n\nPhasellus porta faucibus condimentum. Integer nec dignissim nisi. Ut finibus massa ante, vitae interdum lorem hendrerit sit amet. Vivamus orci ligula, auctor non nulla id, iaculis tincidunt ipsum. Nullam ornare accumsan diam, sit amet porta orci fermentum at. Quisque tempus felis sit amet bibendum cursus. Morbi tristique nisl lorem, ac placerat diam mattis quis.\n\n[/bt_text][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"3/4\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_grid_gallery ids=\"457,458,459,460,461,462,463,464,465,466\" format=\"21,11,11,21,21,11,11,21,21,11,11,21\" lightbox=\"yes\" grid_gap=\"10\" columns=\"3\" links=\"\" el_class=\"\" el_style=\"\"][/bt_grid_gallery][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSemiSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"3/4\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_grid_gallery ids=\"467,468,469,470,471\" format=\"21\" lightbox=\"yes\" grid_gap=\"10\" columns=\"3\" links=\"\" el_class=\"\" el_style=\"\"][/bt_grid_gallery][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"no_animation\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"#e5e5e5\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"The Beach\" headline_size=\"large\" dash=\"bottom\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][bt_text]\n\nFusce in neque magna. Suspendisse eget blandit ligula. Nam at mi et risus imperdiet tristique in non nibh. Suspendisse sit amet convallis urna. Sed ac eleifend ex, in interdum nunc. Donec pharetra dolor dolor, ut rhoncus neque tincidunt vel. Interdum et malesuada fames ac ante ipsum primis in faucibus.\n\n[/bt_text][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSemiSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"no_animation\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"#e5e5e5\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"The Rooms\" headline_size=\"large\" dash=\"bottom\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][bt_text]\n\nInteger commodo elementum pharetra. Phasellus porta tincidunt metus sit amet euismod. Vivamus sed turpis consequat, vulputate libero vitae, lobortis felis. Sed ac hendrerit tellus. Phasellus justo est, ultricies nec tincidunt vitae, vehicula in nulla. Aenean dictum fermentum mauris sit amet tincidunt. Pellentesque et tincidunt sapien. Pellentesque augue massa, ultrices eu posuere eget, faucibus non nibh.\n\n[/bt_text][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"3/4\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_grid_gallery ids=\"479,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494,495,496\" format=\"21,11,11,21,21,11,11,21,21,11,11,21,21,11,11,21,21,11\" lightbox=\"yes\" grid_gap=\"10\" columns=\"3\" links=\"\" el_class=\"\" el_style=\"\"][/bt_grid_gallery][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSemiSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"3/4\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_grid_gallery ids=\"472,473,474,475,476,477,478\" format=\"21,11,11,21\" lightbox=\"yes\" grid_gap=\"10\" columns=\"3\" links=\"\" el_class=\"\" el_style=\"\"][/bt_grid_gallery][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"no_animation\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"#e5e5e5\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Activities\" headline_size=\"large\" dash=\"bottom\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][bt_text]\n\nFusce sit amet erat eget nunc dictum vestibulum ut sed odio. Morbi id tellus rhoncus, eleifend sapien ut, pharetra est. Nulla congue sit amet ipsum a mollis. Duis eu ullamcorper augue. Suspendisse auctor massa quis eros commodo consectetur. Integer diam neque, suscipit eu condimentum condimentum.\n\n[/bt_text][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section] ','Gallery','\n ','publish','closed','closed','','gallery','','','2016-03-11 08:58:07','2016-03-11 08:58:07','',0,'http://hotel.omnicom-dev.com/summer/?page_id=436',0,'page','',0);
INSERT INTO `smrc_posts` VALUES (446,1,'2016-03-11 12:54:08','2016-03-11 12:54:08','\n ','summer-testimonial-3','\n ','inherit','open','closed','','summer-testimonial-3','','','2016-03-11 12:54:08','2016-03-11 12:54:08','',0,'http://mpycdev.theomggroup.com/wp-content/uploads/2016/02/summer-testimonial-3.jpg',0,'attachment','image/jpeg',0);
INSERT INTO `smrc_posts` VALUES (447,1,'2016-03-11 12:54:09','2016-03-11 12:54:09',' ','summer-testimonial-2',' ','inherit','open','closed','','summer-testimonial-2','','','2021-04-07 09:33:26','2021-04-07 09:33:26','',0,'http://mpycdev.theomggroup.com/wp-content/uploads/2016/02/summer-testimonial-2.jpg',0,'attachment','image/jpeg',0);
INSERT INTO `smrc_posts` VALUES (451,1,'2016-03-14 08:43:48','2016-03-14 08:43:48','\n ','wedding','\n ','inherit','open','closed','','wedding','','','2016-03-14 08:43:48','2016-03-14 08:43:48','',0,'http://mpycdev.theomggroup.com/wp-content/uploads/2016/02/wedding.jpg',0,'attachment','image/jpeg',0);
INSERT INTO `smrc_posts` VALUES (453,1,'2016-03-14 08:43:51','2016-03-14 08:43:51','\n ','family','\n ','inherit','open','closed','','family-2','','','2016-03-14 08:43:51','2016-03-14 08:43:51','',0,'http://mpycdev.theomggroup.com/wp-content/uploads/2016/02/family-1.jpg',0,'attachment','image/jpeg',0);
INSERT INTO `smrc_posts` VALUES (454,1,'2016-03-14 09:29:47','2016-03-14 09:29:47','\n ','lazy-weekend','\n ','inherit','open','closed','','lazy-weekend','','','2016-03-14 09:29:47','2016-03-14 09:29:47','',0,'http://mpycdev.theomggroup.com/wp-content/uploads/2016/02/lazy-weekend-1.jpg',0,'attachment','image/jpeg',0);
INSERT INTO `smrc_posts` VALUES (457,1,'2016-03-14 10:22:43','2016-03-14 10:22:43','\n ','summer-hotel-01','\n ','inherit','open','closed','','summer-hotel-01','','','2016-03-14 10:22:43','2016-03-14 10:22:43','',0,'http://mpycdev.theomggroup.com/wp-content/uploads/2016/03/summer-hotel-01.jpg',0,'attachment','image/jpeg',0);
INSERT INTO `smrc_posts` VALUES (458,1,'2016-03-14 10:22:46','2016-03-14 10:22:46','\n ','summer-hotel-02','\n ','inherit','open','closed','','summer-hotel-02','','','2016-03-14 10:22:46','2016-03-14 10:22:46','',0,'http://mpycdev.theomggroup.com/wp-content/uploads/2016/03/summer-hotel-02.jpg',0,'attachment','image/jpeg',0);
INSERT INTO `smrc_posts` VALUES (459,1,'2016-03-14 10:22:47','2016-03-14 10:22:47','\n ','summer-hotel-03','\n ','inherit','open','closed','','summer-hotel-03','','','2016-03-14 10:22:47','2016-03-14 10:22:47','',0,'http://mpycdev.theomggroup.com/wp-content/uploads/2016/03/summer-hotel-03.jpg',0,'attachment','image/jpeg',0);
INSERT INTO `smrc_posts` VALUES (460,1,'2016-03-14 10:22:49','2016-03-14 10:22:49','\n ','summer-hotel-04','\n ','inherit','open','closed','','summer-hotel-04','','','2016-03-14 10:22:49','2016-03-14 10:22:49','',0,'http://mpycdev.theomggroup.com/wp-content/uploads/2016/03/summer-hotel-04.jpg',0,'attachment','image/jpeg',0);
INSERT INTO `smrc_posts` VALUES (461,1,'2016-03-14 10:22:51','2016-03-14 10:22:51','\n ','summer-hotel-05','\n ','inherit','open','closed','','summer-hotel-05','','','2016-03-14 10:22:51','2016-03-14 10:22:51','',0,'http://mpycdev.theomggroup.com/wp-content/uploads/2016/03/summer-hotel-05.jpg',0,'attachment','image/jpeg',0);
INSERT INTO `smrc_posts` VALUES (462,1,'2016-03-14 10:22:53','2016-03-14 10:22:53','\n ','summer-hotel-06','\n ','inherit','open','closed','','summer-hotel-06','','','2016-03-14 10:22:53','2016-03-14 10:22:53','',0,'http://mpycdev.theomggroup.com/wp-content/uploads/2016/03/summer-hotel-06.jpg',0,'attachment','image/jpeg',0);
INSERT INTO `smrc_posts` VALUES (463,1,'2016-03-14 10:22:55','2016-03-14 10:22:55','\n ','summer-hotel-07','\n ','inherit','open','closed','','summer-hotel-07','','','2016-03-14 10:22:55','2016-03-14 10:22:55','',0,'http://mpycdev.theomggroup.com/wp-content/uploads/2016/03/summer-hotel-07.jpg',0,'attachment','image/jpeg',0);
INSERT INTO `smrc_posts` VALUES (464,1,'2016-03-14 10:22:58','2016-03-14 10:22:58',' ','summer-hotel-08',' ','inherit','open','closed','','summer-hotel-08','','','2021-04-08 05:24:39','2021-04-08 05:24:39','',0,'http://mpycdev.theomggroup.com/wp-content/uploads/2016/03/summer-hotel-08.jpg',0,'attachment','image/jpeg',0);
INSERT INTO `smrc_posts` VALUES (465,1,'2016-03-14 10:23:01','2016-03-14 10:23:01','\n ','summer-hotel-09','\n ','inherit','open','closed','','summer-hotel-09','','','2016-03-14 10:23:01','2016-03-14 10:23:01','',0,'http://mpycdev.theomggroup.com/wp-content/uploads/2016/03/summer-hotel-09.jpg',0,'attachment','image/jpeg',0);
INSERT INTO `smrc_posts` VALUES (466,1,'2016-03-14 10:23:02','2016-03-14 10:23:02','\n ','summer-hotel-10','\n ','inherit','open','closed','','summer-hotel-10','','','2016-03-14 10:23:02','2016-03-14 10:23:02','',0,'http://mpycdev.theomggroup.com/wp-content/uploads/2016/03/summer-hotel-10.jpg',0,'attachment','image/jpeg',0);
INSERT INTO `smrc_posts` VALUES (467,1,'2016-03-14 10:32:42','2016-03-14 10:32:42','\n ','summer-beach-01','\n ','inherit','open','closed','','summer-beach-01','','','2016-03-14 10:32:42','2016-03-14 10:32:42','',0,'http://mpycdev.theomggroup.com/wp-content/uploads/2016/03/summer-beach-01.jpg',0,'attachment','image/jpeg',0);
INSERT INTO `smrc_posts` VALUES (468,1,'2016-03-14 10:32:44','2016-03-14 10:32:44','\n ','summer-beach-02','\n ','inherit','open','closed','','summer-beach-02','','','2016-03-14 10:32:44','2016-03-14 10:32:44','',0,'http://mpycdev.theomggroup.com/wp-content/uploads/2016/03/summer-beach-02.jpg',0,'attachment','image/jpeg',0);
INSERT INTO `smrc_posts` VALUES (469,1,'2016-03-14 10:32:46','2016-03-14 10:32:46','\n ','summer-beach-03','\n ','inherit','open','closed','','summer-beach-03','','','2016-03-14 10:32:46','2016-03-14 10:32:46','',0,'http://mpycdev.theomggroup.com/wp-content/uploads/2016/03/summer-beach-03.jpg',0,'attachment','image/jpeg',0);
INSERT INTO `smrc_posts` VALUES (470,1,'2016-03-14 10:32:48','2016-03-14 10:32:48','\n ','summer-beach-04','\n ','inherit','open','closed','','summer-beach-04','','','2016-03-14 10:32:48','2016-03-14 10:32:48','',0,'http://mpycdev.theomggroup.com/wp-content/uploads/2016/03/summer-beach-04.jpg',0,'attachment','image/jpeg',0);
INSERT INTO `smrc_posts` VALUES (471,1,'2016-03-14 10:32:50','2016-03-14 10:32:50','\n ','summer-beach-05','\n ','inherit','open','closed','','summer-beach-05','','','2016-03-14 10:32:50','2016-03-14 10:32:50','',0,'http://mpycdev.theomggroup.com/wp-content/uploads/2016/03/summer-beach-05.jpg',0,'attachment','image/jpeg',0);
INSERT INTO `smrc_posts` VALUES (472,1,'2016-03-14 10:51:51','2016-03-14 10:51:51','\n ','summer-activities-01','\n ','inherit','open','closed','','summer-activities-01','','','2016-03-14 10:51:51','2016-03-14 10:51:51','',0,'http://mpycdev.theomggroup.com/wp-content/uploads/2016/03/summer-activities-01.jpg',0,'attachment','image/jpeg',0);
INSERT INTO `smrc_posts` VALUES (473,1,'2016-03-14 10:51:54','2016-03-14 10:51:54','\n ','summer-activities-02','\n ','inherit','open','closed','','summer-activities-02','','','2016-03-14 10:51:54','2016-03-14 10:51:54','',0,'http://mpycdev.theomggroup.com/wp-content/uploads/2016/03/summer-activities-02.jpg',0,'attachment','image/jpeg',0);
INSERT INTO `smrc_posts` VALUES (474,1,'2016-03-14 10:51:56','2016-03-14 10:51:56','\n ','summer-activities-03','\n ','inherit','open','closed','','summer-activities-03','','','2016-03-14 10:51:56','2016-03-14 10:51:56','',0,'http://mpycdev.theomggroup.com/wp-content/uploads/2016/03/summer-activities-03.jpg',0,'attachment','image/jpeg',0);
INSERT INTO `smrc_posts` VALUES (475,1,'2016-03-14 10:51:58','2016-03-14 10:51:58','\n ','summer-activities-04','\n ','inherit','open','closed','','summer-activities-04','','','2016-03-14 10:51:58','2016-03-14 10:51:58','',0,'http://mpycdev.theomggroup.com/wp-content/uploads/2016/03/summer-activities-04.jpg',0,'attachment','image/jpeg',0);
INSERT INTO `smrc_posts` VALUES (476,1,'2016-03-14 10:52:00','2016-03-14 10:52:00','\n ','summer-activities-05','\n ','inherit','open','closed','','summer-activities-05','','','2016-03-14 10:52:00','2016-03-14 10:52:00','',0,'http://mpycdev.theomggroup.com/wp-content/uploads/2016/03/summer-activities-05.jpg',0,'attachment','image/jpeg',0);
INSERT INTO `smrc_posts` VALUES (477,1,'2016-03-14 10:52:02','2016-03-14 10:52:02','\n ','summer-activities-06','\n ','inherit','open','closed','','summer-activities-06','','','2016-03-14 10:52:02','2016-03-14 10:52:02','',0,'http://mpycdev.theomggroup.com/wp-content/uploads/2016/03/summer-activities-06.jpg',0,'attachment','image/jpeg',0);
INSERT INTO `smrc_posts` VALUES (478,1,'2016-03-14 10:52:03','2016-03-14 10:52:03','\n ','summer-activities-07','\n ','inherit','open','closed','','summer-activities-07','','','2016-03-14 10:52:03','2016-03-14 10:52:03','',0,'http://mpycdev.theomggroup.com/wp-content/uploads/2016/03/summer-activities-07.jpg',0,'attachment','image/jpeg',0);
INSERT INTO `smrc_posts` VALUES (479,1,'2016-03-14 10:53:13','2016-03-14 10:53:13','\n ','summer-room-00','\n ','inherit','open','closed','','summer-room-00','','','2016-03-14 10:53:13','2016-03-14 10:53:13','',0,'http://mpycdev.theomggroup.com/wp-content/uploads/2016/03/summer-room-00.jpg',0,'attachment','image/jpeg',0);
INSERT INTO `smrc_posts` VALUES (480,1,'2016-03-14 10:53:16','2016-03-14 10:53:16','\n ','summer-room-01','\n ','inherit','open','closed','','summer-room-01','','','2016-03-14 10:53:16','2016-03-14 10:53:16','',0,'http://mpycdev.theomggroup.com/wp-content/uploads/2016/03/summer-room-01.jpg',0,'attachment','image/jpeg',0);
INSERT INTO `smrc_posts` VALUES (481,1,'2016-03-14 10:53:17','2016-03-14 10:53:17','\n ','summer-room-02','\n ','inherit','open','closed','','summer-room-02','','','2016-03-14 10:53:17','2016-03-14 10:53:17','',0,'http://mpycdev.theomggroup.com/wp-content/uploads/2016/03/summer-room-02.jpg',0,'attachment','image/jpeg',0);
INSERT INTO `smrc_posts` VALUES (482,1,'2016-03-14 10:53:20','2016-03-14 10:53:20','\n ','summer-room-03','\n ','inherit','open','closed','','summer-room-03','','','2016-03-14 10:53:20','2016-03-14 10:53:20','',0,'http://mpycdev.theomggroup.com/wp-content/uploads/2016/03/summer-room-03.jpg',0,'attachment','image/jpeg',0);
INSERT INTO `smrc_posts` VALUES (483,1,'2016-03-14 10:53:22','2016-03-14 10:53:22','\n ','summer-room-04','\n ','inherit','open','closed','','summer-room-04','','','2016-03-14 10:53:22','2016-03-14 10:53:22','',0,'http://mpycdev.theomggroup.com/wp-content/uploads/2016/03/summer-room-04.jpg',0,'attachment','image/jpeg',0);
INSERT INTO `smrc_posts` VALUES (484,1,'2016-03-14 10:53:24','2016-03-14 10:53:24','\n ','summer-room-05','\n ','inherit','open','closed','','summer-room-05','','','2016-03-14 10:53:24','2016-03-14 10:53:24','',0,'http://mpycdev.theomggroup.com/wp-content/uploads/2016/03/summer-room-05.jpg',0,'attachment','image/jpeg',0);
INSERT INTO `smrc_posts` VALUES (485,1,'2016-03-14 10:53:25','2016-03-14 10:53:25','\n ','summer-room-06','\n ','inherit','open','closed','','summer-room-06','','','2016-03-14 10:53:25','2016-03-14 10:53:25','',0,'http://mpycdev.theomggroup.com/wp-content/uploads/2016/03/summer-room-06.jpg',0,'attachment','image/jpeg',0);
INSERT INTO `smrc_posts` VALUES (486,1,'2016-03-14 10:53:27','2016-03-14 10:53:27','\n ','summer-room-07','\n ','inherit','open','closed','','summer-room-07','','','2016-03-14 10:53:27','2016-03-14 10:53:27','',0,'http://mpycdev.theomggroup.com/wp-content/uploads/2016/03/summer-room-07.jpg',0,'attachment','image/jpeg',0);
INSERT INTO `smrc_posts` VALUES (487,1,'2016-03-14 10:53:29','2016-03-14 10:53:29','\n ','summer-room-08','\n ','inherit','open','closed','','summer-room-08','','','2016-03-14 10:53:29','2016-03-14 10:53:29','',0,'http://mpycdev.theomggroup.com/wp-content/uploads/2016/03/summer-room-08.jpg',0,'attachment','image/jpeg',0);
INSERT INTO `smrc_posts` VALUES (488,1,'2016-03-14 10:53:31','2016-03-14 10:53:31','\n ','summer-room-09','\n ','inherit','open','closed','','summer-room-09','','','2016-03-14 10:53:31','2016-03-14 10:53:31','',0,'http://mpycdev.theomggroup.com/wp-content/uploads/2016/03/summer-room-09.jpg',0,'attachment','image/jpeg',0);
INSERT INTO `smrc_posts` VALUES (489,1,'2016-03-14 10:53:33','2016-03-14 10:53:33','\n ','summer-room-10','\n ','inherit','open','closed','','summer-room-10','','','2016-03-14 10:53:33','2016-03-14 10:53:33','',0,'http://mpycdev.theomggroup.com/wp-content/uploads/2016/03/summer-room-10.jpg',0,'attachment','image/jpeg',0);
INSERT INTO `smrc_posts` VALUES (490,1,'2016-03-14 10:53:35','2016-03-14 10:53:35','\n ','summer-room-11','\n ','inherit','open','closed','','summer-room-11','','','2016-03-14 10:53:35','2016-03-14 10:53:35','',0,'http://mpycdev.theomggroup.com/wp-content/uploads/2016/03/summer-room-11.jpg',0,'attachment','image/jpeg',0);
INSERT INTO `smrc_posts` VALUES (491,1,'2016-03-14 10:53:37','2016-03-14 10:53:37','\n ','summer-room-12','\n ','inherit','open','closed','','summer-room-12','','','2016-03-14 10:53:37','2016-03-14 10:53:37','',0,'http://mpycdev.theomggroup.com/wp-content/uploads/2016/03/summer-room-12.jpg',0,'attachment','image/jpeg',0);
INSERT INTO `smrc_posts` VALUES (492,1,'2016-03-14 10:53:40','2016-03-14 10:53:40',' ','summer-room-13',' ','inherit','open','closed','','summer-room-13','','','2021-04-07 07:58:24','2021-04-07 07:58:24','',0,'http://mpycdev.theomggroup.com/wp-content/uploads/2016/03/summer-room-13.jpg',0,'attachment','image/jpeg',0);
INSERT INTO `smrc_posts` VALUES (493,1,'2016-03-14 10:53:42','2016-03-14 10:53:42',' ','summer-room-14',' ','inherit','open','closed','','summer-room-14','','','2021-04-07 07:58:05','2021-04-07 07:58:05','',0,'http://mpycdev.theomggroup.com/wp-content/uploads/2016/03/summer-room-14.jpg',0,'attachment','image/jpeg',0);
INSERT INTO `smrc_posts` VALUES (494,1,'2016-03-14 10:53:43','2016-03-14 10:53:43','\n ','summer-room-15','\n ','inherit','open','closed','','summer-room-15','','','2016-03-14 10:53:43','2016-03-14 10:53:43','',0,'http://mpycdev.theomggroup.com/wp-content/uploads/2016/03/summer-room-15.jpg',0,'attachment','image/jpeg',0);
INSERT INTO `smrc_posts` VALUES (495,1,'2016-03-14 10:53:45','2016-03-14 10:53:45','\n ','summer-room-16','\n ','inherit','open','closed','','summer-room-16','','','2016-03-14 10:53:45','2016-03-14 10:53:45','',0,'http://mpycdev.theomggroup.com/wp-content/uploads/2016/03/summer-room-16.jpg',0,'attachment','image/jpeg',0);
INSERT INTO `smrc_posts` VALUES (496,1,'2016-03-14 10:53:47','2016-03-14 10:53:47',' ','summer-room-17',' ','inherit','open','closed','','summer-room-17','','','2021-04-07 08:30:00','2021-04-07 08:30:00','',0,'http://mpycdev.theomggroup.com/wp-content/uploads/2016/03/summer-room-17.jpg',0,'attachment','image/jpeg',0);
INSERT INTO `smrc_posts` VALUES (500,1,'2016-03-14 12:55:14','2016-03-14 12:55:14','\n ','mug-brown-california','\n ','inherit','open','closed','','mug-brown-california','','','2016-03-14 12:55:14','2016-03-14 12:55:14','',0,'http://mpycdev.theomggroup.com/wp-content/uploads/2013/06/mug-brown-california.jpg',0,'attachment','image/jpeg',0);
INSERT INTO `smrc_posts` VALUES (501,1,'2016-03-14 12:55:16','2016-03-14 12:55:16','\n ','mug-brown-california-star','\n ','inherit','open','closed','','mug-brown-california-star','','','2016-03-14 12:55:16','2016-03-14 12:55:16','',0,'http://mpycdev.theomggroup.com/wp-content/uploads/2013/06/mug-brown-california-star.jpg',0,'attachment','image/jpeg',0);
INSERT INTO `smrc_posts` VALUES (502,1,'2016-03-14 12:55:18','2016-03-14 12:55:18','\n ','mug-brown-california-star-big','\n ','inherit','open','closed','','mug-brown-california-star-big','','','2016-03-14 12:55:18','2016-03-14 12:55:18','',0,'http://mpycdev.theomggroup.com/wp-content/uploads/2013/06/mug-brown-california-star-big.jpg',0,'attachment','image/jpeg',0);
INSERT INTO `smrc_posts` VALUES (503,1,'2016-03-14 12:55:20','2016-03-14 12:55:20','\n ','mug-red-california','\n ','inherit','open','closed','','mug-red-california','','','2016-03-14 12:55:20','2016-03-14 12:55:20','',0,'http://mpycdev.theomggroup.com/wp-content/uploads/2013/06/mug-red-california.jpg',0,'attachment','image/jpeg',0);
INSERT INTO `smrc_posts` VALUES (504,1,'2016-03-14 12:55:22','2016-03-14 12:55:22','\n ','mug-red-california-star','\n ','inherit','open','closed','','mug-red-california-star','','','2016-03-14 12:55:22','2016-03-14 12:55:22','',0,'http://mpycdev.theomggroup.com/wp-content/uploads/2013/06/mug-red-california-star.jpg',0,'attachment','image/jpeg',0);
INSERT INTO `smrc_posts` VALUES (505,1,'2016-03-14 12:55:24','2016-03-14 12:55:24','\n ','mug-red-california-star-big','\n ','inherit','open','closed','','mug-red-california-star-big','','','2016-03-14 12:55:24','2016-03-14 12:55:24','',0,'http://mpycdev.theomggroup.com/wp-content/uploads/2013/06/mug-red-california-star-big.jpg',0,'attachment','image/jpeg',0);
INSERT INTO `smrc_posts` VALUES (506,1,'2016-03-14 12:55:26','2016-03-14 12:55:26','\n ','mug-white-bear','\n ','inherit','open','closed','','mug-white-bear','','','2016-03-14 12:55:26','2016-03-14 12:55:26','',0,'http://mpycdev.theomggroup.com/wp-content/uploads/2013/06/mug-white-bear.jpg',0,'attachment','image/jpeg',0);
INSERT INTO `smrc_posts` VALUES (507,1,'2016-03-14 12:55:28','2016-03-14 12:55:28','\n ','mug-white-california','\n ','inherit','open','closed','','mug-white-california','','','2016-03-14 12:55:28','2016-03-14 12:55:28','',0,'http://mpycdev.theomggroup.com/wp-content/uploads/2013/06/mug-white-california.jpg',0,'attachment','image/jpeg',0);
INSERT INTO `smrc_posts` VALUES (508,1,'2016-03-14 12:55:30','2016-03-14 12:55:30','\n ','mug-white-star','\n ','inherit','open','closed','','mug-white-star','','','2016-03-14 12:55:30','2016-03-14 12:55:30','',0,'http://mpycdev.theomggroup.com/wp-content/uploads/2013/06/mug-white-star.jpg',0,'attachment','image/jpeg',0);
INSERT INTO `smrc_posts` VALUES (509,1,'2016-03-14 12:55:32','2016-03-14 12:55:32','\n ','poster-1','\n ','inherit','open','closed','','poster-1','','','2016-03-14 12:55:32','2016-03-14 12:55:32','',0,'http://mpycdev.theomggroup.com/wp-content/uploads/2013/06/poster-1.jpg',0,'attachment','image/jpeg',0);
INSERT INTO `smrc_posts` VALUES (510,1,'2016-03-14 12:55:34','2016-03-14 12:55:34','\n ','poster-2','\n ','inherit','open','closed','','poster-2','','','2016-03-14 12:55:34','2016-03-14 12:55:34','',0,'http://mpycdev.theomggroup.com/wp-content/uploads/2013/06/poster-2.jpg',0,'attachment','image/jpeg',0);
INSERT INTO `smrc_posts` VALUES (511,1,'2016-03-14 12:55:36','2016-03-14 12:55:36','\n ','tshirt-brown-1','\n ','inherit','open','closed','','tshirt-brown-1','','','2016-03-14 12:55:36','2016-03-14 12:55:36','',0,'http://mpycdev.theomggroup.com/wp-content/uploads/2013/06/tshirt-brown-1.jpg',0,'attachment','image/jpeg',0);
INSERT INTO `smrc_posts` VALUES (512,1,'2016-03-14 12:55:38','2016-03-14 12:55:38','\n ','tshirt-brown-1-back','\n ','inherit','open','closed','','tshirt-brown-1-back','','','2016-03-14 12:55:38','2016-03-14 12:55:38','',0,'http://mpycdev.theomggroup.com/wp-content/uploads/2013/06/tshirt-brown-1-back.jpg',0,'attachment','image/jpeg',0);
INSERT INTO `smrc_posts` VALUES (513,1,'2016-03-14 12:55:40','2016-03-14 12:55:40','\n ','tshirt-brown-2','\n ','inherit','open','closed','','tshirt-brown-2','','','2016-03-14 12:55:40','2016-03-14 12:55:40','',0,'http://mpycdev.theomggroup.com/wp-content/uploads/2013/06/tshirt-brown-2.jpg',0,'attachment','image/jpeg',0);
INSERT INTO `smrc_posts` VALUES (514,1,'2016-03-14 12:55:42','2016-03-14 12:55:42','\n ','tshirt-brown-2-back','\n ','inherit','open','closed','','tshirt-brown-2-back','','','2016-03-14 12:55:42','2016-03-14 12:55:42','',0,'http://mpycdev.theomggroup.com/wp-content/uploads/2013/06/tshirt-brown-2-back.jpg',0,'attachment','image/jpeg',0);
INSERT INTO `smrc_posts` VALUES (515,1,'2016-03-14 12:55:44','2016-03-14 12:55:44','\n ','tshirt-red-1','\n ','inherit','open','closed','','tshirt-red-1','','','2016-03-14 12:55:44','2016-03-14 12:55:44','',0,'http://mpycdev.theomggroup.com/wp-content/uploads/2013/06/tshirt-red-1.jpg',0,'attachment','image/jpeg',0);
INSERT INTO `smrc_posts` VALUES (516,1,'2016-03-14 12:55:46','2016-03-14 12:55:46','\n ','tshirt-red-1-back','\n ','inherit','open','closed','','tshirt-red-1-back','','','2016-03-14 12:55:46','2016-03-14 12:55:46','',0,'http://mpycdev.theomggroup.com/wp-content/uploads/2013/06/tshirt-red-1-back.jpg',0,'attachment','image/jpeg',0);
INSERT INTO `smrc_posts` VALUES (517,1,'2016-03-14 12:55:48','2016-03-14 12:55:48','\n ','tshirt-red-2','\n ','inherit','open','closed','','tshirt-red-2','','','2016-03-14 12:55:48','2016-03-14 12:55:48','',0,'http://mpycdev.theomggroup.com/wp-content/uploads/2013/06/tshirt-red-2.jpg',0,'attachment','image/jpeg',0);
INSERT INTO `smrc_posts` VALUES (518,1,'2016-03-14 12:55:50','2016-03-14 12:55:50','\n ','tshirt-red-2-back','\n ','inherit','open','closed','','tshirt-red-2-back','','','2016-03-14 12:55:50','2016-03-14 12:55:50','',0,'http://mpycdev.theomggroup.com/wp-content/uploads/2013/06/tshirt-red-2-back.jpg',0,'attachment','image/jpeg',0);
INSERT INTO `smrc_posts` VALUES (519,1,'2016-03-14 12:55:52','2016-03-14 12:55:52','\n ','tshirt-red-3','\n ','inherit','open','closed','','tshirt-red-3','','','2016-03-14 12:55:52','2016-03-14 12:55:52','',0,'http://mpycdev.theomggroup.com/wp-content/uploads/2013/06/tshirt-red-3.jpg',0,'attachment','image/jpeg',0);
INSERT INTO `smrc_posts` VALUES (520,1,'2016-03-14 12:55:55','2016-03-14 12:55:55','\n ','tshirt-red-3-back','\n ','inherit','open','closed','','tshirt-red-3-back','','','2016-03-14 12:55:55','2016-03-14 12:55:55','',0,'http://mpycdev.theomggroup.com/wp-content/uploads/2013/06/tshirt-red-3-back.jpg',0,'attachment','image/jpeg',0);
INSERT INTO `smrc_posts` VALUES (521,1,'2016-03-14 12:55:56','2016-03-14 12:55:56','\n ','tshirt-white-1','\n ','inherit','open','closed','','tshirt-white-1','','','2016-03-14 12:55:56','2016-03-14 12:55:56','',0,'http://mpycdev.theomggroup.com/wp-content/uploads/2013/06/tshirt-white-1.jpg',0,'attachment','image/jpeg',0);
INSERT INTO `smrc_posts` VALUES (522,1,'2016-03-14 12:55:59','2016-03-14 12:55:59','\n ','tshirt-white-1-back','\n ','inherit','open','closed','','tshirt-white-1-back','','','2016-03-14 12:55:59','2016-03-14 12:55:59','',0,'http://mpycdev.theomggroup.com/wp-content/uploads/2013/06/tshirt-white-1-back.jpg',0,'attachment','image/jpeg',0);
INSERT INTO `smrc_posts` VALUES (523,1,'2016-03-14 12:56:01','2016-03-14 12:56:01','\n ','tshirt-white-2','\n ','inherit','open','closed','','tshirt-white-2','','','2016-03-14 12:56:01','2016-03-14 12:56:01','',0,'http://mpycdev.theomggroup.com/wp-content/uploads/2013/06/tshirt-white-2.jpg',0,'attachment','image/jpeg',0);
INSERT INTO `smrc_posts` VALUES (524,1,'2016-03-14 12:56:03','2016-03-14 12:56:03','\n ','tshirt-white-2-back','\n ','inherit','open','closed','','tshirt-white-2-back','','','2016-03-14 12:56:03','2016-03-14 12:56:03','',0,'http://mpycdev.theomggroup.com/wp-content/uploads/2013/06/tshirt-white-2-back.jpg',0,'attachment','image/jpeg',0);
INSERT INTO `smrc_posts` VALUES (525,1,'2016-03-14 12:56:05','2016-03-14 12:56:05','\n ','tshirt-white-3','\n ','inherit','open','closed','','tshirt-white-3','','','2016-03-14 12:56:05','2016-03-14 12:56:05','',0,'http://mpycdev.theomggroup.com/wp-content/uploads/2013/06/tshirt-white-3.jpg',0,'attachment','image/jpeg',0);
INSERT INTO `smrc_posts` VALUES (526,1,'2016-03-14 12:56:07','2016-03-14 12:56:07','\n ','tshirt-white-3-back','\n ','inherit','open','closed','','tshirt-white-3-back','','','2016-03-14 12:56:07','2016-03-14 12:56:07','',0,'http://mpycdev.theomggroup.com/wp-content/uploads/2013/06/tshirt-white-3-back.jpg',0,'attachment','image/jpeg',0);
INSERT INTO `smrc_posts` VALUES (527,1,'2016-03-14 12:56:09','2016-03-14 12:56:09','\n ','keychain-1','\n ','inherit','open','closed','','keychain-1','','','2016-03-14 12:56:09','2016-03-14 12:56:09','',0,'http://mpycdev.theomggroup.com/wp-content/uploads/2013/06/keychain-1.jpg',0,'attachment','image/jpeg',0);
INSERT INTO `smrc_posts` VALUES (528,1,'2016-03-14 12:56:11','2016-03-14 12:56:11','\n ','keychain-2','\n ','inherit','open','closed','','keychain-2','','','2016-03-14 12:56:11','2016-03-14 12:56:11','',0,'http://mpycdev.theomggroup.com/wp-content/uploads/2013/06/keychain-2.jpg',0,'attachment','image/jpeg',0);
INSERT INTO `smrc_posts` VALUES (529,1,'2016-03-14 12:56:12','2016-03-14 12:56:12','\n ','keychain-3','\n ','inherit','open','closed','','keychain-3','','','2016-03-14 12:56:12','2016-03-14 12:56:12','',0,'http://mpycdev.theomggroup.com/wp-content/uploads/2013/06/keychain-3.jpg',0,'attachment','image/jpeg',0);
INSERT INTO `smrc_posts` VALUES (530,1,'2016-03-14 12:56:15','2016-03-14 12:56:15','\n ','keychain-4','\n ','inherit','open','closed','','keychain-4','','','2016-03-14 12:56:15','2016-03-14 12:56:15','',0,'http://mpycdev.theomggroup.com/wp-content/uploads/2013/06/keychain-4.jpg',0,'attachment','image/jpeg',0);
INSERT INTO `smrc_posts` VALUES (531,1,'2016-03-14 12:56:16','2016-03-14 12:56:16','\n ','keychain-5','\n ','inherit','open','closed','','keychain-5','','','2016-03-14 12:56:16','2016-03-14 12:56:16','',0,'http://mpycdev.theomggroup.com/wp-content/uploads/2013/06/keychain-5.jpg',0,'attachment','image/jpeg',0);
INSERT INTO `smrc_posts` VALUES (535,1,'2016-03-14 13:23:07','2016-03-14 13:23:07','\n Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. ','California star t-shirt (red)','\n Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. ','publish','open','closed','','california-star-t-shirt-red','','','2016-03-14 13:23:07','2016-03-14 13:23:07','',0,'http://hotel.omnicom-dev.com/summer/product/california-star-t-shirt-red/',0,'product','',0);
INSERT INTO `smrc_posts` VALUES (547,1,'2016-03-15 09:25:27','2016-03-15 09:25:27','\n ','summer-amenities-room','\n ','inherit','open','closed','','summer-amenities-room','','','2016-03-15 09:25:27','2016-03-15 09:25:27','',0,'http://mpycdev.theomggroup.com/wp-content/uploads/2016/02/summer-amenities-room.jpg',0,'attachment','image/jpeg',0);
INSERT INTO `smrc_posts` VALUES (548,1,'2016-03-15 09:41:54','2016-03-15 09:41:54','\n ','summer-amenities-hotel','\n ','inherit','open','closed','','summer-amenities-hotel','','','2016-03-15 09:41:54','2016-03-15 09:41:54','',0,'http://mpycdev.theomggroup.com/wp-content/uploads/2016/02/summer-amenities-hotel.jpg',0,'attachment','image/jpeg',0);
INSERT INTO `smrc_posts` VALUES (557,1,'2016-03-15 11:01:54','2016-03-15 11:01:54','\n <div class=\"boldRow btBookingRow btFormRowActive\" style=\"z-index: 10;\">\n<div class=\"rowItem col-xs-12 col-sm-6\">\n[date* ArrivalDate placeholder \"Arrival Date\"]\n</div>\n<div class=\"btClear btSeparator topSmallSpaced noBorder visible-xs visible-ms\"><hr></div>\n<div class=\"rowItem col-xs-12 col-sm-6\">\n[date DepartureDate placeholder \"Departure Date\"]\n</div>\n<div class=\"btClear btSeparator topSmallSpaced noBorder visible-xs visible-ms visible-sm visible-md visible-lg\"><hr></div>\n<div class=\"rowItem col-xs-12 col-sm-6\">\n[select* Room placeholder \"Choose a Room\" \"Standard Double Room\" \"Standard Family Room\" \"Garden Family Room\" \"Deluxe Double Room\" \"Executive Junior Suite\" \"Executive Deluxe Suite\" \"Executive Double Suite\" \"Maisonette\"]\n</div>\n<div class=\"btClear btSeparator topSmallSpaced noBorder visible-xs visible-ms\"><hr></div>\n<div class=\"rowItem col-xs-12 col-sm-6\">\n[select* Adults placeholder \"How many Adults\" \"1\" \"2\" \"3\" \"4\" \"5\" \"6\" \"7\" \"8\" \"9\" \"10\"]\n</div>\n<div class=\"btClear btSeparator topSmallSpaced noBorder visible-xs visible-ms visible-sm visible-md visible-lg\"><hr></div>\n<div class=\"rowItem col-xs-12 col-sm-6\">\n[select Children placeholder \"How many Children\" \"1\" \"2\" \"3\" \"4\" \"5\" \"6\" \"7\" \"8\" \"9\" \"10\"]\n</div>\n<div class=\"btClear btSeparator topSmallSpaced noBorder visible-xs visible-ms\"><hr></div>\n<div class=\"rowItem col-xs-12 col-sm-6\">\n<div class=\"btBookingNext\">BOOK NOW</div>\n</div>\n</div>\n\n<div class=\"boldRow btBookingRow\">\n<div class=\"rowItem col-xs-12 col-sm-6\">\n[text* Name placeholder \"Your Name\"]\n</div>\n<div class=\"btClear btSeparator topSmallSpaced noBorder visible-xs visible-ms\"><hr></div>\n<div class=\"rowItem col-xs-12 col-sm-6\">\n[email* Email placeholder \"Your Email\"]\n</div>\n<div class=\"btClear btSeparator topSmallSpaced noBorder visible-xs visible-ms visible-sm visible-md visible-lg\"><hr></div>\n<div class=\"rowItem col-xs-12\">\n[submit \"SEND\"]\n</div>\n</div>\nHotel California form\n[name] <wordpress@hotel.bold-themes.com>\nName: [Name]\nEmail: [Email]\n\nArrival date: [ArrivalDate]\nDeparture: [DepartureDate]\nRoom: [Room]\nAdults: [Adults]\nChildren: [Children]\n\n\n--\nThis e-mail was sent from a contact form on Hotel California (http://hotel.bold-themes.com/summer)\ninfo@bold-themes.com\nReply-To: [Email]\n\n\n\n\nHotel California \"[your-subject]\"\nHotel California <wordpress@hotel.omnicom-dev.com>\nMessage Body:\n[your-message]\n\n--\nThis e-mail was sent from a contact form on Hotel California (http://hotel.omnicom-dev.com/summer)\n[your-email]\nReply-To: info@bold-themes.com\n\n\n\nThank you for your message. It has been sent.\nThere was an error trying to send your message. Please try again later.\nOne or more fields have an error. Please check and try again.\nThere was an error trying to send your message. Please try again later.\nYou must accept the terms and conditions before sending your message.\nThe field is required.\nThe field is too long.\nThe field is too short.\nThe date format is incorrect.\nThe date is before the earliest one allowed.\nThe date is after the latest one allowed.\nThere was an unknown error uploading the file.\nYou are not allowed to upload files of this type.\nThe file is too big.\nThere was an error uploading the file.\nThe number format is invalid.\nThe number is smaller than the minimum allowed.\nThe number is larger than the maximum allowed.\nThe answer to the quiz is incorrect.\nYour entered code is incorrect.\nThe e-mail address entered is invalid.\nThe URL is invalid.\nThe telephone number is invalid.\non_submit: \"boldthemes_initBookingForm();\" ','Booking form 2col','\n ','publish','closed','closed','','booking-form_copy','','','2016-03-15 11:01:54','2016-03-15 11:01:54','',0,'http://hotel.omnicom-dev.com/summer/?post_type=wpcf7_contact_form&p=557',0,'wpcf7_contact_form','',0);
INSERT INTO `smrc_posts` VALUES (558,1,'2016-03-15 11:07:52','2016-03-15 11:07:52','\n ','summer-rooms','\n ','inherit','open','closed','','summer-rooms','','','2016-03-15 11:07:52','2016-03-15 11:07:52','',0,'http://mpycdev.theomggroup.com/wp-content/uploads/2016/02/summer-rooms.jpg',0,'attachment','image/jpeg',0);
INSERT INTO `smrc_posts` VALUES (562,1,'2016-03-15 11:23:55','2016-03-15 11:23:55','\n ','summer-room-6','\n ','inherit','open','closed','','summer-room-6','','','2016-03-15 11:23:55','2016-03-15 11:23:55','',0,'http://mpycdev.theomggroup.com/wp-content/uploads/2016/02/summer-room-6.jpg',0,'attachment','image/jpeg',0);
INSERT INTO `smrc_posts` VALUES (563,1,'2016-03-15 11:23:57','2016-03-15 11:23:57','\n ','summer-room-5','\n ','inherit','open','closed','','summer-room-5','','','2016-03-15 11:23:57','2016-03-15 11:23:57','',0,'http://mpycdev.theomggroup.com/wp-content/uploads/2016/02/summer-room-5.jpg',0,'attachment','image/jpeg',0);
INSERT INTO `smrc_posts` VALUES (564,1,'2016-03-15 11:23:59','2016-03-15 11:23:59','\n ','summer-room-8','\n ','inherit','open','closed','','summer-room-8','','','2016-03-15 11:23:59','2016-03-15 11:23:59','',0,'http://mpycdev.theomggroup.com/wp-content/uploads/2016/02/summer-room-8.jpg',0,'attachment','image/jpeg',0);
INSERT INTO `smrc_posts` VALUES (565,1,'2016-03-15 11:26:22','2016-03-15 11:26:22','\n ','summer-room-7','\n ','inherit','open','closed','','summer-room-7','','','2016-03-15 11:26:22','2016-03-15 11:26:22','',0,'http://mpycdev.theomggroup.com/wp-content/uploads/2016/02/summer-room-7.jpg',0,'attachment','image/jpeg',0);
INSERT INTO `smrc_posts` VALUES (583,1,'2016-03-15 14:35:57','2016-03-15 14:35:57','\n ','summer-news-01','\n ','inherit','open','closed','','summer-news-01','','','2016-03-15 14:35:57','2016-03-15 14:35:57','',0,'http://mpycdev.theomggroup.com/wp-content/uploads/2016/02/summer-news-01.jpg',0,'attachment','image/jpeg',0);
INSERT INTO `smrc_posts` VALUES (584,1,'2016-03-15 14:35:58','2016-03-15 14:35:58','\n ','summer-news-02','\n ','inherit','open','closed','','summer-news-02','','','2016-03-15 14:35:58','2016-03-15 14:35:58','',0,'http://mpycdev.theomggroup.com/wp-content/uploads/2016/02/summer-news-02.jpg',0,'attachment','image/jpeg',0);
INSERT INTO `smrc_posts` VALUES (585,1,'2016-03-15 14:35:59','2016-03-15 14:35:59','\n ','summer-news-03','\n ','inherit','open','closed','','summer-news-03','','','2016-03-15 14:35:59','2016-03-15 14:35:59','',0,'http://mpycdev.theomggroup.com/wp-content/uploads/2016/02/summer-news-03.jpg',0,'attachment','image/jpeg',0);
INSERT INTO `smrc_posts` VALUES (586,1,'2016-03-15 14:36:01','2016-03-15 14:36:01','\n ','summer-news-04','\n ','inherit','open','closed','','summer-news-04','','','2016-03-15 14:36:01','2016-03-15 14:36:01','',0,'http://mpycdev.theomggroup.com/wp-content/uploads/2016/02/summer-news-04.jpg',0,'attachment','image/jpeg',0);
INSERT INTO `smrc_posts` VALUES (587,1,'2016-03-15 14:36:02','2016-03-15 14:36:02','\n ','summer-news-05','\n ','inherit','open','closed','','summer-news-05','','','2016-03-15 14:36:02','2016-03-15 14:36:02','',0,'http://mpycdev.theomggroup.com/wp-content/uploads/2016/02/summer-news-05.jpg',0,'attachment','image/jpeg',0);
INSERT INTO `smrc_posts` VALUES (588,1,'2016-03-15 14:36:03','2016-03-15 14:36:03','\n ','summer-news-06','\n ','inherit','open','closed','','summer-news-06','','','2016-03-15 14:36:03','2016-03-15 14:36:03','',0,'http://mpycdev.theomggroup.com/wp-content/uploads/2016/02/summer-news-06.jpg',0,'attachment','image/jpeg',0);
INSERT INTO `smrc_posts` VALUES (589,1,'2016-03-15 14:36:05','2016-03-15 14:36:05','\n ','summer-news-07','\n ','inherit','open','closed','','summer-news-07','','','2016-03-15 14:36:05','2016-03-15 14:36:05','',0,'http://mpycdev.theomggroup.com/wp-content/uploads/2016/02/summer-news-07.jpg',0,'attachment','image/jpeg',0);
INSERT INTO `smrc_posts` VALUES (591,1,'2016-03-15 15:06:23','2016-03-15 15:06:23','\n ','summer-news-08','\n ','inherit','open','closed','','summer-news-08','','','2016-03-15 15:06:23','2016-03-15 15:06:23','',0,'http://mpycdev.theomggroup.com/wp-content/uploads/2015/09/summer-news-08.jpg',0,'attachment','image/jpeg',0);
INSERT INTO `smrc_posts` VALUES (595,1,'2016-03-15 15:11:08','2016-03-15 15:11:08','\n ','summer-news-09','\n ','inherit','open','closed','','summer-news-09','','','2016-03-15 15:11:08','2016-03-15 15:11:08','',0,'http://mpycdev.theomggroup.com/wp-content/uploads/2015/08/summer-news-09.jpg',0,'attachment','image/jpeg',0);
INSERT INTO `smrc_posts` VALUES (606,1,'2016-03-15 15:52:30','2016-03-15 15:52:30','\n ','summer-news-10','\n ','inherit','open','closed','','summer-news-10','','','2016-03-15 15:52:30','2016-03-15 15:52:30','',0,'http://mpycdev.theomggroup.com/wp-content/uploads/2015/09/summer-news-10.jpg',0,'attachment','image/jpeg',0);
INSERT INTO `smrc_posts` VALUES (610,1,'2016-03-15 15:54:36','2016-03-15 15:54:36',' ','summer-news-11',' ','inherit','open','closed','','summer-news-11','','','2021-04-07 07:57:54','2021-04-07 07:57:54','',0,'http://mpycdev.theomggroup.com/wp-content/uploads/2015/08/summer-news-11.jpg',0,'attachment','image/jpeg',0);
INSERT INTO `smrc_posts` VALUES (611,1,'2016-03-15 15:54:38','2016-03-15 15:54:38','\n ','summer-news-12','\n ','inherit','open','closed','','summer-news-12','','','2016-03-15 15:54:38','2016-03-15 15:54:38','',0,'http://mpycdev.theomggroup.com/wp-content/uploads/2015/08/summer-news-12.jpg',0,'attachment','image/jpeg',0);
INSERT INTO `smrc_posts` VALUES (612,1,'2016-03-15 15:54:39','2016-03-15 15:54:39','\n ','summer-news-13','\n ','inherit','open','closed','','summer-news-13','','','2016-03-15 15:54:39','2016-03-15 15:54:39','',0,'http://mpycdev.theomggroup.com/wp-content/uploads/2015/08/summer-news-13.jpg',0,'attachment','image/jpeg',0);
INSERT INTO `smrc_posts` VALUES (613,1,'2016-03-15 15:54:40','2016-03-15 15:54:40','\n ','summer-news-14','\n ','inherit','open','closed','','summer-news-14','','','2016-03-15 15:54:40','2016-03-15 15:54:40','',0,'http://mpycdev.theomggroup.com/wp-content/uploads/2015/08/summer-news-14.jpg',0,'attachment','image/jpeg',0);
INSERT INTO `smrc_posts` VALUES (617,1,'2016-03-16 11:44:20','2016-03-16 11:44:20','\n ','summer-overview-01','\n ','inherit','open','closed','','summer-overview-01','','','2016-03-16 11:44:20','2016-03-16 11:44:20','',0,'http://mpycdev.theomggroup.com/wp-content/uploads/2016/02/summer-overview-01.jpg',0,'attachment','image/jpeg',0);
INSERT INTO `smrc_posts` VALUES (618,1,'2016-03-16 11:44:22','2016-03-16 11:44:22','\n ','summer-overview-02','\n ','inherit','open','closed','','summer-overview-02','','','2016-03-16 11:44:22','2016-03-16 11:44:22','',0,'http://mpycdev.theomggroup.com/wp-content/uploads/2016/02/summer-overview-02.jpg',0,'attachment','image/jpeg',0);
INSERT INTO `smrc_posts` VALUES (619,1,'2016-03-16 11:44:24','2016-03-16 11:44:24','\n ','summer-overview-03','\n ','inherit','open','closed','','summer-overview-03','','','2016-03-16 11:44:24','2016-03-16 11:44:24','',0,'http://mpycdev.theomggroup.com/wp-content/uploads/2016/02/summer-overview-03.jpg',0,'attachment','image/jpeg',0);
INSERT INTO `smrc_posts` VALUES (620,1,'2016-03-16 11:44:26','2016-03-16 11:44:26','\n ','summer-overview-04','\n ','inherit','open','closed','','summer-overview-04','','','2016-03-16 11:44:26','2016-03-16 11:44:26','',0,'http://mpycdev.theomggroup.com/wp-content/uploads/2016/02/summer-overview-04.jpg',0,'attachment','image/jpeg',0);
INSERT INTO `smrc_posts` VALUES (621,1,'2016-03-16 11:44:28','2016-03-16 11:44:28','\n ','summer-overview-05','\n ','inherit','open','closed','','summer-overview-05','','','2016-03-16 11:44:28','2016-03-16 11:44:28','',0,'http://mpycdev.theomggroup.com/wp-content/uploads/2016/02/summer-overview-05.jpg',0,'attachment','image/jpeg',0);
INSERT INTO `smrc_posts` VALUES (622,1,'2016-03-16 11:44:29','2016-03-16 11:44:29','\n ','summer-overview-06','\n ','inherit','open','closed','','summer-overview-06','','','2016-03-16 11:44:29','2016-03-16 11:44:29','',0,'http://mpycdev.theomggroup.com/wp-content/uploads/2016/02/summer-overview-06.jpg',0,'attachment','image/jpeg',0);
INSERT INTO `smrc_posts` VALUES (624,1,'2016-03-16 11:51:52','2016-03-16 11:51:52',' ','summer-overview-07',' ','inherit','open','closed','','summer-overview-07','','','2021-04-07 23:39:42','2021-04-07 23:39:42','',0,'http://mpycdev.theomggroup.com/wp-content/uploads/2016/02/summer-overview-07.jpg',0,'attachment','image/jpeg',0);
INSERT INTO `smrc_posts` VALUES (625,1,'2016-02-22 12:33:57','2016-02-22 12:33:57','\n [bt_section layout=\"wide\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"dark\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\"][bt_slider height=\"auto\" auto_play=\"\" hide_arrows=\"\" hide_paging=\"\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item image=\"47\" el_class=\"\" el_style=\"\"][bt_row_inner][bt_column_inner width=\"1/2\"][/bt_column_inner][bt_column_inner width=\"1/2\" align=\"left\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"animate animate-fadein animate-moveup\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_hr top_spaced=\"topExtraSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Enjoy <i>your</i> vacation\" headline_size=\"huge\" dash=\"bottom\" subheadline=\"At the heart of San Diego, on one of the most colorful beaches, right next to the Pacific ocean, lies the Hotel California, most famous for it’s easy going staff and vacation you’ll never forget...\" el_class=\"\" el_style=\"\"][/bt_header][bt_icons][bt_service icon=\"cs_e9bd\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoBigSize\" url=\"/activities\" headline=\"Activities\" dash=\"\" text=\"\" el_class=\"\" el_style=\"\" superheadline=\"OUTDOOR\"][/bt_service][bt_service icon=\"s7_e6bf\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoBigSize\" url=\"/gallery\" headline=\"Gallery\" dash=\"\" text=\"\" el_class=\"\" el_style=\"\" superheadline=\"VIEW PHOTO\"][/bt_service][/bt_icons][bt_hr top_spaced=\"topSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][/bt_slider_item][bt_slider_item image=\"46\" el_class=\"\" el_style=\"\"][bt_row_inner][bt_column_inner width=\"1/2\"][/bt_column_inner][bt_column_inner width=\"1/2\" align=\"left\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"animate animate-fadein animate-moveup\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_hr top_spaced=\"topExtraSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"<i>Beautiful</i> beaches\" headline_size=\"huge\" dash=\"bottom\" subheadline=\"Enjoying the sun and sea has never been so easy. At the beach of hotel California, you\'ll find our most complete service, great seaside and easy going staff.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_service icon=\"cs_e9c2\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"/activities\" headline=\"Sailing\" dash=\"\" text=\"\" el_class=\"\" el_style=\"\" superheadline=\"Water\"][/bt_service][bt_service icon=\"cs_ea30\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"/rooms\" headline=\"Rooms & Suites\" dash=\"\" text=\"\" el_class=\"\" el_style=\"\" superheadline=\"View our\"][/bt_service][/bt_icons][bt_hr top_spaced=\"topSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][/bt_slider_item][/bt_slider][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"dark\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#584528\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\"][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\n\n[contact-form-7 id=\"397\" title=\"Booking form\"]\n\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSemiSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"2/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Rooms & Suites\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"If you chose to stay with us you will enjoy modern home comforts in a traditional setting. Whether you are looking for a short weekend break or a longer holiday, we offer a range of packages that will cater for all.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/3\"][/bt_column][/bt_row][bt_row][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"44\" caption_text=\"View\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption=\"Double room\" show_titles=\"no\" caption_title=\"Room details\"][bt_header superheadline=\"Room features\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"cs_ea18\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9c2\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea2c\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1c\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"DELUXE\" headline=\"Double Room\" headline_size=\"medium\" dash=\"top\" subheadline=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer mollis viverra diam ac ornare. Donec rhoncus nisi in felis congue, at pulvinar nibh dapibus.\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/2\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"room-details\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"1/2\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"43\" caption_text=\"\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"Room features\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"cs_ea18\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9c5\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1a\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1c\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"EXECUTIVE\" headline=\"Junior Suite\" headline_size=\"medium\" dash=\"top\" subheadline=\"Sed sodales tortor non metus iaculis, non commodo ipsum mattis. Ut at dolor elit. Proin dignissim, lacus eget ullamcorper consectetur, mauris mi mattis elit sagittis.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/2\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"room-details\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"1/2\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"42\" caption_text=\"\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"Room features\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"cs_ea30\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea18\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea2d\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1c\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"DELUXE\" headline=\"Double Room\" headline_size=\"medium\" dash=\"top\" subheadline=\"Mauris suscipit lectus pellentesque ante efficitur, at dignissim tellus maximus. Sed leo magna, faucibus non ante non, pulvinar scelerisque magna sit elis.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/2\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"room-details\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"1/2\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"41\" caption_text=\"\" size=\"medium\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"Room features\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"cs_ea18\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1b\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea21\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1c\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"DELUXE\" headline=\"Family Room\" headline_size=\"medium\" dash=\"top\" subheadline=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer mollis viverra diam ac ornare. Donec rhoncus nisi in felis congue, at pulvinar nibh dapibus.\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/2\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"room-details\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"1/2\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"66\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"323\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"width: 60px; margin-top: -28px;\"][/bt_image][bt_hr top_spaced=\"topSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"1/2\"][/bt_column][bt_column width=\"1/2\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"GET THE BEST RATE\" headline=\"Offers <i>&</i> Deals\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"If you chose to stay with us you will enjoy modern home comforts in a traditional setting. Whether you are looking for a short weekend break or a longer holiday, we offer a range of packages that we think cater for all.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"1/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"67\" caption_text=\"Get together\" size=\"\" shape=\"square\" url=\"special-offers\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"Family vacation\" show_titles=\"no\"][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"Get together\" headline=\"Family vacation\" headline_size=\"medium\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"fa_f207\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f13d\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f1eb\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f206\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f1ae\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\n\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Integer mollis viverra diam ac ornare. Donec rhoncus nisi in felis congue, at pulvinar nibh dapibus.\n\n[/bt_text][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/3\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"special-offers\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"2/3\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"68\" caption_text=\"Celebrate\" size=\"\" shape=\"square\" url=\"special-offers\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"Newlyweds weekend\" show_titles=\"no\"][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"Celebrate\" headline=\"Newlyweds weekend\" headline_size=\"medium\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"fa_f1ba\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f072\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f228\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\n\nSed ut metus eu neque commodo fringilla imperdiet sed nibh. Sed volutpat fermentum ligula, et maximus ex ultricies sit amet.\n\n[/bt_text][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/3\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"special-offers\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"2/3\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"725\" caption_text=\"Procrastinate\" size=\"\" shape=\"square\" url=\"special-offers\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"Lazy weekend\" show_titles=\"no\"][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"Procrastinate\" headline=\"Lazy weekend\" headline_size=\"medium\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"fa_f1ba\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f072\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f1eb\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f000\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f185\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\n\nPhasellus non bibendum augue. Duis nibh felis, volutpat vitae pulvinar at, tincidunt eget mi. Donec venenatis condimentum fermentum.\n\n[/bt_text][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/3\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"special-offers\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"2/3\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#e5e5e5\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"322\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"width: 60px; margin-top: -28px;\"][/bt_image][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"7/12\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Activities\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Phasellus blandit a massa vitae congue. Nam ex massa, mattis ut sapien sit amet, consequat sodales risus. Sed interdum, ligula et lobortis faucibus, sem sem placerat augue, eget scelerisque turpis lorem et tellus.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][/bt_column][bt_column width=\"5/12\"][/bt_column][/bt_row][/bt_section][bt_section layout=\"wide\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"dark\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#e5e5e5\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"73\" caption_title=\"Beach voleyball\" caption_text=\"Enjoy the game\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"ENJOY THE GAME\" headline=\"Beach Voleyball\" headline_size=\"medium\" dash=\"top\" subheadline=\"Beach volleyball is ouy visitors favourite sport, highly enjoyable for everyone young or old. Just gather your team on the beach and find the opponents in a matter of minutes. And show what you can do, be a winner!\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_e9ac\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e040\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e041\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"74\" el_class=\"\" el_style=\"\"][bt_image image=\"74\" caption_title=\"Horseback riding\" caption_text=\"Enjoy the beach\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Enjoy the beach\" headline=\"Horseback riding\" headline_size=\"medium\" dash=\"top\" subheadline=\"How about a lazy afternoon with your friends on a hors, while the sun goes down? If you want to chill out, our horse riding team will teach you in a matter of minutes and help you wind down after a good day on the sun.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_ea13\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1e\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e05b\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"75\" el_class=\"\" el_style=\"\"][bt_image image=\"75\" caption_title=\"Waterskiing\" caption_text=\"Enjoy the sea\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Enjoy the sea\" headline=\"Waterskiing\" headline_size=\"medium\" dash=\"top\" subheadline=\"If you are a big fan of water sports, then why not try the waterskiing or waterboarding? At hotel California you will find there\'s an amateur champoionship every year. Rated as the most fun activity by our visitors.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_e05b\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9a3\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9e5\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"76\" el_class=\"\" el_style=\"\"][bt_image image=\"76\" caption_title=\"Paragliding\" caption_text=\"Enjoy the sky\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Enjoy the sky\" headline=\"Parasailing\" headline_size=\"medium\" dash=\"top\" subheadline=\"Enjoy the thrill on the sky with our parasailing team and feel the California sun on your face. The team will help you get your adrenaline high and will be capuring your moments on a high-definition camera.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_ea2f\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"s7_e67b\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9f3\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_slider height=\"auto\" auto_play=\"\" hide_arrows=\"\" hide_paging=\"btSliderHidePaging\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/6\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"78\" caption_text=\"\" size=\"\" shape=\"circle\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][bt_header superheadline=\"June 2016\" headline=\"Alan Jones\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][/bt_column_inner][bt_column_inner width=\"5/6\"][bt_text]\n<blockquote>If you chose to stay with us you will enjoy modern home comforts in a traditional setting. Whether you are looking for a short weekend break or a longer holiday, we offer a range of packages that we think cater for all.</blockquote>\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/6\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"447\" caption_text=\"\" size=\"\" shape=\"circle\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][/bt_image][bt_header superheadline=\"July 2016\" headline=\"Adrianne White\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][bt_column_inner width=\"5/6\"][bt_text]\n<blockquote>If you chose to stay with us you will enjoy modern home comforts in a traditional setting. Whether you are looking for a short weekend break or a longer holiday, we offer a range of packages that we think cater for all.</blockquote>\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/6\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"446\" caption_text=\"\" size=\"\" shape=\"circle\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][/bt_image][bt_header superheadline=\"August 2016\" headline=\"Jenna & Mike\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][bt_column_inner width=\"5/6\"][bt_text]\n<blockquote>If you chose to stay with us you will enjoy modern home comforts in a traditional setting. Whether you are looking for a short weekend break or a longer holiday, we offer a range of packages that we think cater for all.</blockquote>\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][/bt_slider][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/3\" align=\"left\" vertical_align=\"btMiddleVertical\" border=\"no_border\" cell_padding=\"btDoublePadding\" animation=\"animate animate-fadein\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"#e5e5e5\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"IN A NUTSHELL\" headline=\"Hotel California\" headline_size=\"large\" dash=\"bottom\" subheadline=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer mollis viverra diam ac ornare. Donec rhoncus nisi in felis congue, at pulvinar nibh dapibus.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_button text=\"READ MORE\" icon=\"no_icon\" url=\"\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"ExtraSmall\" width=\"Normal\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"2/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_slider height=\"auto\" auto_play=\"\" hide_arrows=\"\" hide_paging=\"btSliderHidePaging\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"81\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"82\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"83\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"84\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"85\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][/bt_slider][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\"][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"2/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_gmaps latitude=\"36.602383\" longitude=\"-121.879245 \" zoom=\"11\" icon=\"342\" height=\"400px\" primary_color=\"\" secondary_color=\"\" water_color=\"\" custom_style=\"WwogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJhZG1pbmlzdHJhdGl2ZSIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImxhYmVscy50ZXh0LmZpbGwiLAogICAgICAgICJzdHlsZXJzIjogWwogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAiY29sb3IiOiAiIzQ0NDQ0NCIKICAgICAgICAgICAgfQogICAgICAgIF0KICAgIH0sCiAgICB7CiAgICAgICAgImZlYXR1cmVUeXBlIjogImxhbmRzY2FwZSIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJjb2xvciI6ICIjZjJmMmYyIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAicG9pIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiYWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInZpc2liaWxpdHkiOiAib2ZmIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAicm9hZCIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJzYXR1cmF0aW9uIjogLTEwMAogICAgICAgICAgICB9LAogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAibGlnaHRuZXNzIjogNDUKICAgICAgICAgICAgfQogICAgICAgIF0KICAgIH0sCiAgICB7CiAgICAgICAgImZlYXR1cmVUeXBlIjogInJvYWQuaGlnaHdheSIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogInNpbXBsaWZpZWQiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJyb2FkLmhpZ2h3YXkiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJnZW9tZXRyeSIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogInNpbXBsaWZpZWQiCiAgICAgICAgICAgIH0sCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJjb2xvciI6ICIjZDc3Mjg3IgogICAgICAgICAgICB9LAogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAibGlnaHRuZXNzIjogIjAiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJyb2FkLmhpZ2h3YXkiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJsYWJlbHMudGV4dCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogIm9uIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAicm9hZC5oaWdod2F5IiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAibGFiZWxzLmljb24iLAogICAgICAgICJzdHlsZXJzIjogWwogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAidmlzaWJpbGl0eSI6ICJvbiIKICAgICAgICAgICAgfQogICAgICAgIF0KICAgIH0sCiAgICB7CiAgICAgICAgImZlYXR1cmVUeXBlIjogInJvYWQuYXJ0ZXJpYWwiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJhbGwiLAogICAgICAgICJzdHlsZXJzIjogWwogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAidmlzaWJpbGl0eSI6ICJvbiIKICAgICAgICAgICAgfQogICAgICAgIF0KICAgIH0sCiAgICB7CiAgICAgICAgImZlYXR1cmVUeXBlIjogInJvYWQuYXJ0ZXJpYWwiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJnZW9tZXRyeS5maWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgImNvbG9yIjogIiNkNzcyODciCiAgICAgICAgICAgIH0sCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJsaWdodG5lc3MiOiAiNzUiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJyb2FkLmFydGVyaWFsIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAibGFiZWxzLmljb24iLAogICAgICAgICJzdHlsZXJzIjogWwogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAidmlzaWJpbGl0eSI6ICJvZmYiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJyb2FkLmxvY2FsIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiZ2VvbWV0cnkuZmlsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJsaWdodG5lc3MiOiAiNzUiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJ0cmFuc2l0IiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiYWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInZpc2liaWxpdHkiOiAib2ZmIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAidHJhbnNpdC5saW5lIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiYWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInZpc2liaWxpdHkiOiAib24iCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJ0cmFuc2l0LnN0YXRpb24uYnVzIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiYWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInZpc2liaWxpdHkiOiAib24iCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJ0cmFuc2l0LnN0YXRpb24ucmFpbCIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogIm9uIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAidHJhbnNpdC5zdGF0aW9uLnJhaWwiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJsYWJlbHMuaWNvbiIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ3ZWlnaHQiOiAiMC4wMSIKICAgICAgICAgICAgfSwKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgImh1ZSI6ICIjZmYwMDM1IgogICAgICAgICAgICB9LAogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAibGlnaHRuZXNzIjogIjAiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJ3YXRlciIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogIm9uIgogICAgICAgICAgICB9LAogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAiY29sb3IiOiAiIzgwZTRkOCIKICAgICAgICAgICAgfSwKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgImxpZ2h0bmVzcyI6ICIyNSIKICAgICAgICAgICAgfSwKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInNhdHVyYXRpb24iOiAiLTIzIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfQpd\" el_class=\"\" el_style=\"\" api_key=\"AIzaSyBda9LxQ-Wztqsk6aFI7SkcdiypnKTPfiI\"][/bt_gmaps][/bt_column][bt_column width=\"1/3\" align=\"left\" vertical_align=\"btMiddleVertical\" border=\"no_border\" cell_padding=\"btDoublePadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"#e5e5e5\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_service icon=\"s7_e638\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoMediumSize\" url=\"\" headline=\"Address\" dash=\"\" text=\"3216 W Highland Boulevard\nSan Diego, California\" el_class=\"\" el_style=\"\" superheadline=\"\"][/bt_service][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSemiSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_service icon=\"s7_e670\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoMediumSize\" url=\"\" headline=\"Phone\" dash=\"\" text=\"+555-40-220-6672\" el_class=\"\" el_style=\"\" superheadline=\"\"][/bt_service][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSemiSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_service icon=\"s7_e63a\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoMediumSize\" url=\"\" headline=\"Email\" dash=\"\" text=\"office@california.hotel\" el_class=\"\" el_style=\"\" superheadline=\"\"][/bt_service][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"yes\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"7/12\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"News <i>&</i> Blog\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Morbi pharetra faucibus purus, nec pretium enim luctus quis. Pellentesque aliquet venenatis ante, quis pretium neque tristique eget. Integer in luctus urna. Aenean rutrum sodales pharetra.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"5/12\"][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_latest_posts number=\"3\" category=\"\" format=\"horizontal\" post_type=\"blog\" show_excerpt=\"yes\" show_date=\"yes\" show_author=\"yes\" el_class=\"\" el_style=\"\"][/bt_latest_posts][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"321\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"0.3\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Follow us\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Find out what’s hot and new, and get discounts for being a loyal customer and a Hotel California fan.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_icons][bt_icon icon=\"fa_f09a\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f099\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f0d5\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_column][/bt_row][/bt_section] ','Evening horizon','\n ','publish','closed','closed','','evening-horizon','','','2016-02-22 12:33:57','2016-02-22 12:33:57','',921,'http://hotel.omnicom-dev.com/?page_id=2',0,'page','',0);
INSERT INTO `smrc_posts` VALUES (626,1,'2016-02-23 11:08:47','2016-02-23 11:08:47','\n [bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSemiSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"2/3\" align=\"left\" vertical_align=\"btMiddleVertical\" border=\"no_border\" cell_padding=\"default\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Our Accomodation\" headline=\"Rooms <i>&</i> Suites\" headline_size=\"extralarge\" dash=\"bottom\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\" subheadline=\"If you chose to stay with us you will enjoy modern home comforts in a traditional setting. Whether you are looking for a short weekend break or a longer holiday, we offer a range of packages that will cater for all.\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSemiSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/3\" align=\"left\" vertical_align=\"btMiddleVertical\" border=\"no_border\" cell_padding=\"default\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][/bt_column][/bt_row][bt_row][bt_column width=\"1/4\"][bt_image image=\"44\" caption_text=\"View\" size=\"\" shape=\"square\" url=\"room details\" target=\"_self\" el_class=\"\" el_style=\"\" caption=\"Double room\" show_titles=\"no\" caption_title=\"Room details\"][bt_header superheadline=\"Room features\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"cs_ea18\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9c2\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea2c\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1c\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"DELUXE\" headline=\"Double Room\" headline_size=\"medium\" dash=\"top\" subheadline=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer mollis viverra diam ac ornare. Donec rhoncus nisi in felis congue, at pulvinar nibh dapibus.\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/2\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"room details\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"1/2\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\"][bt_image image=\"43\" caption_text=\"\" size=\"\" shape=\"square\" url=\"room details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"Room features\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"cs_ea18\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9c5\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1a\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1c\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"EXECUTIVE\" headline=\"Junior Suite\" headline_size=\"medium\" dash=\"top\" subheadline=\"Sed sodales tortor non metus iaculis, non commodo ipsum mattis. Ut at dolor elit. Proin dignissim, lacus eget ullamcorper consectetur, mauris mi mattis elit sagittis.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/2\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"room details\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"1/2\"][bt_header superheadline=\"FROM\" headline=\"$79 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\"][bt_image image=\"42\" caption_text=\"\" size=\"\" shape=\"square\" url=\"room details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"Room features\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"cs_ea30\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea18\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea2d\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1c\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"DELUXE\" headline=\"Double Room\" headline_size=\"medium\" dash=\"top\" subheadline=\"Mauris suscipit lectus pellentesque ante efficitur, at dignissim tellus maximus. Sed leo magna, faucibus non ante non, pulvinar scelerisque magna sit elis.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/2\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"room details\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"1/2\"][bt_header superheadline=\"FROM\" headline=\"$49 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\"][bt_image image=\"41\" caption_text=\"\" size=\"medium\" shape=\"square\" url=\"room details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"Room features\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"cs_ea18\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1b\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea21\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1c\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"DELUXE\" headline=\"Family Room\" headline_size=\"medium\" dash=\"top\" subheadline=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer mollis viverra diam ac ornare. Donec rhoncus nisi in felis congue, at pulvinar nibh dapibus.\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/2\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"room details\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"1/2\"][bt_header superheadline=\"FROM\" headline=\"$79 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"1/4\"][bt_image image=\"563\" caption_text=\"View\" size=\"\" shape=\"square\" url=\"room details\" target=\"_self\" el_class=\"\" el_style=\"\" caption=\"Double room\" show_titles=\"no\" caption_title=\"Room details\"][bt_header superheadline=\"Room features\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"cs_ea18\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9c2\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea2c\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1c\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"GARDEN\" headline=\"Family Room\" headline_size=\"medium\" dash=\"top\" subheadline=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer mollis viverra diam ac ornare. Donec rhoncus nisi in felis congue, at pulvinar nibh dapibus.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/2\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"room details\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"1/2\"][bt_header superheadline=\"FROM\" headline=\"$89 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\"][bt_image image=\"562\" caption_text=\"\" size=\"\" shape=\"square\" url=\"room details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"Room features\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"cs_ea18\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9c5\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1a\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1c\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"EXECUTIVE\" headline=\"Double Suite\" headline_size=\"medium\" dash=\"top\" subheadline=\"Curabitur sollicitudin vitae tellus ac porta. Donec aliquam turpis augue, eu sagittis risus consectetur non. Cras ut feugiat dolor, consectetur tristique nibh.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/2\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"room details\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"1/2\"][bt_header superheadline=\"FROM\" headline=\"$119 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\"][bt_image image=\"565\" caption_text=\"\" size=\"\" shape=\"square\" url=\"room details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"Room features\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"cs_ea30\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea18\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea2d\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1c\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"EXECUTIVE\" headline=\"Deluxe Suite\" headline_size=\"medium\" dash=\"top\" subheadline=\"Proin lobortis tempus elit sit amet consectetur. Proin egestas velit nibh, a viverra magna imperdiet sit amet. Nam diam neque, consectetur vel dolor et.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/2\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"room details\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"1/2\"][bt_header superheadline=\"FROM\" headline=\"$109 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\"][bt_image image=\"564\" caption_text=\"\" size=\"medium\" shape=\"square\" url=\"room details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"Room features\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"cs_ea18\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1b\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea21\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1c\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"DETACHED\" headline=\"Maisonette\" headline_size=\"medium\" dash=\"top\" subheadline=\"Vestibulum faucibus est sit amet dolor mollis, vitae auctor massa ullamcorper. Integer ultrices quis sapien a viverra. Aenean at nunc at mauris congue egestas.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/2\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"room details\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"1/2\"][bt_header superheadline=\"FROM\" headline=\"$129 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"558\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"0.25\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"323\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"width: 60px; margin-top: -28px;\"][/bt_image][bt_hr top_spaced=\"topSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"1/2\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"no_animation\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Book your Room\" headline_size=\"extralarge\" dash=\"bottom\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][bt_text]\n\nFusce finibus orci dolor, a convallis dolor tincidunt at. Donec est augue, convallis ut feugiat non, euismod ac lorem. Suspendisse vel faucibus dui. In nulla ex, pulvinar ac lorem eget, pulvinar tincidunt magna.\n\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/2\"][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\n\n[contact-form-7 id=\"557\" title=\"Booking form 2col\"]\n\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section] ','Rooms','\n ','publish','closed','closed','','rooms','','','2016-02-23 11:08:47','2016-02-23 11:08:47','',0,'http://hotel.omnicom-dev.com/?page_id=5',0,'page','',0);
INSERT INTO `smrc_posts` VALUES (630,1,'2016-03-17 07:48:27','2016-03-17 07:48:27','\n [bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSemiSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"2/3\" align=\"left\" vertical_align=\"btMiddleVertical\" border=\"no_border\" cell_padding=\"default\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Fun at the sea\" headline=\"Latest News\" headline_size=\"extralarge\" dash=\"bottom\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\" subheadline=\"There\'s always something fun to do at Hotel California. Whether it\'s the beach, the sea or just plain activities that will make your day, we can have everything prepared for you and your family.\" el_class=\"\" el_style=\"\"][/bt_header][/bt_column][bt_column width=\"1/3\" align=\"left\" vertical_align=\"btMiddleVertical\" border=\"no_border\" cell_padding=\"default\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"left\" vertical_align=\"btTopVertical\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSemiSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_grid number=\"4\" columns=\"3\" category=\"\" category_filter=\"no\" grid_type=\"tiled\" grid_gap=\"10\" format=\"21,11,11,21,21,11,11,21,21,11,11,21,21,11,11,21\" tiles_title=\"yes\" post_type=\"blog\" scroll_loading=\"yes\" sticky_in_grid=\"no\" el_class=\"\" el_style=\"\"][/bt_grid][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSemiSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section] ','News tiles with titles','\n ','publish','closed','closed','','news-tiles-with-titles','','','2016-03-17 07:48:27','2016-03-17 07:48:27','',971,'http://hotel.omnicom-dev.com/summer/?page_id=630',0,'page','',0);
INSERT INTO `smrc_posts` VALUES (634,1,'2016-03-17 07:49:58','2016-03-17 07:49:58','\n [bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSemiSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"2/3\" align=\"left\" vertical_align=\"btMiddleVertical\" border=\"no_border\" cell_padding=\"default\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Fun at the sea\" headline=\"Latest News\" headline_size=\"extralarge\" dash=\"bottom\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\" subheadline=\"There\'s always something fun to do at Hotel California. Whether it\'s the beach, the sea or just plain activities that will make your day, we can have everything prepared for you and your family.\" el_class=\"\" el_style=\"\"][/bt_header][/bt_column][bt_column width=\"1/3\" align=\"left\" vertical_align=\"btMiddleVertical\" border=\"no_border\" cell_padding=\"default\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"left\" vertical_align=\"btTopVertical\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSemiSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_grid number=\"4\" columns=\"3\" category=\"\" category_filter=\"no\" grid_type=\"tiled\" grid_gap=\"10\" format=\"21,11,11,21,21,11,11,21,21,11,11,21,21,11,11,21\" tiles_title=\"no\" post_type=\"blog\" scroll_loading=\"yes\" sticky_in_grid=\"no\" el_class=\"\" el_style=\"\"][/bt_grid][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSemiSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section] ','News tiles','\n ','publish','closed','closed','','news-tiles','','','2016-03-17 07:49:58','2016-03-17 07:49:58','',971,'http://hotel.omnicom-dev.com/summer/?page_id=634',0,'page','',0);
INSERT INTO `smrc_posts` VALUES (636,1,'2016-03-17 07:50:26','2016-03-17 07:50:26','\n [bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSemiSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"2/3\" align=\"left\" vertical_align=\"btMiddleVertical\" border=\"no_border\" cell_padding=\"default\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Fun at the sea\" headline=\"Latest News\" headline_size=\"extralarge\" dash=\"bottom\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\" subheadline=\"There\'s always something fun to do at Hotel California. Whether it\'s the beach, the sea or just plain activities that will make your day, we can have everything prepared for you and your family.\" el_class=\"\" el_style=\"\"][/bt_header][/bt_column][bt_column width=\"1/3\" align=\"left\" vertical_align=\"btMiddleVertical\" border=\"no_border\" cell_padding=\"default\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"left\" vertical_align=\"btTopVertical\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSemiSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_grid number=\"6\" columns=\"3\" category=\"\" category_filter=\"no\" grid_type=\"classic\" grid_gap=\"10\" format=\"21,11,11,21,21,11,11,21,21,11,11,21,21,11,11,21\" tiles_title=\"no\" post_type=\"blog\" scroll_loading=\"yes\" sticky_in_grid=\"no\" el_class=\"\" el_style=\"\"][/bt_grid][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSemiSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section] ','News grid','\n ','publish','closed','closed','','news-grid','','','2016-03-17 07:50:26','2016-03-17 07:50:26','',971,'http://hotel.omnicom-dev.com/summer/?page_id=636',0,'page','',0);
INSERT INTO `smrc_posts` VALUES (642,1,'2016-03-17 13:41:51','2016-03-17 13:41:51','\n [bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSemiSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"2/3\" align=\"left\" vertical_align=\"btMiddleVertical\" border=\"no_border\" cell_padding=\"default\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Estimate your costs\" headline=\"Cost Calculator\" headline_size=\"extralarge\" dash=\"bottom\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\" subheadline=\"Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Aenean ultrices felis turpis. Curabitur mollis sollicitudin magna. Nunc pretium odio non justo.\" el_class=\"\" el_style=\"\"][/bt_header][/bt_column][bt_column width=\"1/3\" align=\"left\" vertical_align=\"btMiddleVertical\" border=\"no_border\" cell_padding=\"default\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][/bt_column][/bt_row][/bt_section][bt_section][bt_row][bt_column width=\"7/12\"][bt_cost_calculator admin_email=\"info@bold-themes.com\" subject=\"Hotel California\" email_client=\"\" email_confirmation=\"\" time_start=\"\" time_end=\"\" currency=\"$\" m_name=\"Mandatory\" m_email=\"Mandatory\" m_phone=\"Mandatory\" m_address=\"\" m_date=\"Mandatory\" m_time=\"Mandatory\" m_message=\"\" accent_color=\"\" show_booking=\"yes\" rec_site_key=\"\" rec_secret_key=\"\" paypal_email=\"\" paypal_cart_name=\"\" paypal_currency=\"\" el_class=\"\" el_style=\"\" currency_after=\"\" date_text=\"Arrival Date\" time_text=\"Arrival Time\"][bt_header superheadline=\"Room and vacants\" headline=\"Standard vacation information\" headline_size=\"medium\" dash=\"top\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_cc_group eval=\"var room = $1;\nvar adults = $2;\nvar children = $3;\nvar days = $4;\nvar buffet = $5;\nvar bar_refill = $6;\nvar vault = $7;\nvar extra_tv = $8;\nvar massage = $9;\nvar fitness = $10;\nvar skiing = $11;\n\nvar final = (room + buffet + massage + fitness + skiing) * days * (adults + children * .5) + extra_tv + vault + bar_refill;\n\nreturn final;\" paypal_label=\"\"][bt_cc_item name=\"Choose a Room\" type=\"select\" value=\"Standard Double Room;49;from 49 / night\nStandard Family Room;79;from 79 / night\nGarden Family Room;89;from 79 / night\nDeluxe Double Room;59;from 59 / night\nExecutive Junior Suite;79;from 79 / night\nExecutive Deluxe Suite;109;from 109 / night\nExecutive Double Suite;119;from 119 / night\nMaisonette;129;from 129 / night\" images=\"42,41,563,44,43,565,562,564\" img_height=\"60\"][/bt_cc_item][bt_cc_item name=\"How many Adults\" type=\"slider\" value=\"1;10;1;1;0\" images=\"\" img_height=\"\"][/bt_cc_item][bt_cc_item name=\"How many Children\" type=\"slider\" value=\"1;10;1;1;0\" images=\"\" img_height=\"\"][/bt_cc_item][bt_cc_item name=\"How many days will you stay?\" type=\"slider\" value=\"1;30;1;1;0\" images=\"\" img_height=\"\"][/bt_cc_item][bt_cc_item name=\"Choose your buffet\" type=\"select\" value=\"Bed and Breakfast;15;$15 per person per day\nBreakfast and Dinner;35;$35 per person per day\nFull Buffet;55;$55 per person per day\nAll Inclusive;70;$70 per person per day\" images=\"\" img_height=\"\"][/bt_cc_item][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"bottomSemiSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"Room options\" headline=\"Extra amenities\" headline_size=\"medium\" dash=\"top\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_cc_item name=\"Would you like daily bar refill?\" type=\"switch\" value=\"0;50\" images=\"\" img_height=\"\"][/bt_cc_item][bt_cc_item name=\"Fancy a room vault?\" type=\"switch\" value=\"0;20\" images=\"\" img_height=\"\"][/bt_cc_item][bt_cc_item name=\"Would you like extra TV channels?\" type=\"switch\" value=\"0;20\" images=\"\" img_height=\"\"][/bt_cc_item][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"bottomSemiSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"Boost your stay\" headline=\"Extra hotel services\" headline_size=\"medium\" dash=\"top\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_cc_item name=\"Would you like a daily massage?\" type=\"switch\" value=\"0;50\" images=\"\" img_height=\"\"][/bt_cc_item][bt_cc_item name=\"How about some fitness classes?\" type=\"switch\" value=\"0;50\" images=\"\" img_height=\"\"][/bt_cc_item][bt_cc_item name=\"And would you try water skiing?\" type=\"switch\" value=\"0;50\" images=\"\" img_height=\"\"][/bt_cc_item][/bt_cc_group][/bt_cost_calculator][/bt_column][bt_column width=\"5/12\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"no_animation\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"#e5e5e5\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"85\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][bt_row_inner][bt_column_inner width=\"1/1\" align=\"left\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"btTextIndent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSemiSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"Need more info?\" headline=\"Contact us anytime\" headline_size=\"large\" dash=\"bottom\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\n\nVestibulum maximus euismod lobortis. Nullam dui metus, lobortis nec commodo sit amet, commodo at justo. Fusce feugiat ante eget erat mollis consequat.\n\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSemiSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_service icon=\"s7_e638\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoMediumSize\" url=\"\" headline=\"Address\" dash=\"\" text=\"3216 W Highland Boulevard\nSan Diego, California\" el_class=\"\" el_style=\"\" superheadline=\"\"][/bt_service][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSemiSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_service icon=\"s7_e670\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoMediumSize\" url=\"\" headline=\"Phone\" dash=\"\" text=\"+555-40-220-6672\" el_class=\"\" el_style=\"\" superheadline=\"\"][/bt_service][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSemiSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_service icon=\"s7_e63a\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoMediumSize\" url=\"\" headline=\"Email\" dash=\"\" text=\"office@california.hotel\" el_class=\"\" el_style=\"\" superheadline=\"\"][/bt_service][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSemiSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][/bt_column][/bt_row][/bt_section] ','Cost Calculator','\n ','publish','closed','closed','','cost-calculator','','','2016-03-17 13:41:51','2016-03-17 13:41:51','',0,'http://hotel.omnicom-dev.com/summer/?page_id=642',0,'page','',0);
INSERT INTO `smrc_posts` VALUES (651,1,'2016-03-17 16:05:32','2016-03-17 16:05:32','\n [bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSemiSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"2/3\" align=\"left\" vertical_align=\"btMiddleVertical\" border=\"no_border\" cell_padding=\"default\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"View before choosing\" headline=\"Photo Gallery\" headline_size=\"extralarge\" dash=\"bottom\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\" subheadline=\"There\'s always something fun to do at Hotel California. Whether it\'s the beach, the sea or just plain activities that will make your day, we can have everything prepared for you and your family.\" el_class=\"\" el_style=\"\"][/bt_header][/bt_column][bt_column width=\"1/3\" align=\"left\" vertical_align=\"btMiddleVertical\" border=\"no_border\" cell_padding=\"default\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"left\" vertical_align=\"btTopVertical\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSemiSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_grid number=\"6\" columns=\"3\" category=\"\" category_filter=\"no\" grid_type=\"classic\" grid_gap=\"10\" format=\"21,11,11,21,21,11,11,21,21,11,11,21,21,11,11,21\" tiles_title=\"no\" post_type=\"portfolio\" scroll_loading=\"yes\" sticky_in_grid=\"no\" el_class=\"\" el_style=\"\"][/bt_grid][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSemiSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section] ','Portfolio grid','\n ','publish','closed','closed','','portfolio-grid','','','2016-03-17 16:05:32','2016-03-17 16:05:32','',971,'http://hotel.omnicom-dev.com/summer/?page_id=651',0,'page','',0);
INSERT INTO `smrc_posts` VALUES (652,1,'2016-03-17 16:05:20','2016-03-17 16:05:20','\n [bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSemiSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"2/3\" align=\"left\" vertical_align=\"btMiddleVertical\" border=\"no_border\" cell_padding=\"default\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"View before choosing\" headline=\"Photo Gallery\" headline_size=\"extralarge\" dash=\"bottom\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\" subheadline=\"There\'s always something fun to do at Hotel California. Whether it\'s the beach, the sea or just plain activities that will make your day, we can have everything prepared for you and your family.\" el_class=\"\" el_style=\"\"][/bt_header][/bt_column][bt_column width=\"1/3\" align=\"left\" vertical_align=\"btMiddleVertical\" border=\"no_border\" cell_padding=\"default\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"left\" vertical_align=\"btTopVertical\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSemiSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_grid number=\"4\" columns=\"3\" category=\"\" category_filter=\"no\" grid_type=\"tiled\" grid_gap=\"10\" format=\"21,11,11,21,21,11,11,21,21,11,11,21,21,11,11,21\" tiles_title=\"no\" post_type=\"portfolio\" scroll_loading=\"yes\" sticky_in_grid=\"no\" el_class=\"\" el_style=\"\"][/bt_grid][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSemiSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section] ','Portfolio tiles','\n ','publish','closed','closed','','portfolio-tiles','','','2016-03-17 16:05:20','2016-03-17 16:05:20','',971,'http://hotel.omnicom-dev.com/summer/?page_id=652',0,'page','',0);
INSERT INTO `smrc_posts` VALUES (653,1,'2016-02-23 11:08:56','2016-02-23 11:08:56','\n <p>Your Name (required)<br />\n [text* your-name] </p>\n\n<p>Your Email (required)<br />\n [email* your-email] </p>\n\n<p>Subject<br />\n [text your-subject] </p>\n\n<p>Your Message<br />\n [textarea your-message] </p>\n\n<p>[submit \"Send\"]</p>\nMessage - [your-subject]\n[your-name] <wordpress@hotel.bold-themes.com>\nFrom: [your-name] <[your-email]>\nSubject: [your-subject]\n\nMessage Body:\n[your-message]\n\n--\nThis e-mail was sent from a contact form on Hotel California (http://hotel.bold-themes.com/summer)\ninfo@bold-themes.com\nReply-To: [your-email]\n\n\n\n\n[your-subject]\nSummer hotel demo <wordpress@hotel.omnicom-dev.com>\nMessage Body:\n[your-message]\n\n--\nThis e-mail was sent from a contact form on Summer hotel demo (http://hotel.omnicom-dev.com/summer)\n[your-email]\nReply-To: info@bold-themes.com\n\n\n\nYour message was sent successfully. Thanks.\nFailed to send your message. Please try later or contact the administrator by another method.\nValidation errors occurred. Please confirm the fields and submit it again.\nFailed to send your message. Please try later or contact the administrator by another method.\nPlease accept the terms to proceed.\nPlease fill in the required field.\nThis input is too long.\nThis input is too short.\nThe date format is incorrect.\nThe date is before the earliest one allowed.\nThe date is after the latest one allowed.\nThere was an unknown error uploading the file.\nYou are not allowed to upload files of this type.\nThe file is too big.\nThere was an error uploading the file.\nThe number format is invalid.\nThe number is smaller than the minimum allowed.\nThe number is larger than the maximum allowed.\nThe answer to the quiz is incorrect.\nYour entered code is incorrect.\nThe e-mail address entered is invalid.\nThe URL is invalid.\nThe telephone number is invalid. ','Contact form 1','\n ','publish','closed','closed','','contact-form-1-3','','','2016-02-23 11:08:56','2016-02-23 11:08:56','',0,'http://hotel.omnicom-dev.com/summer/?post_type=wpcf7_contact_form&p=4',0,'wpcf7_contact_form','',0);
INSERT INTO `smrc_posts` VALUES (702,1,'2016-03-23 11:50:44','2016-03-23 11:50:44','\n [bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSemiSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"2/3\" align=\"left\" vertical_align=\"btMiddleVertical\" border=\"no_border\" cell_padding=\"default\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Our Accomodation\" headline=\"Rooms <i>&</i> Suites\" headline_size=\"extralarge\" dash=\"bottom\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\" subheadline=\"If you chose to stay with us you will enjoy modern home comforts in a traditional setting. Whether you are looking for a short weekend break or a longer holiday, we offer a range of packages that will cater for all.\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSemiSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/3\" align=\"left\" vertical_align=\"btMiddleVertical\" border=\"no_border\" cell_padding=\"default\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][/bt_column][/bt_row][bt_row][bt_column width=\"1/3\" align=\"left\" vertical_align=\"btMiddleVertical\" border=\"no_border\" cell_padding=\"btDoublePadding\" animation=\"no_animation\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"#e5e5e5\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"DELUXE\" headline=\"Executive App\" headline_size=\"large\" dash=\"top\" subheadline=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer mollis viverra diam ac ornare. Donec rhoncus nisi in felis congue, at pulvinar nibh dapibus.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/2\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"room details\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"1/2\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"2/3\"][bt_image image=\"44\" caption_text=\"View\" size=\"\" shape=\"square\" url=\"room details\" target=\"_self\" el_class=\"\" el_style=\"\" caption=\"Double room\" show_titles=\"no\" caption_title=\"Room details\"][bt_header superheadline=\"Room features\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"cs_ea18\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9c2\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea2c\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1c\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\"][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"2/3\" align=\"right\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"43\" caption_text=\"\" size=\"\" shape=\"square\" url=\"room details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"Room features\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"cs_ea18\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9c5\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1a\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1c\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][bt_column width=\"1/3\" align=\"left\" vertical_align=\"btMiddleVertical\" border=\"no_border\" cell_padding=\"btDoublePadding\" animation=\"no_animation\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"#e5e5e5\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"DELUXE\" headline=\"Junior Suite\" headline_size=\"large\" dash=\"top\" subheadline=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer mollis viverra diam ac ornare. Donec rhoncus nisi in felis congue, at pulvinar nibh dapibus.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/2\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"room details\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"1/2\"][bt_header superheadline=\"FROM\" headline=\"$79 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\"][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"1/4\"][bt_image image=\"563\" caption_text=\"View\" size=\"\" shape=\"square\" url=\"room details\" target=\"_self\" el_class=\"\" el_style=\"\" caption=\"Double room\" show_titles=\"no\" caption_title=\"Room details\"][bt_header superheadline=\"Room features\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"cs_ea18\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9c2\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea2c\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1c\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"GARDEN\" headline=\"Family Room\" headline_size=\"medium\" dash=\"top\" subheadline=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer mollis viverra diam ac ornare. Donec rhoncus nisi in felis congue, at pulvinar nibh dapibus.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/2\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"room details\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"1/2\"][bt_header superheadline=\"FROM\" headline=\"$89 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\"][bt_image image=\"562\" caption_text=\"\" size=\"\" shape=\"square\" url=\"room details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"Room features\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"cs_ea18\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9c5\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1a\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1c\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"EXECUTIVE\" headline=\"Double Suite\" headline_size=\"medium\" dash=\"top\" subheadline=\"Curabitur sollicitudin vitae tellus ac porta. Donec aliquam turpis augue, eu sagittis risus consectetur non. Cras ut feugiat dolor, consectetur tristique nibh.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/2\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"room details\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"1/2\"][bt_header superheadline=\"FROM\" headline=\"$119 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\"][bt_image image=\"565\" caption_text=\"\" size=\"\" shape=\"square\" url=\"room details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"Room features\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"cs_ea30\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea18\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea2d\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1c\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"EXECUTIVE\" headline=\"Deluxe Suite\" headline_size=\"medium\" dash=\"top\" subheadline=\"Proin lobortis tempus elit sit amet consectetur. Proin egestas velit nibh, a viverra magna imperdiet sit amet. Nam diam neque, consectetur vel dolor et.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/2\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"room details\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"1/2\"][bt_header superheadline=\"FROM\" headline=\"$109 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\"][bt_image image=\"564\" caption_text=\"\" size=\"medium\" shape=\"square\" url=\"room details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"Room features\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"cs_ea18\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1b\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea21\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1c\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"DETACHED\" headline=\"Maisonette\" headline_size=\"medium\" dash=\"top\" subheadline=\"Vestibulum faucibus est sit amet dolor mollis, vitae auctor massa ullamcorper. Integer ultrices quis sapien a viverra. Aenean at nunc at mauris congue egestas.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/2\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"room details\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"1/2\"][bt_header superheadline=\"FROM\" headline=\"$129 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"558\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"0.25\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"323\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"width: 60px; margin-top: -28px;\"][/bt_image][bt_hr top_spaced=\"topSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"1/2\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"no_animation\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Book your Room\" headline_size=\"extralarge\" dash=\"bottom\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][bt_text]\n\nFusce finibus orci dolor, a convallis dolor tincidunt at. Donec est augue, convallis ut feugiat non, euismod ac lorem. Suspendisse vel faucibus dui. In nulla ex, pulvinar ac lorem eget, pulvinar tincidunt magna.\n\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/2\"][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\n\n[contact-form-7 id=\"557\" title=\"Booking form 2col\"]\n\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section] ','Rooms, layout 2','\n ','publish','closed','closed','','rooms-layout-2','','','2016-03-23 11:50:44','2016-03-23 11:50:44','',626,'http://hotel.bold-themes.com/summer/?page_id=702',0,'page','',0);
INSERT INTO `smrc_posts` VALUES (725,1,'2016-03-30 08:39:08','2016-03-30 08:39:08','\n ','summer-offer-4','\n ','inherit','open','closed','','summer-offer-4','','','2016-03-30 08:39:08','2016-03-30 08:39:08','',0,'http://mpycdev.theomggroup.com/wp-content/uploads/2016/02/summer-offer-4.jpg',0,'attachment','image/jpeg',0);
INSERT INTO `smrc_posts` VALUES (727,1,'2016-03-30 08:51:53','2016-03-30 08:51:53','\n [bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSemiSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"2/3\" align=\"left\" vertical_align=\"btMiddleVertical\" border=\"no_border\" cell_padding=\"default\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Endulge yourself\" headline=\"Spa <i>&</i> Wellness\" headline_size=\"extralarge\" dash=\"bottom\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\" subheadline=\"Donec volutpat fringilla erat, eu egestas lorem varius vitae. In pulvinar ex sapien, ac iaculis nisl finibus sed. Nulla facilisi. Donec in suscipit leo, a aliquam libero.\" el_class=\"\" el_style=\"\"][/bt_header][/bt_column][bt_column width=\"1/3\" align=\"left\" vertical_align=\"btMiddleVertical\" border=\"no_border\" cell_padding=\"default\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"yes\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/3\"][bt_image image=\"731\" caption_text=\"Full endulgement\" size=\"\" shape=\"square\" url=\"special offers\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"Body wraps & Massage\" show_titles=\"no\"][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"Full endulgement\" headline=\"Body wraps & Massage\" headline_size=\"medium\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\n<div id=\"copy\">\n\nA pure spa experience. Following a body polish, a \'mask\' is applied all over the body before being wrapped in a thermal blanket, allowing the body\'s heat to activate the absorption of the natural ingredients. An extra head massage can be included.\n\n</div>\n[/bt_text][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/3\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"special offers\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"2/3\"][bt_header superheadline=\"FROM\" headline=\"$29 / treatment\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/3\"][bt_image image=\"730\" caption_text=\"Get together\" size=\"\" shape=\"square\" url=\"special offers\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"Family vacation\" show_titles=\"no\"][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"Ancient scences\" headline=\"Fragnances Spa Therapy\" headline_size=\"medium\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\n\nAt Thermae Bath Spa, you can choose from a wide range of spa, health and beauty treatments. Individual treatments are available every day including weekends. The time allocated for a treatment is in addition to the spa session you might want to spend yourself.\n\n[/bt_text][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/3\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"special offers\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"2/3\"][bt_header superheadline=\"FROM\" headline=\"$39 / treatment\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_price_list title=\"Special offer\" subtitle=\"Weekend spa treatment\" sticker=\"NEW!\" currency=\"$\" price=\"39\" items=\"Signature treatments\nHot stones spa therapy\nBody care\nFully body massage\nFoot rub\" el_class=\"\" el_style=\"\"][/bt_price_list][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/3\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"special offers\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"2/3\"][bt_header superheadline=\"FROM\" headline=\"$39 / treatment\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"3/4\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_grid_gallery ids=\"744,743,742,741,740,739,738,737,736,735,750,748,747,746,745\" format=\"21,11,11,21,21,11,11,21,21,11,11,21\" lightbox=\"yes\" grid_gap=\"10\" columns=\"3\" links=\"\" el_class=\"\" el_style=\"\"][/bt_grid_gallery][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"no_animation\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"#e5e5e5\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Spa\" headline_size=\"large\" dash=\"bottom\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][bt_text]\n\nPhasellus porta faucibus condimentum. Integer nec dignissim nisi. Ut finibus massa ante, vitae interdum lorem hendrerit sit amet. Vivamus orci ligula, auctor non nulla id, iaculis tincidunt ipsum. Nullam ornare accumsan diam, sit amet porta orci fermentum at. Quisque tempus felis sit amet bibendum cursus. Morbi tristique nisl lorem, ac placerat diam mattis quis.\n\n[/bt_text][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section] ','Spa & Wellness','\n ','publish','closed','closed','','spa-wellness','','','2016-03-30 08:51:53','2016-03-30 08:51:53','',11,'http://hotel.bold-themes.com/summer/?page_id=727',0,'page','',0);
INSERT INTO `smrc_posts` VALUES (730,1,'2016-03-30 10:43:16','2016-03-30 10:43:16','\n ','spa-2','\n ','inherit','open','closed','','spa-2','','','2016-03-30 10:43:16','2016-03-30 10:43:16','',0,'http://mpycdev.theomggroup.com/wp-content/uploads/2016/03/spa-2.jpg',0,'attachment','image/jpeg',0);
INSERT INTO `smrc_posts` VALUES (731,1,'2016-03-30 10:43:20','2016-03-30 10:43:20','\n ','spa-1','\n ','inherit','open','closed','','spa-1','','','2016-03-30 10:43:20','2016-03-30 10:43:20','',0,'http://mpycdev.theomggroup.com/wp-content/uploads/2016/03/spa-1.jpg',0,'attachment','image/jpeg',0);
INSERT INTO `smrc_posts` VALUES (735,1,'2016-03-30 10:59:21','2016-03-30 10:59:21','\n ','spa-gallery-01','\n ','inherit','open','closed','','spa-gallery-01','','','2016-03-30 10:59:21','2016-03-30 10:59:21','',0,'http://mpycdev.theomggroup.com/wp-content/uploads/2016/03/spa-gallery-01.jpg',0,'attachment','image/jpeg',0);
INSERT INTO `smrc_posts` VALUES (736,1,'2016-03-30 10:59:28','2016-03-30 10:59:28','\n ','spa-gallery-02','\n ','inherit','open','closed','','spa-gallery-02','','','2016-03-30 10:59:28','2016-03-30 10:59:28','',0,'http://mpycdev.theomggroup.com/wp-content/uploads/2016/03/spa-gallery-02.jpg',0,'attachment','image/jpeg',0);
INSERT INTO `smrc_posts` VALUES (737,1,'2016-03-30 10:59:34','2016-03-30 10:59:34','\n ','spa-gallery-03','\n ','inherit','open','closed','','spa-gallery-03','','','2016-03-30 10:59:34','2016-03-30 10:59:34','',0,'http://mpycdev.theomggroup.com/wp-content/uploads/2016/03/spa-gallery-03.jpg',0,'attachment','image/jpeg',0);
INSERT INTO `smrc_posts` VALUES (738,1,'2016-03-30 10:59:38','2016-03-30 10:59:38','\n ','spa-gallery-04','\n ','inherit','open','closed','','spa-gallery-04','','','2016-03-30 10:59:38','2016-03-30 10:59:38','',0,'http://mpycdev.theomggroup.com/wp-content/uploads/2016/03/spa-gallery-04.jpg',0,'attachment','image/jpeg',0);
INSERT INTO `smrc_posts` VALUES (739,1,'2016-03-30 10:59:44','2016-03-30 10:59:44','\n ','spa-gallery-05','\n ','inherit','open','closed','','spa-gallery-05','','','2016-03-30 10:59:44','2016-03-30 10:59:44','',0,'http://mpycdev.theomggroup.com/wp-content/uploads/2016/03/spa-gallery-05.jpg',0,'attachment','image/jpeg',0);
INSERT INTO `smrc_posts` VALUES (740,1,'2016-03-30 10:59:49','2016-03-30 10:59:49','\n ','spa-gallery-06','\n ','inherit','open','closed','','spa-gallery-06','','','2016-03-30 10:59:49','2016-03-30 10:59:49','',0,'http://mpycdev.theomggroup.com/wp-content/uploads/2016/03/spa-gallery-06.jpg',0,'attachment','image/jpeg',0);
INSERT INTO `smrc_posts` VALUES (741,1,'2016-03-30 10:59:53','2016-03-30 10:59:53','\n ','spa-gallery-07','\n ','inherit','open','closed','','spa-gallery-07','','','2016-03-30 10:59:53','2016-03-30 10:59:53','',0,'http://mpycdev.theomggroup.com/wp-content/uploads/2016/03/spa-gallery-07.jpg',0,'attachment','image/jpeg',0);
INSERT INTO `smrc_posts` VALUES (742,1,'2016-03-30 10:59:57','2016-03-30 10:59:57','\n ','spa-gallery-08','\n ','inherit','open','closed','','spa-gallery-08','','','2016-03-30 10:59:57','2016-03-30 10:59:57','',0,'http://mpycdev.theomggroup.com/wp-content/uploads/2016/03/spa-gallery-08.jpg',0,'attachment','image/jpeg',0);
INSERT INTO `smrc_posts` VALUES (743,1,'2016-03-30 11:00:02','2016-03-30 11:00:02','\n ','spa-gallery-09','\n ','inherit','open','closed','','spa-gallery-09','','','2016-03-30 11:00:02','2016-03-30 11:00:02','',0,'http://mpycdev.theomggroup.com/wp-content/uploads/2016/03/spa-gallery-09.jpg',0,'attachment','image/jpeg',0);
INSERT INTO `smrc_posts` VALUES (744,1,'2016-03-30 11:00:06','2016-03-30 11:00:06','\n ','spa-gallery-10','\n ','inherit','open','closed','','spa-gallery-10','','','2016-03-30 11:00:06','2016-03-30 11:00:06','',0,'http://mpycdev.theomggroup.com/wp-content/uploads/2016/03/spa-gallery-10.jpg',0,'attachment','image/jpeg',0);
INSERT INTO `smrc_posts` VALUES (745,1,'2016-03-30 11:00:11','2016-03-30 11:00:11','\n ','spa-gallery-11','\n ','inherit','open','closed','','spa-gallery-11','','','2016-03-30 11:00:11','2016-03-30 11:00:11','',0,'http://mpycdev.theomggroup.com/wp-content/uploads/2016/03/spa-gallery-11.jpg',0,'attachment','image/jpeg',0);
INSERT INTO `smrc_posts` VALUES (746,1,'2016-03-30 11:00:20','2016-03-30 11:00:20','\n ','spa-gallery-12','\n ','inherit','open','closed','','spa-gallery-12','','','2016-03-30 11:00:20','2016-03-30 11:00:20','',0,'http://mpycdev.theomggroup.com/wp-content/uploads/2016/03/spa-gallery-12.jpg',0,'attachment','image/jpeg',0);
INSERT INTO `smrc_posts` VALUES (747,1,'2016-03-30 11:00:29','2016-03-30 11:00:29','\n ','spa-gallery-13','\n ','inherit','open','closed','','spa-gallery-13','','','2016-03-30 11:00:29','2016-03-30 11:00:29','',0,'http://mpycdev.theomggroup.com/wp-content/uploads/2016/03/spa-gallery-13.jpg',0,'attachment','image/jpeg',0);
INSERT INTO `smrc_posts` VALUES (748,1,'2016-03-30 11:00:38','2016-03-30 11:00:38','\n ','spa-gallery-14','\n ','inherit','open','closed','','spa-gallery-14','','','2016-03-30 11:00:38','2016-03-30 11:00:38','',0,'http://mpycdev.theomggroup.com/wp-content/uploads/2016/03/spa-gallery-14.jpg',0,'attachment','image/jpeg',0);
INSERT INTO `smrc_posts` VALUES (749,1,'2016-03-30 11:00:52','2016-03-30 11:00:52','\n ','spa-gallery-15','\n ','inherit','open','closed','','spa-gallery-15','','','2016-03-30 11:00:52','2016-03-30 11:00:52','',0,'http://mpycdev.theomggroup.com/wp-content/uploads/2016/03/spa-gallery-15.jpg',0,'attachment','image/jpeg',0);
INSERT INTO `smrc_posts` VALUES (750,1,'2016-03-30 11:01:03','2016-03-30 11:01:03','\n ','spa-gallery-16','\n ','inherit','open','closed','','spa-gallery-16','','','2016-03-30 11:01:03','2016-03-30 11:01:03','',0,'http://mpycdev.theomggroup.com/wp-content/uploads/2016/03/spa-gallery-16.jpg',0,'attachment','image/jpeg',0);
INSERT INTO `smrc_posts` VALUES (753,1,'2016-03-30 11:04:07','2016-03-30 11:04:07','\n [bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"2/3\"][bt_header superheadline=\"Award winning\" headline=\"Hotel California Restaurant\" headline_size=\"extralarge\" dash=\"bottom\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\" subheadline=\"Phasellus tristique tellus ante, sit amet aliquet metus vestibulum nec. Nunc sit amet consequat quam, vitae iaculis nisi. Quisque dictum convallis interdum. Vivamus mollis nec metus.\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/3\"][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\"][bt_slider height=\"auto\" auto_play=\"\" hide_arrows=\"\" hide_paging=\"\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"765\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"764\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"763\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"762\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"761\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][/bt_slider][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"yes\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"2/3\"][bt_header superheadline=\"Great dishes\" headline=\"Something for everyone\" headline_size=\"extralarge\" dash=\"bottom\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\" subheadline=\"Sed aliquam est a ex semper, a consequat est imperdiet. Quisque arcu ex, mollis eget ante at, volutpat accumsan massa. Donec suscipit suscipit massa, nec aliquam libero malesuada nec.\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/3\"][/bt_column][/bt_row][bt_row][bt_column width=\"1/4\"][bt_image image=\"770\" caption_text=\"\" size=\"\" shape=\"square\" url=\"#\" target=\"_self\" el_class=\"\" el_style=\"\" caption=\"Double room\" show_titles=\"no\" caption_title=\"\"][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"Gourmand favourite\" headline=\"Pork chops and salad\" headline_size=\"medium\" dash=\"top\" subheadline=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer mollis viverra diam ac ornare. Donec rhoncus nisi in felis congue, at pulvinar nibh dapibus.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\"][bt_image image=\"769\" caption_text=\"\" size=\"\" shape=\"square\" url=\"#\" target=\"_self\" el_class=\"\" el_style=\"\" caption=\"Double room\" show_titles=\"no\" caption_title=\"\"][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"Sea food\" headline=\"Prawns and Fish\" headline_size=\"medium\" dash=\"top\" subheadline=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer mollis viverra diam ac ornare. Donec rhoncus nisi in felis congue, at pulvinar nibh dapibus.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\"][bt_image image=\"767\" caption_text=\"\" size=\"\" shape=\"square\" url=\"#\" target=\"_self\" el_class=\"\" el_style=\"\" caption=\"Double room\" show_titles=\"no\" caption_title=\"\"][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"Only greens\" headline=\"Vegan friendly\" headline_size=\"medium\" dash=\"top\" subheadline=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer mollis viverra diam ac ornare. Donec rhoncus nisi in felis congue, at pulvinar nibh dapibus.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\"][bt_image image=\"768\" caption_text=\"\" size=\"\" shape=\"square\" url=\"#\" target=\"_self\" el_class=\"\" el_style=\"\" caption=\"Double room\" show_titles=\"no\" caption_title=\"\"][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"Sweet\" headline=\"Desserts\" headline_size=\"medium\" dash=\"top\" subheadline=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer mollis viverra diam ac ornare. Donec rhoncus nisi in felis congue, at pulvinar nibh dapibus.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"323\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"width: 60px; margin-top: -28px;\"][/bt_image][bt_hr top_spaced=\"topSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"7/12\"][bt_header superheadline=\"\" headline=\"All meals\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Phasellus blandit a massa vitae congue. Nam ex massa, mattis ut sapien sit amet, consequat sodales risus. Sed interdum, ligula et lobortis faucibus, sem sem placerat augue, eget scelerisque turpis lorem et tellus.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"5/12\"][/bt_column][/bt_row][bt_row][bt_column width=\"2/3\"][bt_tabs][bt_tabs_items headline=\"Breakfast\"][bt_image image=\"760\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\n\nBreakfast is served from <strong>7AM to 12PM</strong>\n\n[/bt_text][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"Lorem ipsum dolor\" headline=\"Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\" headline_size=\"small\" dash=\"no\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][bt_header superheadline=\"\" headline=\"$15\" headline_size=\"medium\" dash=\"no\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"Donec ac metus arcu\" headline=\"Donec tincidunt mi sed nulla pulvinar\" headline_size=\"small\" dash=\"no\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][bt_header superheadline=\"\" headline=\"$15\" headline_size=\"medium\" dash=\"no\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"Phasellus tristique tellus\" headline=\"Nunc sit amet consequat quam, vitae iaculis nisi. \" headline_size=\"small\" dash=\"no\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][bt_header superheadline=\"\" headline=\"$20\" headline_size=\"medium\" dash=\"no\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"In faucibus neque\" headline=\"Lacinia maximus congue, augue sapien\" headline_size=\"small\" dash=\"no\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][bt_header superheadline=\"\" headline=\"$22\" headline_size=\"medium\" dash=\"no\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"Integer eget dapibus turpis\" headline=\"Mauris nec felis nec nunc finibus cursus\" headline_size=\"small\" dash=\"no\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][bt_header superheadline=\"\" headline=\"$25\" headline_size=\"medium\" dash=\"no\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][/bt_tabs_items][bt_tabs_items headline=\"Lunch\"][bt_image image=\"758\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\n\nLunch is served from <strong>12PM to 4PM</strong>. Room service is available.\n\n[/bt_text][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"Donec ac metus arcu\" headline=\"Donec tincidunt mi sed nulla pulvinar\" headline_size=\"small\" dash=\"no\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][bt_header superheadline=\"\" headline=\"$15\" headline_size=\"medium\" dash=\"no\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"Phasellus tristique tellus\" headline=\"Nunc sit amet consequat quam, vitae iaculis nisi. \" headline_size=\"small\" dash=\"no\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][bt_header superheadline=\"\" headline=\"$20\" headline_size=\"medium\" dash=\"no\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"In faucibus neque\" headline=\"Lacinia maximus congue, augue sapien\" headline_size=\"small\" dash=\"no\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][bt_header superheadline=\"\" headline=\"$22\" headline_size=\"medium\" dash=\"no\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"Integer eget dapibus turpis\" headline=\"Mauris nec felis nec nunc finibus cursus\" headline_size=\"small\" dash=\"no\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][bt_header superheadline=\"\" headline=\"$25\" headline_size=\"medium\" dash=\"no\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"Lorem ipsum dolor\" headline=\"Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\" headline_size=\"small\" dash=\"no\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][bt_header superheadline=\"\" headline=\"$15\" headline_size=\"medium\" dash=\"no\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][/bt_tabs_items][bt_tabs_items headline=\"Dinner\"][bt_image image=\"759\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\n\nBreakfast is served from <strong>7PM to 10PM</strong>. Room service is available.\n\n[/bt_text][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"Phasellus tristique tellus\" headline=\"Nunc sit amet consequat quam, vitae iaculis nisi. \" headline_size=\"small\" dash=\"no\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][bt_header superheadline=\"\" headline=\"$20\" headline_size=\"medium\" dash=\"no\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"In faucibus neque\" headline=\"Lacinia maximus congue, augue sapien\" headline_size=\"small\" dash=\"no\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][bt_header superheadline=\"\" headline=\"$22\" headline_size=\"medium\" dash=\"no\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"Integer eget dapibus turpis\" headline=\"Mauris nec felis nec nunc finibus cursus\" headline_size=\"small\" dash=\"no\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][bt_header superheadline=\"\" headline=\"$25\" headline_size=\"medium\" dash=\"no\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"Lorem ipsum dolor\" headline=\"Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\" headline_size=\"small\" dash=\"no\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][bt_header superheadline=\"\" headline=\"$15\" headline_size=\"medium\" dash=\"no\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"Donec ac metus arcu\" headline=\"Donec tincidunt mi sed nulla pulvinar\" headline_size=\"small\" dash=\"no\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][bt_header superheadline=\"\" headline=\"$15\" headline_size=\"medium\" dash=\"no\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][/bt_tabs_items][/bt_tabs][/bt_column][bt_column width=\"1/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"no_animation\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"#e5e5e5\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomSemiSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/1\" align=\"left\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"btTextIndent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Book a table\" headline_size=\"medium\" dash=\"bottom\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\" subheadline=\"Book your favourite table at the Hotel California restaurant in a minute. If you\'re our guest, you won\'t spend more than a minute for your booking.\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\n\n[contact-form-7 id=\"757\" title=\"Restaurant booking form\"]\n\n[/bt_text][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomSemiSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section] ','Restaurant','\n ','publish','closed','closed','','restaurant','','','2016-03-30 11:04:07','2016-03-30 11:04:07','',33,'http://hotel.bold-themes.com/summer/?page_id=753',0,'page','',0);
INSERT INTO `smrc_posts` VALUES (757,1,'2016-03-30 11:24:27','2016-03-30 11:24:27','\n <p>Book Date<br />\n[date* date-674]\n<p>Room Number<br/>\n[text* number-14]</p>\n<p>Your name<br/>\n[text name]</p>\n<p>Number of persons at the table<br/>\n[text* persons]</p>\n<p>[submit \"Book a table\"]</p>\nHotel California form\n[name] <wordpress@hotel.bold-themes.com>\nDate: [date-674], [number-14]\nName: [name]\nPersons: [persons]\n\n--\nThis e-mail was sent from a contact form on Hotel California (http://hotel.bold-themes.com/)\ninfo@bold-themes.com\n\n\n\n\n\nHotel California \"[your-subject]\"\nHotel California <wordpress@hotel.omnicom-dev.com>\nMessage Body:\n[your-message]\n\n--\nThis e-mail was sent from a contact form on Hotel California (http://hotel.omnicom-dev.com)\n[your-email]\nReply-To: info@bold-themes.com\n\n\n\nThank you for your message. It has been sent.\nThere was an error trying to send your message. Please try again later.\nOne or more fields have an error. Please check and try again.\nThere was an error trying to send your message. Please try again later.\nYou must accept the terms and conditions before sending your message.\nThe field is required.\nThe field is too long.\nThe field is too short.\nThe date format is incorrect.\nThe date is before the earliest one allowed.\nThe date is after the latest one allowed.\nThere was an unknown error uploading the file.\nYou are not allowed to upload files of this type.\nThe file is too big.\nThere was an error uploading the file.\nThe number format is invalid.\nThe number is smaller than the minimum allowed.\nThe number is larger than the maximum allowed.\nThe answer to the quiz is incorrect.\nYour entered code is incorrect.\nThe e-mail address entered is invalid.\nThe URL is invalid.\nThe telephone number is invalid. ','Restaurant booking form','\n ','publish','closed','closed','','contact-form_copy','','','2016-03-30 11:24:27','2016-03-30 11:24:27','',0,'http://hotel.bold-themes.com/summer/?post_type=wpcf7_contact_form&p=757',0,'wpcf7_contact_form','',0);
INSERT INTO `smrc_posts` VALUES (758,1,'2016-03-30 11:33:57','2016-03-30 11:33:57','\n ','restaurant-bar-lunch','\n ','inherit','open','closed','','restaurant-bar-lunch','','','2016-03-30 11:33:57','2016-03-30 11:33:57','',0,'http://mpycdev.theomggroup.com/wp-content/uploads/2016/03/restaurant-bar-lunch.jpg',0,'attachment','image/jpeg',0);
INSERT INTO `smrc_posts` VALUES (759,1,'2016-03-30 11:34:00','2016-03-30 11:34:00','\n ','restaurant-bar-dinner','\n ','inherit','open','closed','','restaurant-bar-dinner','','','2016-03-30 11:34:00','2016-03-30 11:34:00','',0,'http://mpycdev.theomggroup.com/wp-content/uploads/2016/03/restaurant-bar-dinner.jpg',0,'attachment','image/jpeg',0);
INSERT INTO `smrc_posts` VALUES (760,1,'2016-03-30 11:34:03','2016-03-30 11:34:03','\n ','restaurant-bar-breakfast','\n ','inherit','open','closed','','restaurant-bar-breakfast','','','2016-03-30 11:34:03','2016-03-30 11:34:03','',0,'http://mpycdev.theomggroup.com/wp-content/uploads/2016/03/restaurant-bar-breakfast.jpg',0,'attachment','image/jpeg',0);
INSERT INTO `smrc_posts` VALUES (761,1,'2016-03-30 11:46:03','2016-03-30 11:46:03','\n ','restaurant-gallery-05','\n ','inherit','open','closed','','restaurant-gallery-05','','','2016-03-30 11:46:03','2016-03-30 11:46:03','',0,'http://mpycdev.theomggroup.com/wp-content/uploads/2016/03/restaurant-gallery-05.jpg',0,'attachment','image/jpeg',0);
INSERT INTO `smrc_posts` VALUES (762,1,'2016-03-30 11:46:07','2016-03-30 11:46:07','\n ','restaurant-gallery-04','\n ','inherit','open','closed','','restaurant-gallery-04','','','2016-03-30 11:46:07','2016-03-30 11:46:07','',0,'http://mpycdev.theomggroup.com/wp-content/uploads/2016/03/restaurant-gallery-04.jpg',0,'attachment','image/jpeg',0);
INSERT INTO `smrc_posts` VALUES (763,1,'2016-03-30 11:46:12','2016-03-30 11:46:12','\n ','restaurant-gallery-03','\n ','inherit','open','closed','','restaurant-gallery-03','','','2016-03-30 11:46:12','2016-03-30 11:46:12','',0,'http://mpycdev.theomggroup.com/wp-content/uploads/2016/03/restaurant-gallery-03.jpg',0,'attachment','image/jpeg',0);
INSERT INTO `smrc_posts` VALUES (764,1,'2016-03-30 11:46:17','2016-03-30 11:46:17','\n ','restaurant-gallery-02','\n ','inherit','open','closed','','restaurant-gallery-02','','','2016-03-30 11:46:17','2016-03-30 11:46:17','',0,'http://mpycdev.theomggroup.com/wp-content/uploads/2016/03/restaurant-gallery-02.jpg',0,'attachment','image/jpeg',0);
INSERT INTO `smrc_posts` VALUES (765,1,'2016-03-30 11:46:23','2016-03-30 11:46:23','\n ','restaurant-gallery-01','\n ','inherit','open','closed','','restaurant-gallery-01','','','2016-03-30 11:46:23','2016-03-30 11:46:23','',0,'http://mpycdev.theomggroup.com/wp-content/uploads/2016/03/restaurant-gallery-01.jpg',0,'attachment','image/jpeg',0);
INSERT INTO `smrc_posts` VALUES (766,1,'2016-03-30 12:29:03','2016-03-30 12:29:03','\n ','restaurant-offer-05','\n ','inherit','open','closed','','restaurant-offer-05','','','2016-03-30 12:29:03','2016-03-30 12:29:03','',0,'http://mpycdev.theomggroup.com/wp-content/uploads/2016/03/restaurant-offer-05.jpg',0,'attachment','image/jpeg',0);
INSERT INTO `smrc_posts` VALUES (767,1,'2016-03-30 12:29:06','2016-03-30 12:29:06','\n ','restaurant-offer-04','\n ','inherit','open','closed','','restaurant-offer-04','','','2016-03-30 12:29:06','2016-03-30 12:29:06','',0,'http://mpycdev.theomggroup.com/wp-content/uploads/2016/03/restaurant-offer-04.jpg',0,'attachment','image/jpeg',0);
INSERT INTO `smrc_posts` VALUES (768,1,'2016-03-30 12:29:08','2016-03-30 12:29:08','\n ','restaurant-offer-03','\n ','inherit','open','closed','','restaurant-offer-03','','','2016-03-30 12:29:08','2016-03-30 12:29:08','',0,'http://mpycdev.theomggroup.com/wp-content/uploads/2016/03/restaurant-offer-03.jpg',0,'attachment','image/jpeg',0);
INSERT INTO `smrc_posts` VALUES (769,1,'2016-03-30 12:29:12','2016-03-30 12:29:12','\n ','restaurant-offer-02','\n ','inherit','open','closed','','restaurant-offer-02','','','2016-03-30 12:29:12','2016-03-30 12:29:12','',0,'http://mpycdev.theomggroup.com/wp-content/uploads/2016/03/restaurant-offer-02.jpg',0,'attachment','image/jpeg',0);
INSERT INTO `smrc_posts` VALUES (770,1,'2016-03-30 12:29:14','2016-03-30 12:29:14','\n ','restaurant-offer-01','\n ','inherit','open','closed','','restaurant-offer-01','','','2016-03-30 12:29:14','2016-03-30 12:29:14','',0,'http://mpycdev.theomggroup.com/wp-content/uploads/2016/03/restaurant-offer-01.jpg',0,'attachment','image/jpeg',0);
INSERT INTO `smrc_posts` VALUES (773,1,'2016-03-30 12:52:52','2016-03-30 12:52:52','\n [bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"2/3\"][bt_header superheadline=\"Visits\" headline=\"What to see\" headline_size=\"extralarge\" dash=\"bottom\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\" subheadline=\"In faucibus, neque lacinia maximus congue, augue sapien porta ex, vel vehicula arcu felis eu massa. Donec eget eros sapien. Sed vitae sollicitudin metus, id ultricies dolor.\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/3\"][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/3\" align=\"left\" vertical_align=\"btMiddleVertical\" border=\"no_border\" cell_padding=\"btDoublePadding\" animation=\"no_animation\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"#e6e6e6\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSemiSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"Sand under the feet\" headline=\"Great beaches\" headline_size=\"large\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\n\nSed aliquam est a ex semper, a consequat est imperdiet. Quisque arcu ex, mollis eget ante at, volutpat accumsan massa. Donec suscipit suscipit massa, nec aliquam libero malesuada nec. Pellentesque sem erat, porttitor eget purus et, viverra pulvinar nisl.\n\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_button text=\"READ MORE\" icon=\"no_icon\" url=\"#\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Normal\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"2/3\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_grid_gallery ids=\"595,591,589,606,476,475\" format=\"\" lightbox=\"yes\" grid_gap=\"0\" columns=\"3\" links=\"\" el_class=\"\" el_style=\"\"][/bt_grid_gallery][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\"][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"2/3\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_grid_gallery ids=\"781,782,784,785,786,788\" format=\"\" lightbox=\"yes\" grid_gap=\"0\" columns=\"3\" links=\"\" el_class=\"\" el_style=\"\"][/bt_grid_gallery][/bt_column][bt_column width=\"1/3\" align=\"left\" vertical_align=\"btMiddleVertical\" border=\"no_border\" cell_padding=\"btDoublePadding\" animation=\"no_animation\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"#e6e6e6\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSemiSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"Baseball frenzy\" headline=\"Petco Park\" headline_size=\"large\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\n\nDonec quam sapien, viverra eget venenatis ut, bibendum at dui. Pellentesque ultrices nulla elit, id ullamcorper ex pharetra at. Proin congue ultrices ante vitae consectetur. Sed a quam neque. Aenean ac sapien purus. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere.\n\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_button text=\"READ MORE\" icon=\"no_icon\" url=\"#\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Normal\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\"][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"1/3\" align=\"left\" vertical_align=\"btMiddleVertical\" border=\"no_border\" cell_padding=\"btDoublePadding\" animation=\"no_animation\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"#e6e6e6\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSemiSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"Animal friendly\" headline=\"San Diego Zoo\" headline_size=\"large\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\n\nPhasellus tristique tellus ante, sit amet aliquet metus vestibulum nec. Nunc sit amet consequat quam, vitae iaculis nisi. Quisque dictum convallis interdum. Vivamus mollis nec metus quis venenatis. Integer eleifend diam sed justo aliquet finibus. Duis vitae eleifend enim. Nunc nec imperdiet velit, in egestas enim.\n\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_button text=\"READ MORE\" icon=\"no_icon\" url=\"#\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Normal\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"2/3\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_grid_gallery ids=\"790,791,792,793,794,795\" format=\"\" lightbox=\"yes\" grid_gap=\"0\" columns=\"3\" links=\"\" el_class=\"\" el_style=\"\"][/bt_grid_gallery][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\"][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"2/3\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_grid_gallery ids=\"797,799,801,800,796,798\" format=\"\" lightbox=\"yes\" grid_gap=\"0\" columns=\"3\" links=\"\" el_class=\"\" el_style=\"\"][/bt_grid_gallery][/bt_column][bt_column width=\"1/3\" align=\"left\" vertical_align=\"btMiddleVertical\" border=\"no_border\" cell_padding=\"btDoublePadding\" animation=\"no_animation\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"#e6e6e6\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSemiSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"History lovers\" headline=\"USS Midway exhibition\" headline_size=\"large\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\n\nIn faucibus, neque lacinia maximus congue, augue sapien porta ex, vel vehicula arcu felis eu massa. Donec eget eros sapien. Sed vitae sollicitudin metus, id ultricies dolor. Pellentesque a massa lobortis, aliquet dolor vitae, ultricies enim. Nullam hendrerit eros et ullamcorper pharetra.\n\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_button text=\"READ MORE\" icon=\"no_icon\" url=\"#\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Normal\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section] ','What to see','\n ','publish','closed','closed','','activities-what-to-see','','','2016-03-30 12:52:52','2016-03-30 12:52:52','',11,'http://hotel.bold-themes.com/summer/?page_id=773',0,'page','',0);
INSERT INTO `smrc_posts` VALUES (781,1,'2016-03-30 13:35:41','2016-03-30 13:35:41','\n ','attractions-petco-park-01','\n ','inherit','open','closed','','olympus-digital-camera','','','2016-03-30 13:35:41','2016-03-30 13:35:41','',0,'http://mpycdev.theomggroup.com/wp-content/uploads/2016/03/attractions-petco-park-01.jpg',0,'attachment','image/jpeg',0);
INSERT INTO `smrc_posts` VALUES (782,1,'2016-03-30 13:35:51','2016-03-30 13:35:51','\n ','attractions-petco-park-02','\n ','inherit','open','closed','','attractions-petco-park-02','','','2016-03-30 13:35:51','2016-03-30 13:35:51','',0,'http://mpycdev.theomggroup.com/wp-content/uploads/2016/03/attractions-petco-park-02.jpg',0,'attachment','image/jpeg',0);
INSERT INTO `smrc_posts` VALUES (783,1,'2016-03-30 13:35:59','2016-03-30 13:35:59','\n ','attractions-petco-park-03','\n ','inherit','open','closed','','attractions-petco-park-03','','','2016-03-30 13:35:59','2016-03-30 13:35:59','',0,'http://mpycdev.theomggroup.com/wp-content/uploads/2016/03/attractions-petco-park-03.jpg',0,'attachment','image/jpeg',0);
INSERT INTO `smrc_posts` VALUES (784,1,'2016-03-30 13:36:06','2016-03-30 13:36:06','\n ','attractions-petco-park-04','\n ','inherit','open','closed','','attractions-petco-park-04','','','2016-03-30 13:36:06','2016-03-30 13:36:06','',0,'http://mpycdev.theomggroup.com/wp-content/uploads/2016/03/attractions-petco-park-04.jpg',0,'attachment','image/jpeg',0);
INSERT INTO `smrc_posts` VALUES (785,1,'2016-03-30 13:36:17','2016-03-30 13:36:17','\n ','attractions-petco-park-05','\n ','inherit','open','closed','','attractions-petco-park-05','','','2016-03-30 13:36:17','2016-03-30 13:36:17','',0,'http://mpycdev.theomggroup.com/wp-content/uploads/2016/03/attractions-petco-park-05.jpg',0,'attachment','image/jpeg',0);
INSERT INTO `smrc_posts` VALUES (786,1,'2016-03-30 13:36:26','2016-03-30 13:36:26','\n ','attractions-petco-park-06','\n ','inherit','open','closed','','attractions-petco-park-06','','','2016-03-30 13:36:26','2016-03-30 13:36:26','',0,'http://mpycdev.theomggroup.com/wp-content/uploads/2016/03/attractions-petco-park-06.jpg',0,'attachment','image/jpeg',0);
INSERT INTO `smrc_posts` VALUES (788,1,'2016-03-30 13:40:59','2016-03-30 13:40:59','\n ','attractions-petco-park-07','\n ','inherit','open','closed','','olympus-digital-camera-2','','','2016-03-30 13:40:59','2016-03-30 13:40:59','',0,'http://mpycdev.theomggroup.com/wp-content/uploads/2016/03/attractions-petco-park-07.jpg',0,'attachment','image/jpeg',0);
INSERT INTO `smrc_posts` VALUES (790,1,'2016-03-30 13:45:31','2016-03-30 13:45:31','\n ','attractions-zoo-02','\n ','inherit','open','closed','','attractions-zoo-02','','','2016-03-30 13:45:31','2016-03-30 13:45:31','',0,'http://mpycdev.theomggroup.com/wp-content/uploads/2016/03/attractions-zoo-02.jpg',0,'attachment','image/jpeg',0);
INSERT INTO `smrc_posts` VALUES (791,1,'2016-03-30 13:45:41','2016-03-30 13:45:41','\n ','attractions-zoo-01','\n ','inherit','open','closed','','attractions-zoo-01','','','2016-03-30 13:45:41','2016-03-30 13:45:41','',0,'http://mpycdev.theomggroup.com/wp-content/uploads/2016/03/attractions-zoo-01.jpg',0,'attachment','image/jpeg',0);
INSERT INTO `smrc_posts` VALUES (792,1,'2016-03-30 13:45:48','2016-03-30 13:45:48','\n ','attractions-zoo-03','\n ','inherit','open','closed','','attractions-zoo-03','','','2016-03-30 13:45:48','2016-03-30 13:45:48','',0,'http://mpycdev.theomggroup.com/wp-content/uploads/2016/03/attractions-zoo-03.jpg',0,'attachment','image/jpeg',0);
INSERT INTO `smrc_posts` VALUES (793,1,'2016-03-30 13:45:56','2016-03-30 13:45:56','\n ','attractions-zoo-04','\n ','inherit','open','closed','','attractions-zoo-04','','','2016-03-30 13:45:56','2016-03-30 13:45:56','',0,'http://mpycdev.theomggroup.com/wp-content/uploads/2016/03/attractions-zoo-04.jpg',0,'attachment','image/jpeg',0);
INSERT INTO `smrc_posts` VALUES (794,1,'2016-03-30 13:46:04','2016-03-30 13:46:04','\n ','attractions-zoo-05','\n ','inherit','open','closed','','attractions-zoo-05','','','2016-03-30 13:46:04','2016-03-30 13:46:04','',0,'http://mpycdev.theomggroup.com/wp-content/uploads/2016/03/attractions-zoo-05.jpg',0,'attachment','image/jpeg',0);
INSERT INTO `smrc_posts` VALUES (795,1,'2016-03-30 13:46:12','2016-03-30 13:46:12','\n ','attractions-zoo-06','\n ','inherit','open','closed','','attractions-zoo-06','','','2016-03-30 13:46:12','2016-03-30 13:46:12','',0,'http://mpycdev.theomggroup.com/wp-content/uploads/2016/03/attractions-zoo-06.jpg',0,'attachment','image/jpeg',0);
INSERT INTO `smrc_posts` VALUES (796,1,'2016-03-30 13:55:00','2016-03-30 13:55:00','\n ','San Diego 2012','\n ','inherit','open','closed','','san-diego-2012','','','2016-03-30 13:55:00','2016-03-30 13:55:00','',0,'http://mpycdev.theomggroup.com/wp-content/uploads/2016/03/attractions-uss-midway-01.jpg',0,'attachment','image/jpeg',0);
INSERT INTO `smrc_posts` VALUES (797,1,'2016-03-30 13:55:06','2016-03-30 13:55:06','\n ','San Diego 2012','\n ','inherit','open','closed','','san-diego-2012-2','','','2016-03-30 13:55:06','2016-03-30 13:55:06','',0,'http://mpycdev.theomggroup.com/wp-content/uploads/2016/03/attractions-uss-midway-02.jpg',0,'attachment','image/jpeg',0);
INSERT INTO `smrc_posts` VALUES (798,1,'2016-03-30 13:55:14','2016-03-30 13:55:14','\n ','San Diego 2012','\n ','inherit','open','closed','','san-diego-2012-3','','','2016-03-30 13:55:14','2016-03-30 13:55:14','',0,'http://mpycdev.theomggroup.com/wp-content/uploads/2016/03/attractions-uss-midway-03.jpg',0,'attachment','image/jpeg',0);
INSERT INTO `smrc_posts` VALUES (799,1,'2016-03-30 13:55:20','2016-03-30 13:55:20','\n ','San Diego 2012','\n ','inherit','open','closed','','san-diego-2012-4','','','2016-03-30 13:55:20','2016-03-30 13:55:20','',0,'http://mpycdev.theomggroup.com/wp-content/uploads/2016/03/attractions-uss-midway-04.jpg',0,'attachment','image/jpeg',0);
INSERT INTO `smrc_posts` VALUES (800,1,'2016-03-30 13:55:26','2016-03-30 13:55:26','\n ','San Diego 2012','\n ','inherit','open','closed','','san-diego-2012-5','','','2016-03-30 13:55:26','2016-03-30 13:55:26','',0,'http://mpycdev.theomggroup.com/wp-content/uploads/2016/03/attractions-uss-midway-05.jpg',0,'attachment','image/jpeg',0);
INSERT INTO `smrc_posts` VALUES (801,1,'2016-03-30 13:55:34','2016-03-30 13:55:34','\n ','San Diego 2012','\n ','inherit','open','closed','','san-diego-2012-6','','','2016-03-30 13:55:34','2016-03-30 13:55:34','',0,'http://mpycdev.theomggroup.com/wp-content/uploads/2016/03/attractions-uss-midway-06.jpg',0,'attachment','image/jpeg',0);
INSERT INTO `smrc_posts` VALUES (804,1,'2016-04-11 09:31:25','2016-04-11 09:31:25','[bt_section layout=\"wide\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"dark\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"right\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_slider height=\"auto\" auto_play=\"3000\" hide_arrows=\"\" hide_paging=\"btSliderHidePaging\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item image=\"483\" el_class=\"\" el_style=\"\"][bt_hr top_spaced=\"topExtraSpaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topExtraSpaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"Detached\" headline=\"Maisonette\" headline_size=\"extralarge\" dash=\"top\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][/bt_slider][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"323\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"width: 60px; margin-top: -28px;\"][/bt_image][bt_hr top_spaced=\"topSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"1/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Detached\" headline=\"Maisonette\" headline_size=\"extralarge\" dash=\"top\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][bt_row_inner][bt_column_inner width=\"1/1\" align=\"left\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"btHighlight\" text_indent=\"btTextIndent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Amenities\" headline_size=\"medium\" dash=\"no\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"cs_ea18\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea19\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea2c\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1c\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea20\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea33\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\r\n\r\nSize: 60 square feet\r\nView: Sea or Garden view\r\nTerraces: Balcony\r\nOccupants: Maximum 3 persons\r\nRoom service: Available per request\r\n\r\n[/bt_text][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/2\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"BOOK NOW\" icon=\"no_icon\" url=\"\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Medium\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][/bt_column_inner][bt_column_inner width=\"1/2\" align=\"left\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"FROM\" headline=\"$99 / night\" headline_size=\"medium\" dash=\"no\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/1\" align=\"left\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"btHighlight\" text_indent=\"btTextIndent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_custom_menu menu=\"Rooms\" el_class=\"\" el_style=\"\"][/bt_custom_menu][/bt_column_inner][/bt_row_inner][/bt_column][bt_column width=\"2/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_row_inner][bt_column_inner width=\"1/1\" align=\"left\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"btTextIndent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_text]\r\n\r\nAt the heart of San Diego, on one of the most colorful beaches, right next to the Pacific ocean, lies the Hotel California, most famous for it’s easy going staff and vacation you’ll never forget…\r\n\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Ut interdum nisi a justo dignissim, id sollicitudin ipsum suscipit. Ut magna purus, blandit quis bibendum sodales, rhoncus quis nibh. Sed gravida est leo, sed tristique nulla consequat vel. Donec id lacus id nisl pharetra pharetra. Interdum et malesuada fames ac ante ipsum primis in faucibus. Suspendisse nec leo nec dui porttitor varius sit amet ac velit.\r\n\r\nVivamus ornare viverra ex non rutrum. Cras pulvinar vitae eros in mollis. Donec tincidunt, metus nec tempor ornare, ligula est vehicula mauris, scelerisque cursus arcu sem vitae quam. Suspendisse rutrum aliquam odio, non vehicula nulla pellentesque et.\r\n<blockquote>Aliquam tincidunt sollicitudin lectus, quis consequat nisi elementum interdum. Etiam ac scelerisque magna. Nulla dignissim, nisi ac varius porta, velit dolor pretium.</blockquote>\r\nVestibulum placerat eleifend arcu at pellentesque. Phasellus vitae augue at ligula ullamcorper suscipit. Sed euismod, odio ut ullamcorper bibendum, erat quam gravida nibh, pellentesque eleifend urna dui ac nibh. Morbi auctor cursus vestibulum. Integer tristique neque erat, sed tempor urna semper a.\r\n\r\nFusce facilisis magna vel dolor tincidunt, sit amet pharetra erat consequat. Proin finibus aliquam purus, eu laoreet mauris auctor ut.\r\n\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSemiSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_grid_gallery ids=\"371,378,377,376,375,374,373,372\" format=\"\" lightbox=\"yes\" grid_gap=\"20\" columns=\"4\" links=\"\" el_class=\"\" el_style=\"\"][/bt_grid_gallery][/bt_column_inner][/bt_row_inner][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"dark\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#584528\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\"][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\r\n\r\n[contact-form-7 id=\"397\" title=\"Booking form\"]\r\n\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"2/3\"][bt_header superheadline=\"\" headline=\"Other Rooms\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"If you chose to stay with us you will enjoy modern home comforts in a traditional setting. Whether you are looking for a short weekend break or a longer holiday, we offer a range of packages that will cater for all.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/3\"][/bt_column][/bt_row][bt_row][bt_column width=\"1/4\"][bt_image image=\"44\" caption_text=\"View\" size=\"\" shape=\"square\" url=\"room details\" target=\"_self\" el_class=\"\" el_style=\"\" caption=\"Double room\" show_titles=\"no\" caption_title=\"Room details\"][bt_header superheadline=\"Room features\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"fa_f21a\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"s7_e67b\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"s7_e675\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"DELUXE\" headline=\"Double Room\" headline_size=\"medium\" dash=\"top\" subheadline=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer mollis viverra diam ac ornare. Donec rhoncus nisi in felis congue, at pulvinar nibh dapibus.\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/2\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"1/2\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\"][bt_image image=\"43\" caption_text=\"\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"EXECUTIVE\" headline=\"Junior Suite\" headline_size=\"medium\" dash=\"top\" subheadline=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer mollis viverra diam ac ornare. Donec rhoncus nisi in felis congue, at pulvinar nibh dapibus.\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/2\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"1/2\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\"][bt_image image=\"42\" caption_text=\"\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"DELUXE\" headline=\"Double Room\" headline_size=\"medium\" dash=\"top\" subheadline=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer mollis viverra diam ac ornare. Donec rhoncus nisi in felis congue, at pulvinar nibh dapibus.\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/2\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"1/2\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\"][bt_image image=\"41\" caption_text=\"\" size=\"medium\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"DELUXE\" headline=\"Family Room\" headline_size=\"medium\" dash=\"top\" subheadline=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer mollis viverra diam ac ornare. Donec rhoncus nisi in felis congue, at pulvinar nibh dapibus.\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/2\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"1/2\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section]','MPYC Standard Page','\n ','publish','closed','closed','','mpyc-standard-page','','','2021-04-07 23:48:06','2021-04-07 23:48:06','',626,'http://hotel.bold-themes.com/summer/?page_id=804',0,'page','',0);
INSERT INTO `smrc_posts` VALUES (809,1,'2016-04-11 14:05:06','2016-04-11 14:05:06','\n [bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSemiSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"2/3\" align=\"left\" vertical_align=\"btMiddleVertical\" border=\"no_border\" cell_padding=\"default\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Family fun\" headline=\"For Kids\" headline_size=\"extralarge\" dash=\"bottom\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\" subheadline=\"Donec fermentum risus ullamcorper justo imperdiet, et vulputate nulla porttitor. Pellentesque auctor pharetra lorem, a sollicitudin risus fermentum ut. Ut quis odio elit.\" el_class=\"\" el_style=\"\"][/bt_header][/bt_column][bt_column width=\"1/3\" align=\"left\" vertical_align=\"btMiddleVertical\" border=\"no_border\" cell_padding=\"default\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/2\" align=\"right\" vertical_align=\"btTopVertical\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"814\" caption_title=\"\" caption_text=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_column][bt_column width=\"1/2\" align=\"left\" vertical_align=\"btMiddleVertical\" border=\"no_border\" cell_padding=\"default\" animation=\"no_animation\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"#e6e6e6\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSemiSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"SAND AND GRASS\" headline=\"Outdoor Playgrounds\" headline_size=\"large\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_text]\n\nDuis iaculis dui at scelerisque euismod. Suspendisse ornare sagittis lacus a dictum. Ut hendrerit nisi ac tellus malesuada, id vehicula risus tempus. Vivamus hendrerit auctor dui, eget posuere dolor dignissim nec. Sed quam nisl, fermentum convallis urna id, dignissim ornare urna. Integer faucibus urna non odio scelerisque mollis. Cras sed vehicula orci, ut hendrerit arcu.\n\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_button text=\"READ MORE\" icon=\"no_icon\" url=\"#\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Normal\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSemiSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"1/2\" align=\"left\" vertical_align=\"btMiddleVertical\" border=\"no_border\" cell_padding=\"default\" animation=\"no_animation\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"#e6e6e6\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSemiSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"WATER PLAY\" headline=\"Pools or sea\" headline_size=\"large\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_text]\n\nPellentesque nulla magna, mollis vel justo interdum, scelerisque ornare erat. Nullam mollis sem libero, aliquet venenatis dui accumsan in. Nunc cursus interdum ultricies. Mauris tincidunt, elit eget placerat dignissim, libero ex aliquet ligula, sit amet accumsan leo nulla quis nibh. Mauris egestas blandit viverra. Nunc ac odio mauris.\n\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_button text=\"READ MORE\" icon=\"no_icon\" url=\"#\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Normal\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSemiSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/2\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"74\" el_class=\"\" el_style=\"\"][bt_image image=\"815\" caption_title=\"\" caption_text=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_column][/bt_row][bt_row][bt_column width=\"1/2\" align=\"right\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"75\" el_class=\"\" el_style=\"\"][bt_image image=\"818\" caption_title=\"\" caption_text=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_column][bt_column width=\"1/2\" align=\"left\" vertical_align=\"btMiddleVertical\" border=\"no_border\" cell_padding=\"default\" animation=\"no_animation\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"#e6e6e6\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSemiSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"BRICKS & MORE\" headline=\"Indoor playground\" headline_size=\"large\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_text]\n\nAliquam sollicitudin, enim nec vulputate interdum, mauris arcu sodales ipsum, eu porta nisi ex et libero. Cras egestas risus quis augue scelerisque, ut tempus elit fermentum. Nullam lobortis commodo elit, ut lobortis turpis rhoncus id. Etiam accumsan in dolor sollicitudin viverra. Sed nec nisi hendrerit sapien volutpat sollicitudin nec quis dui.\n\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_button text=\"READ MORE\" icon=\"no_icon\" url=\"#\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Normal\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSemiSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"1/2\" align=\"left\" vertical_align=\"btMiddleVertical\" border=\"no_border\" cell_padding=\"default\" animation=\"no_animation\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"#e6e6e6\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSemiSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"PLAY BALL\" headline=\"Group sports\" headline_size=\"large\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_text]\n\nSed aliquet convallis risus. Praesent sagittis, nisi finibus dictum ornare, sapien dui faucibus ex, sit amet faucibus ipsum mi non est. Proin non lectus a augue viverra malesuada sed vel orci. Nunc venenatis condimentum mi ac eleifend. Morbi quis dolor molestie nisi mattis cursus id at lectus. Morbi dignissim tincidunt rhoncus. Suspendisse vitae tellus lorem.\n\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_button text=\"READ MORE\" icon=\"no_icon\" url=\"#\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Normal\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSemiSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/2\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"76\" el_class=\"\" el_style=\"\"][bt_image image=\"817\" caption_title=\"\" caption_text=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_column][/bt_row][/bt_section] ','For Kids','\n ','publish','closed','closed','','for-kids','','','2016-04-11 14:05:06','2016-04-11 14:05:06','',11,'http://hotel.bold-themes.com/summer/?page_id=809',0,'page','',0);
INSERT INTO `smrc_posts` VALUES (814,1,'2016-04-11 14:18:06','2016-04-11 14:18:06','\n ','kids-01','\n ','inherit','open','closed','','kids-01','','','2016-04-11 14:18:06','2016-04-11 14:18:06','',0,'http://mpycdev.theomggroup.com/wp-content/uploads/2016/04/kids-01.jpg',0,'attachment','image/jpeg',0);
INSERT INTO `smrc_posts` VALUES (815,1,'2016-04-11 14:18:09','2016-04-11 14:18:09','\n ','kids-02','\n ','inherit','open','closed','','kids-02','','','2016-04-11 14:18:09','2016-04-11 14:18:09','',0,'http://mpycdev.theomggroup.com/wp-content/uploads/2016/04/kids-02.jpg',0,'attachment','image/jpeg',0);
INSERT INTO `smrc_posts` VALUES (817,1,'2016-04-11 14:40:49','2016-04-11 14:40:49','\n ','kids-04','\n ','inherit','open','closed','','kids-04','','','2016-04-11 14:40:49','2016-04-11 14:40:49','',0,'http://mpycdev.theomggroup.com/wp-content/uploads/2016/04/kids-04.jpg',0,'attachment','image/jpeg',0);
INSERT INTO `smrc_posts` VALUES (818,1,'2016-04-11 14:40:52','2016-04-11 14:40:52','\n ','kids-03','\n ','inherit','open','closed','','kids-03','','','2016-04-11 14:40:52','2016-04-11 14:40:52','',0,'http://mpycdev.theomggroup.com/wp-content/uploads/2016/04/kids-03.jpg',0,'attachment','image/jpeg',0);
INSERT INTO `smrc_posts` VALUES (829,1,'2016-05-18 07:08:05','2016-05-18 07:08:05','\n [bt_section layout=\"wide\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\"][bt_slider height=\"auto\" auto_play=\"5000\" hide_arrows=\"\" hide_paging=\"\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item image=\"833\" el_class=\"\" el_style=\"\"][bt_row_inner][bt_column_inner width=\"1/2\"][/bt_column_inner][bt_column_inner width=\"1/2\" align=\"left\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"animate animate-fadein animate-moveup\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_hr top_spaced=\"topExtraSpaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"<i>Beautiful</i> beaches\" headline_size=\"huge\" dash=\"bottom\" subheadline=\"Enjoying the sun and sea has never been so easy. At the beach of hotel California, you\'ll find our most complete service, great seaside and easy going staff.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_icons][bt_service icon=\"cs_e9c2\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"/activities\" headline=\"Sailing\" dash=\"\" text=\"\" el_class=\"\" el_style=\"\" superheadline=\"Water\"][/bt_service][bt_service icon=\"cs_ea30\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"/rooms\" headline=\"Rooms & Suites\" dash=\"\" text=\"\" el_class=\"\" el_style=\"\" superheadline=\"View our\"][/bt_service][/bt_icons][bt_hr top_spaced=\"topSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][/bt_slider_item][bt_slider_item image=\"834\" el_class=\"btLightSkin\" el_style=\"\"][bt_row_inner][bt_column_inner width=\"1/2\"][/bt_column_inner][bt_column_inner width=\"1/2\" align=\"left\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"animate animate-fadein animate-moveup\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_hr top_spaced=\"topExtraSpaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Enjoy your <i>vacation</i>\" headline_size=\"huge\" dash=\"bottom\" subheadline=\"At the heart of San Diego, on one of the most colorful beaches, right next to the Pacific ocean, lies the Hotel California, most famous for it’s easy going staff and vacation you’ll never forget...\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_icons][bt_service icon=\"cs_e9bd\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoBigSize\" url=\"/activities\" headline=\"Activities\" dash=\"\" text=\"\" el_class=\"\" el_style=\"\" superheadline=\"OUTDOOR\"][/bt_service][bt_service icon=\"s7_e6bf\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoBigSize\" url=\"/gallery\" headline=\"Gallery\" dash=\"\" text=\"\" el_class=\"\" el_style=\"\" superheadline=\"VIEW PHOTO\"][/bt_service][/bt_icons][bt_hr top_spaced=\"topSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][/bt_slider_item][/bt_slider][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"dark\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#584528\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\"][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\n\n[contact-form-7 id=\"397\" title=\"Booking form\"]\n\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSemiSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"7/12\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"What our guests say\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Phasellus blandit a massa vitae congue. Nam ex massa, mattis ut sapien sit amet, consequat sodales ligule ipsum risus. \" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"5/12\"][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_slider height=\"auto\" auto_play=\"\" hide_arrows=\"\" hide_paging=\"btSliderHidePaging\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/6\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"78\" caption_text=\"\" size=\"\" shape=\"circle\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][bt_header superheadline=\"June 2016\" headline=\"Alan Jones\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][/bt_column_inner][bt_column_inner width=\"5/6\"][bt_text]\n<blockquote>If you chose to stay with us you will enjoy modern home comforts in a traditional setting. Whether you are looking for a short weekend break or a longer holiday, we offer a range of packages that we think cater for all.</blockquote>\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/6\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"447\" caption_text=\"\" size=\"\" shape=\"circle\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][/bt_image][bt_header superheadline=\"July 2016\" headline=\"Adrianne White\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][bt_column_inner width=\"5/6\"][bt_text]\n<blockquote>If you chose to stay with us you will enjoy modern home comforts in a traditional setting. Whether you are looking for a short weekend break or a longer holiday, we offer a range of packages that we think cater for all.</blockquote>\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/6\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"446\" caption_text=\"\" size=\"\" shape=\"circle\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][/bt_image][bt_header superheadline=\"August 2016\" headline=\"Jenna & Mike\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][bt_column_inner width=\"5/6\"][bt_text]\n<blockquote>If you chose to stay with us you will enjoy modern home comforts in a traditional setting. Whether you are looking for a short weekend break or a longer holiday, we offer a range of packages that we think cater for all.</blockquote>\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][/bt_slider][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"66\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"323\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"width: 60px; margin-top: -28px;\"][/bt_image][bt_hr top_spaced=\"topSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"1/2\"][/bt_column][bt_column width=\"1/2\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"GET THE BEST RATE\" headline=\"Offers <i>&</i> Deals\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"If you chose to stay with us you will enjoy modern home comforts in a traditional setting. Whether you are looking for a short weekend break or a longer holiday, we offer a range of packages that we think cater for all.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"1/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"67\" caption_text=\"Get together\" size=\"\" shape=\"square\" url=\"special-offers\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"Family vacation\" show_titles=\"no\"][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"Get together\" headline=\"Family vacation\" headline_size=\"medium\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"fa_f207\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f13d\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f1eb\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f206\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f1ae\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\n\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Integer mollis viverra diam ac ornare. Donec rhoncus nisi in felis congue, at pulvinar nibh dapibus.\n\n[/bt_text][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/3\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"special-offers\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"2/3\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"68\" caption_text=\"Celebrate\" size=\"\" shape=\"square\" url=\"special-offers\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"Newlyweds weekend\" show_titles=\"no\"][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"Celebrate\" headline=\"Newlyweds weekend\" headline_size=\"medium\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"fa_f1ba\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f072\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f228\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\n\nSed ut metus eu neque commodo fringilla imperdiet sed nibh. Sed volutpat fermentum ligula, et maximus ex ultricies sit amet.\n\n[/bt_text][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/3\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"special-offers\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"2/3\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"725\" caption_text=\"Procrastinate\" size=\"\" shape=\"square\" url=\"special-offers\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"Lazy weekend\" show_titles=\"no\"][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"Procrastinate\" headline=\"Lazy weekend\" headline_size=\"medium\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"fa_f1ba\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f072\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f1eb\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f000\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f185\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\n\nPhasellus non bibendum augue. Duis nibh felis, volutpat vitae pulvinar at, tincidunt eget mi. Donec venenatis condimentum fermentum.\n\n[/bt_text][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/3\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"special-offers\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"2/3\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#e5e5e5\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"322\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"width: 60px; margin-top: -28px;\"][/bt_image][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"7/12\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Activities\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Phasellus blandit a massa vitae congue. Nam ex massa, mattis ut sapien sit amet, consequat sodales risus. Sed interdum, ligula et lobortis faucibus, sem sem placerat augue, eget scelerisque turpis lorem et tellus.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][/bt_column][bt_column width=\"5/12\"][/bt_column][/bt_row][/bt_section][bt_section layout=\"wide\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"dark\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#e5e5e5\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"73\" caption_title=\"Beach voleyball\" caption_text=\"Enjoy the game\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"ENJOY THE GAME\" headline=\"Beach Voleyball\" headline_size=\"medium\" dash=\"top\" subheadline=\"Beach volleyball is ouy visitors favourite sport, highly enjoyable for everyone young or old. Just gather your team on the beach and find the opponents in a matter of minutes. And show what you can do, be a winner!\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_e9ac\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e040\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e041\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"74\" el_class=\"\" el_style=\"\"][bt_image image=\"74\" caption_title=\"Horseback riding\" caption_text=\"Enjoy the beach\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Enjoy the beach\" headline=\"Horseback riding\" headline_size=\"medium\" dash=\"top\" subheadline=\"How about a lazy afternoon with your friends on a hors, while the sun goes down? If you want to chill out, our horse riding team will teach you in a matter of minutes and help you wind down after a good day on the sun.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_ea13\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1e\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e05b\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"75\" el_class=\"\" el_style=\"\"][bt_image image=\"75\" caption_title=\"Waterskiing\" caption_text=\"Enjoy the sea\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Enjoy the sea\" headline=\"Waterskiing\" headline_size=\"medium\" dash=\"top\" subheadline=\"If you are a big fan of water sports, then why not try the waterskiing or waterboarding? At hotel California you will find there\'s an amateur champoionship every year. Rated as the most fun activity by our visitors.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_e05b\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9a3\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9e5\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"76\" el_class=\"\" el_style=\"\"][bt_image image=\"76\" caption_title=\"Paragliding\" caption_text=\"Enjoy the sky\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Enjoy the sky\" headline=\"Parasailing\" headline_size=\"medium\" dash=\"top\" subheadline=\"Enjoy the thrill on the sky with our parasailing team and feel the California sun on your face. The team will help you get your adrenaline high and will be capuring your moments on a high-definition camera.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_ea2f\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"s7_e67b\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9f3\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSemiSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"2/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Rooms & Suites\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"If you chose to stay with us you will enjoy modern home comforts in a traditional setting. Whether you are looking for a short weekend break or a longer holiday, we offer a range of packages that will cater for all.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/3\"][/bt_column][/bt_row][bt_row][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"44\" caption_text=\"View\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption=\"Double room\" show_titles=\"no\" caption_title=\"Room details\"][bt_header superheadline=\"Room features\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"cs_ea18\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9c2\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea2c\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1c\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"DELUXE\" headline=\"Double Room\" headline_size=\"medium\" dash=\"top\" subheadline=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer mollis viverra diam ac ornare. Donec rhoncus nisi in felis congue, at pulvinar nibh dapibus.\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/2\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"room-details\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"1/2\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"43\" caption_text=\"\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"Room features\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"cs_ea18\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9c5\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1a\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1c\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"EXECUTIVE\" headline=\"Junior Suite\" headline_size=\"medium\" dash=\"top\" subheadline=\"Sed sodales tortor non metus iaculis, non commodo ipsum mattis. Ut at dolor elit. Proin dignissim, lacus eget ullamcorper consectetur, mauris mi mattis elit sagittis.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/2\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"room-details\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"1/2\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"42\" caption_text=\"\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"Room features\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"cs_ea30\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea18\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea2d\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1c\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"DELUXE\" headline=\"Double Room\" headline_size=\"medium\" dash=\"top\" subheadline=\"Mauris suscipit lectus pellentesque ante efficitur, at dignissim tellus maximus. Sed leo magna, faucibus non ante non, pulvinar scelerisque magna sit elis.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/2\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"room-details\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"1/2\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"41\" caption_text=\"\" size=\"medium\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"Room features\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"cs_ea18\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1b\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea21\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1c\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"DELUXE\" headline=\"Family Room\" headline_size=\"medium\" dash=\"top\" subheadline=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer mollis viverra diam ac ornare. Donec rhoncus nisi in felis congue, at pulvinar nibh dapibus.\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/2\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"room-details\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"1/2\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/3\" align=\"left\" vertical_align=\"btMiddleVertical\" border=\"no_border\" cell_padding=\"btDoublePadding\" animation=\"animate animate-fadein\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"#e5e5e5\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"IN A NUTSHELL\" headline=\"Hotel California\" headline_size=\"large\" dash=\"bottom\" subheadline=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer mollis viverra diam ac ornare. Donec rhoncus nisi in felis congue, at pulvinar nibh dapibus.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_button text=\"READ MORE\" icon=\"no_icon\" url=\"\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"ExtraSmall\" width=\"Normal\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"2/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_slider height=\"auto\" auto_play=\"\" hide_arrows=\"\" hide_paging=\"btSliderHidePaging\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"81\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"82\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"83\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"84\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"85\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][/bt_slider][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\"][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"2/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_gmaps latitude=\"36.602383\" longitude=\"-121.879245 \" zoom=\"11\" icon=\"342\" height=\"400px\" primary_color=\"\" secondary_color=\"\" water_color=\"\" custom_style=\"WwogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJhZG1pbmlzdHJhdGl2ZSIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImxhYmVscy50ZXh0LmZpbGwiLAogICAgICAgICJzdHlsZXJzIjogWwogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAiY29sb3IiOiAiIzQ0NDQ0NCIKICAgICAgICAgICAgfQogICAgICAgIF0KICAgIH0sCiAgICB7CiAgICAgICAgImZlYXR1cmVUeXBlIjogImxhbmRzY2FwZSIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJjb2xvciI6ICIjZjJmMmYyIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAicG9pIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiYWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInZpc2liaWxpdHkiOiAib2ZmIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAicm9hZCIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJzYXR1cmF0aW9uIjogLTEwMAogICAgICAgICAgICB9LAogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAibGlnaHRuZXNzIjogNDUKICAgICAgICAgICAgfQogICAgICAgIF0KICAgIH0sCiAgICB7CiAgICAgICAgImZlYXR1cmVUeXBlIjogInJvYWQuaGlnaHdheSIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogInNpbXBsaWZpZWQiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJyb2FkLmhpZ2h3YXkiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJnZW9tZXRyeSIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogInNpbXBsaWZpZWQiCiAgICAgICAgICAgIH0sCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJjb2xvciI6ICIjZDc3Mjg3IgogICAgICAgICAgICB9LAogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAibGlnaHRuZXNzIjogIjAiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJyb2FkLmhpZ2h3YXkiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJsYWJlbHMudGV4dCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogIm9uIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAicm9hZC5oaWdod2F5IiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAibGFiZWxzLmljb24iLAogICAgICAgICJzdHlsZXJzIjogWwogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAidmlzaWJpbGl0eSI6ICJvbiIKICAgICAgICAgICAgfQogICAgICAgIF0KICAgIH0sCiAgICB7CiAgICAgICAgImZlYXR1cmVUeXBlIjogInJvYWQuYXJ0ZXJpYWwiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJhbGwiLAogICAgICAgICJzdHlsZXJzIjogWwogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAidmlzaWJpbGl0eSI6ICJvbiIKICAgICAgICAgICAgfQogICAgICAgIF0KICAgIH0sCiAgICB7CiAgICAgICAgImZlYXR1cmVUeXBlIjogInJvYWQuYXJ0ZXJpYWwiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJnZW9tZXRyeS5maWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgImNvbG9yIjogIiNkNzcyODciCiAgICAgICAgICAgIH0sCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJsaWdodG5lc3MiOiAiNzUiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJyb2FkLmFydGVyaWFsIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAibGFiZWxzLmljb24iLAogICAgICAgICJzdHlsZXJzIjogWwogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAidmlzaWJpbGl0eSI6ICJvZmYiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJyb2FkLmxvY2FsIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiZ2VvbWV0cnkuZmlsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJsaWdodG5lc3MiOiAiNzUiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJ0cmFuc2l0IiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiYWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInZpc2liaWxpdHkiOiAib2ZmIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAidHJhbnNpdC5saW5lIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiYWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInZpc2liaWxpdHkiOiAib24iCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJ0cmFuc2l0LnN0YXRpb24uYnVzIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiYWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInZpc2liaWxpdHkiOiAib24iCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJ0cmFuc2l0LnN0YXRpb24ucmFpbCIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogIm9uIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAidHJhbnNpdC5zdGF0aW9uLnJhaWwiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJsYWJlbHMuaWNvbiIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ3ZWlnaHQiOiAiMC4wMSIKICAgICAgICAgICAgfSwKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgImh1ZSI6ICIjZmYwMDM1IgogICAgICAgICAgICB9LAogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAibGlnaHRuZXNzIjogIjAiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJ3YXRlciIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogIm9uIgogICAgICAgICAgICB9LAogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAiY29sb3IiOiAiIzgwZTRkOCIKICAgICAgICAgICAgfSwKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgImxpZ2h0bmVzcyI6ICIyNSIKICAgICAgICAgICAgfSwKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInNhdHVyYXRpb24iOiAiLTIzIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfQpd\" el_class=\"\" el_style=\"\" api_key=\"AIzaSyBda9LxQ-Wztqsk6aFI7SkcdiypnKTPfiI\"][/bt_gmaps][/bt_column][bt_column width=\"1/3\" align=\"left\" vertical_align=\"btMiddleVertical\" border=\"no_border\" cell_padding=\"btDoublePadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"#e5e5e5\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_service icon=\"s7_e638\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoMediumSize\" url=\"\" headline=\"Address\" dash=\"\" text=\"3216 W Highland Boulevard\nSan Diego, California\" el_class=\"\" el_style=\"\" superheadline=\"\"][/bt_service][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSemiSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_service icon=\"s7_e670\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoMediumSize\" url=\"\" headline=\"Phone\" dash=\"\" text=\"+555-40-220-6672\" el_class=\"\" el_style=\"\" superheadline=\"\"][/bt_service][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSemiSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_service icon=\"s7_e63a\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoMediumSize\" url=\"\" headline=\"Email\" dash=\"\" text=\"office@california.hotel\" el_class=\"\" el_style=\"\" superheadline=\"\"][/bt_service][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"yes\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"7/12\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"News <i>&</i> Blog\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Morbi pharetra faucibus purus, nec pretium enim luctus quis. Pellentesque aliquet venenatis ante, quis pretium neque tristique eget. Integer in luctus urna. Aenean rutrum sodales pharetra.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"5/12\"][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_latest_posts number=\"3\" category=\"\" format=\"horizontal\" post_type=\"blog\" show_excerpt=\"yes\" show_date=\"yes\" show_author=\"yes\" el_class=\"\" el_style=\"\"][/bt_latest_posts][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"321\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"0.3\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Follow us\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Find out what’s hot and new, and get discounts for being a loyal customer and a Hotel California fan.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_icons][bt_icon icon=\"fa_f09a\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f099\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f0d5\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_column][/bt_row][/bt_section] ','Happy faces','\n ','publish','closed','closed','','happy-faces','','','2016-05-18 07:08:05','2016-05-18 07:08:05','',921,'http://hotel.bold-themes.com/summer/?page_id=829',0,'page','',0);
INSERT INTO `smrc_posts` VALUES (833,1,'2016-05-18 09:24:44','2016-05-18 09:24:44','\n ','summer-hero-4','\n ','inherit','open','closed','','summer-hero-4','','','2016-05-18 09:24:44','2016-05-18 09:24:44','',0,'http://mpycdev.theomggroup.com/wp-content/uploads/2016/05/summer-hero-4.jpg',0,'attachment','image/jpeg',0);
INSERT INTO `smrc_posts` VALUES (834,1,'2016-05-18 09:25:11','2016-05-18 09:25:11','\n ','summer-hero-3','\n ','inherit','open','closed','','summer-hero-3','','','2016-05-18 09:25:11','2016-05-18 09:25:11','',0,'http://mpycdev.theomggroup.com/wp-content/uploads/2016/05/summer-hero-3.jpg',0,'attachment','image/jpeg',0);
INSERT INTO `smrc_posts` VALUES (837,1,'2016-05-18 09:55:16','2016-05-18 09:55:16','[bt_section layout=\"wide\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\"][bt_slider height=\"medium\" auto_play=\"5000\" hide_arrows=\"\" hide_paging=\"\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item image=\"1148\" el_class=\"\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1028\" el_class=\"\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1156\" el_class=\"\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1163\" el_class=\"\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1027\" el_class=\"\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1049\" el_class=\"btLightSkin\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1048\" el_class=\"\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1150\" el_class=\"btLightSkin\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1025\" el_class=\"\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1162\" el_class=\"\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1161\" el_class=\"\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1157\" el_class=\"\" el_style=\"\"][/bt_slider_item][/bt_slider][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"dark\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#b71234\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\"][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\r\n<h4 style=\"text-align: center;\"><em>founded 1953 in historic Monterey, California</em></h4>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSemiSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"2/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"About Us\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"A non-profit organization, MPYC is a yachting and social club comprised of adult and junior members with an interest in coming together to share in boating, sailing, yacht racing and social activities. Membership is not limited to boat owners.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/3\"][/bt_column][/bt_row][bt_row][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1068\" caption_text=\"View\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption=\"Double room\" show_titles=\"no\" caption_title=\"Room details\"][bt_header superheadline=\"CORINTHIAN SPIRIT\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Racing\" headline_size=\"medium\" dash=\"top\" subheadline=\"MPYC has built a reputation for top-notch competitive sailing. We host over 100 races per year and have hosted a variety of national championships.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1071\" caption_text=\"\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"PASSION\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Cruising\" headline_size=\"medium\" dash=\"top\" subheadline=\"Our members feature both power and sailboat owners. It\'s our great honor to live along California\'s Monterey Bay and enjoy the scenic vistas and marine wildlife.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1074\" caption_text=\"\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"DRIVE\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Rowing\" headline_size=\"medium\" dash=\"top\" subheadline=\"Our beginning, recreational and advanced rowers enjoy short and long distance local routes in addition to competition in local, West Coast and U.S. regattas. \" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1070\" caption_text=\"\" size=\"medium\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"COMMITMENT\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Youth Sailing\" headline_size=\"medium\" dash=\"top\" subheadline=\"Since its inception, Monterey Peninsula Yacht Club\'s has been proud to invest in the future of sailing and our youth to foster a better future for all us, and our club.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#e5e5e5\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"323\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"width: 60px; margin-top: -28px;\"][/bt_image][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"5/12\"][/bt_column][bt_column width=\"7/12\" align=\"right\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Activities\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Whether on the water or onshore, there are activities for all ages at MPYC. From competitive sailing, ocean rowing, cruising or paddle boarding on the water, to an array of events on land or in the clubhouse, we celebrate the Monterey Bay and work to preserve it year-round.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][/bt_column][/bt_row][/bt_section][bt_section layout=\"wide\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"dark\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#e5e5e5\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1116\" caption_title=\"On the Water\" caption_text=\"Fun\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Fun\" headline=\"On the Water\" headline_size=\"medium\" dash=\"top\" subheadline=\"Whether you\'re guest crew or a club member, from sailing, boating or paddle boarding, there\'s fun to be had on the water in the harbor on on the Bay.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1115\" caption_title=\"Celebrations\" caption_text=\"Club\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Club\" headline=\"Celebrations\" headline_size=\"medium\" dash=\"top\" subheadline=\"From holiday celebrations, special events and annual gatherings, there\'s always something happening at the club.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1114\" caption_title=\"Dining\" caption_text=\"MPYC\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"MPYC\" headline=\"Dining\" headline_size=\"medium\" dash=\"top\" subheadline=\"From fine dining in the Kirkpatrick Dining Room or enjoying a burger on the Bear Flag Bar deck overlooking Monterey harbor, no one goes hungry at MPYC.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1117\" caption_title=\"Education\" caption_text=\"Safety\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Safety\" headline=\"Education\" headline_size=\"medium\" dash=\"top\" subheadline=\"Committed to safe and proper use of the Monterey Bay National Marine Sanctuary, MPYC is active in a variety of safety and ecological awareness events.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_image][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_slider height=\"auto\" auto_play=\"\" hide_arrows=\"\" hide_paging=\"btSliderHidePaging\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/6\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1088\" caption_text=\"\" size=\"\" shape=\"circle\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][/bt_image][bt_header superheadline=\"MPYC\" headline=\"Mission\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][bt_column_inner width=\"5/6\"][bt_text]\r\n<blockquote>To connect our members and our diverse community to the boundless recreational opportunities and proper stewardship of the Monterey Bay and the Pacific Ocean.</blockquote>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/6\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1088\" caption_text=\"\" size=\"\" shape=\"circle\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][/bt_image][bt_header superheadline=\"MPYC\" headline=\"Vision\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][bt_column_inner width=\"5/6\"][bt_text]\r\n<blockquote>To actively promote the Monterey Peninsula Yacht Club as a prominent West Coast destination of choice for Corinthian spirit yacht racing, recreational boating, rowing and cruising.</blockquote>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/6\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1088\" caption_text=\"\" size=\"\" shape=\"circle\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][/bt_image][bt_header superheadline=\"MPYC\" headline=\"Commitment\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][bt_column_inner width=\"5/6\"][bt_text]\r\n<blockquote>To supporting a diverse membership that fosters inclusiveness, camaraderie, friendship, community involvement and leadership with the goal of advancing safe and sustainable maritime ecological practices.</blockquote>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][/bt_slider][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/3\" align=\"left\" vertical_align=\"btMiddleVertical\" border=\"no_border\" cell_padding=\"btDoublePadding\" animation=\"animate animate-fadein\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"#e5e5e5\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"MPYC\" headline=\"Clubhouse\" headline_size=\"large\" dash=\"bottom\" subheadline=\"Our clubhouse on Wharf II at the Monterey Harbor is home to the Kilpatrick Dining Room and Bear Flag Bar. We are proud to host a variety of events including corporate gatherings, receptions and seminars.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_button text=\"READ MORE\" icon=\"no_icon\" url=\"\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"ExtraSmall\" width=\"Normal\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"2/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_slider height=\"auto\" auto_play=\"\" hide_arrows=\"\" hide_paging=\"btSliderHidePaging\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1129\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1128\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1127\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][/bt_slider][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"yes\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"7/12\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Club News\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Latest happenings and announcements at MPYC\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"5/12\"][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_latest_posts number=\"3\" category=\"\" format=\"horizontal\" post_type=\"blog\" show_excerpt=\"yes\" show_date=\"yes\" show_author=\"no\" el_class=\"\" el_style=\"\"][/bt_latest_posts][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"1092\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"0.3\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Follow us\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Find out what\'s new at MPYC\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_icons][bt_icon icon=\"fa_f09a\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f099\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f16d\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_column][/bt_row][/bt_section]','MPYC Home','','publish','closed','closed','','street-view','','','2021-04-08 11:46:35','2021-04-08 11:46:35','',921,'http://hotel.bold-themes.com/summer/?page_id=837',0,'page','',0);
INSERT INTO `smrc_posts` VALUES (843,1,'2016-05-18 11:58:16','2016-05-18 11:58:16','\n ','summer-hero-6','\n ','inherit','open','closed','','summer-hero-6','','','2016-05-18 11:58:16','2016-05-18 11:58:16','',0,'http://mpycdev.theomggroup.com/wp-content/uploads/2016/05/summer-hero-6.jpg',0,'attachment','image/jpeg',0);
INSERT INTO `smrc_posts` VALUES (844,1,'2016-05-18 11:58:34','2016-05-18 11:58:34','\n ','summer-hero-5','\n ','inherit','open','closed','','summer-hero-5','','','2016-05-18 11:58:34','2016-05-18 11:58:34','',0,'http://mpycdev.theomggroup.com/wp-content/uploads/2016/05/summer-hero-5.jpg',0,'attachment','image/jpeg',0);
INSERT INTO `smrc_posts` VALUES (854,1,'2016-05-30 14:02:54','2016-05-30 14:02:54','\n ','summer-offers-background-2','\n ','inherit','open','closed','','summer-offers-background-2','','','2016-05-30 14:02:54','2016-05-30 14:02:54','',0,'http://mpycdev.theomggroup.com/wp-content/uploads/2016/05/summer-offers-background-2.jpg',0,'attachment','image/jpeg',0);
INSERT INTO `smrc_posts` VALUES (860,1,'2016-06-01 07:49:46','2016-06-01 07:49:46','\n [bt_section layout=\"wide\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"dark\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\"][bt_slider height=\"auto\" auto_play=\"6000\" hide_arrows=\"\" hide_paging=\"\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item image=\"882\" el_class=\"\" el_style=\"\"][bt_hr top_spaced=\"topExtraSpaced\" bottom_spaced=\"bottomSemiSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"2/3\" align=\"left\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"animate animate-fadein animate-moveleft\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"The art of meeting your\nhighest <i>expectations</i>\" headline_size=\"huge\" dash=\"bottom\" subheadline=\"Enjoying the sun and sea has never been so easy. At the beach of Hotel California, you\'ll find our most complete service and friendly staff.\" el_class=\"\" el_style=\"max-width: 660px;\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"1/3\"][/bt_column_inner][/bt_row_inner][bt_row_inner][bt_column_inner width=\"2/3\" align=\"left\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"animate animate-fadein\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"BOOK NOW\" icon=\"no_icon\" url=\"rooms\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Normal\" size=\"Small\" width=\"Normal\" el_class=\"\" el_style=\"\"][/bt_button][bt_button text=\"Check our OFFERS & DEALS\" icon=\"fa_f061\" url=\"#special-offers\" target=\"no_target\" style=\"Filled\" icon_position=\"Left\" color=\"Accent\" size=\"Small\" width=\"Normal\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topSpaced\" bottom_spaced=\"bottomSemiSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"1/3\"][/bt_column_inner][/bt_row_inner][/bt_slider_item][bt_slider_item image=\"880\" el_class=\"\" el_style=\"\"][bt_hr top_spaced=\"topExtraSpaced\" bottom_spaced=\"bottomSemiSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/3\"][/bt_column_inner][bt_column_inner width=\"2/3\" align=\"left\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"animate animate-fadein animate-moveleft\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"<i>Everything.</i>\nRight where you need it.\" headline_size=\"huge\" dash=\"bottom\" subheadline=\"Enjoying the sun and sea has never been so easy. At the beach of Hotel California, you\'ll find our most complete service and friendly staff.\" el_class=\"\" el_style=\"max-width: 660px;\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_row_inner][bt_column_inner width=\"1/3\"][/bt_column_inner][bt_column_inner width=\"2/3\" align=\"left\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"animate animate-fadein\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"Check our OFFERS & DEALS\" icon=\"fa_f061\" url=\"#special-offers\" target=\"no_target\" style=\"Outline\" icon_position=\"Left\" color=\"Normal\" size=\"Small\" width=\"Normal\" el_class=\"\" el_style=\"\"][/bt_button][bt_button text=\"BOOK NOW\" icon=\"no_icon\" url=\"rooms\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Normal\" size=\"Small\" width=\"Normal\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topSpaced\" bottom_spaced=\"bottomSemiSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][/bt_slider_item][bt_slider_item image=\"881\" el_class=\"\" el_style=\"\"][bt_hr top_spaced=\"topExtraSpaced\" bottom_spaced=\"bottomSemiSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"2/3\" align=\"left\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"animate animate-fadein animate-moveleft\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"The art of meeting your\nhighest <i>expectations</i>\" headline_size=\"huge\" dash=\"bottom\" subheadline=\"Enjoying the sun and sea has never been so easy. At the beach of Hotel California, you\'ll find our most complete service and friendly staff.\" el_class=\"\" el_style=\"max-width: 660px;\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"1/3\"][/bt_column_inner][/bt_row_inner][bt_row_inner][bt_column_inner width=\"2/3\" align=\"left\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"animate animate-fadein\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"BOOK NOW\" icon=\"no_icon\" url=\"rooms\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Normal\" size=\"Small\" width=\"Normal\" el_class=\"\" el_style=\"\"][/bt_button][bt_button text=\"Check our OFFERS & DEALS\" icon=\"fa_f061\" url=\"#special-offers\" target=\"no_target\" style=\"Outline\" icon_position=\"Left\" color=\"Normal\" size=\"Small\" width=\"Normal\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topSpaced\" bottom_spaced=\"bottomSemiSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"1/3\"][/bt_column_inner][/bt_row_inner][/bt_slider_item][bt_slider_item image=\"883\" el_class=\"\" el_style=\"\"][bt_hr top_spaced=\"topExtraSpaced\" bottom_spaced=\"bottomSemiSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"2/3\" align=\"left\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"animate animate-fadein animate-moveleft\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"<i>Everything.</i>\nRight where you need it.\" headline_size=\"huge\" dash=\"bottom\" subheadline=\"Enjoying the sun and sea has never been so easy. At the beach of Hotel California, you\'ll find our most complete service and friendly staff.\" el_class=\"\" el_style=\"max-width: 660px;\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"1/3\"][/bt_column_inner][/bt_row_inner][bt_row_inner][bt_column_inner width=\"2/3\" align=\"left\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"animate animate-fadein\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"Check our OFFERS & DEALS\" icon=\"fa_f061\" url=\"#special-offers\" target=\"no_target\" style=\"Outline\" icon_position=\"Left\" color=\"Normal\" size=\"Small\" width=\"Normal\" el_class=\"\" el_style=\"\"][/bt_button][bt_button text=\"BOOK NOW\" icon=\"no_icon\" url=\"rooms\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Normal\" size=\"Small\" width=\"Normal\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topSpaced\" bottom_spaced=\"bottomSemiSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"1/3\"][/bt_column_inner][/bt_row_inner][/bt_slider_item][/bt_slider][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSemiSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/2\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"GET THE BEST RATE\" headline=\"Offers <i>&</i> Deals\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"If you chose to stay with us you will enjoy modern home comforts in a traditional setting. Whether you are looking for a short weekend break or a longer holiday, we offer a range of packages that we think cater for all.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/2\"][/bt_column][/bt_row][bt_row][bt_column width=\"1/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"0.7\" inner_background_color=\"#ffffff\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"67\" caption_text=\"Get together\" size=\"\" shape=\"square\" url=\"special-offers\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"Family vacation\" show_titles=\"no\"][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"Get together\" headline=\"Family vacation\" headline_size=\"medium\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"fa_f207\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f13d\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f1eb\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f206\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f1ae\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\n\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Integer mollis viverra diam ac ornare. Donec rhoncus nisi in felis congue, at pulvinar nibh dapibus.\n\n[/bt_text][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/3\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"special-offers\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"2/3\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"0.7\" inner_background_color=\"#ffffff\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"68\" caption_text=\"Celebrate\" size=\"\" shape=\"square\" url=\"special-offers\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"Newlyweds weekend\" show_titles=\"no\"][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"Celebrate\" headline=\"Newlyweds weekend\" headline_size=\"medium\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"fa_f1ba\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f072\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f228\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\n\nSed ut metus eu neque commodo fringilla imperdiet sed nibh. Sed volutpat fermentum ligula, et maximus ex ultricies sit amet.\n\n[/bt_text][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/3\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"special-offers\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"2/3\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"0.7\" inner_background_color=\"#ffffff\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"725\" caption_text=\"Procrastinate\" size=\"\" shape=\"square\" url=\"special-offers\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"Lazy weekend\" show_titles=\"no\"][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"Procrastinate\" headline=\"Lazy weekend\" headline_size=\"medium\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"fa_f1ba\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f072\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f1eb\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f000\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f185\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\n\nPhasellus non bibendum augue. Duis nibh felis, volutpat vitae pulvinar at, tincidunt eget mi. Donec venenatis condimentum fermentum.\n\n[/bt_text][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/3\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"special-offers\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"2/3\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"dark\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#584528\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\"][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\n\n[contact-form-7 id=\"397\" title=\"Booking form\"]\n\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"66\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"0.7\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"special-offers\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/2\"][/bt_column][bt_column width=\"1/2\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Rooms & Suites\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"If you chose to stay with us you will enjoy modern home comforts in a traditional setting. Whether you are looking for a short weekend break or a longer holiday, we offer a range of packages that will cater for all.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"1/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"0.7\" inner_background_color=\"#ffffff\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"44\" caption_text=\"View\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption=\"Double room\" show_titles=\"no\" caption_title=\"Room details\"][bt_header superheadline=\"Room features\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"cs_ea18\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9c2\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea2c\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1c\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"DELUXE\" headline=\"Double Room\" headline_size=\"medium\" dash=\"top\" subheadline=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer mollis viverra diam ac ornare. Donec rhoncus nisi in felis congue, at pulvinar nibh dapibus.\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/2\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"room-details\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"1/2\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"0.7\" inner_background_color=\"#ffffff\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"43\" caption_text=\"\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"Room features\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"cs_ea18\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9c5\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1a\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1c\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"EXECUTIVE\" headline=\"Junior Suite\" headline_size=\"medium\" dash=\"top\" subheadline=\"Sed sodales tortor non metus iaculis, non commodo ipsum mattis. Ut at dolor elit. Proin dignissim, lacus eget ullamcorper consectetur, mauris mi mattis elit sagittis.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/2\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"room-details\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"1/2\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"0.7\" inner_background_color=\"#ffffff\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"42\" caption_text=\"\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"Room features\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"cs_ea30\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea18\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea2d\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1c\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"DELUXE\" headline=\"Double Room\" headline_size=\"medium\" dash=\"top\" subheadline=\"Mauris suscipit lectus pellentesque ante efficitur, at dignissim tellus maximus. Sed leo magna, faucibus non ante non, pulvinar scelerisque magna sit elis.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/2\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"room-details\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"1/2\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#e5e5e5\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"322\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"width: 60px; margin-top: -28px;\"][/bt_image][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"7/12\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Activities\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Phasellus blandit a massa vitae congue. Nam ex massa, mattis ut sapien sit amet, consequat sodales risus. Sed interdum, ligula et lobortis faucibus, sem sem placerat augue, eget scelerisque turpis lorem et tellus.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][/bt_column][bt_column width=\"5/12\"][/bt_column][/bt_row][/bt_section][bt_section layout=\"wide\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"dark\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#e5e5e5\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"73\" caption_title=\"Beach voleyball\" caption_text=\"Enjoy the game\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"ENJOY THE GAME\" headline=\"Beach Voleyball\" headline_size=\"medium\" dash=\"top\" subheadline=\"Beach volleyball is ouy visitors favourite sport, highly enjoyable for everyone young or old. Just gather your team on the beach and find the opponents in a matter of minutes. And show what you can do, be a winner!\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_e9ac\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e040\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e041\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"74\" el_class=\"\" el_style=\"\"][bt_image image=\"74\" caption_title=\"Horseback riding\" caption_text=\"Enjoy the beach\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Enjoy the beach\" headline=\"Horseback riding\" headline_size=\"medium\" dash=\"top\" subheadline=\"How about a lazy afternoon with your friends on a hors, while the sun goes down? If you want to chill out, our horse riding team will teach you in a matter of minutes and help you wind down after a good day on the sun.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_ea13\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1e\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e05b\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"75\" el_class=\"\" el_style=\"\"][bt_image image=\"75\" caption_title=\"Waterskiing\" caption_text=\"Enjoy the sea\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Enjoy the sea\" headline=\"Waterskiing\" headline_size=\"medium\" dash=\"top\" subheadline=\"If you are a big fan of water sports, then why not try the waterskiing or waterboarding? At hotel California you will find there\'s an amateur champoionship every year. Rated as the most fun activity by our visitors.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_e05b\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9a3\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9e5\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"76\" el_class=\"\" el_style=\"\"][bt_image image=\"76\" caption_title=\"Paragliding\" caption_text=\"Enjoy the sky\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Enjoy the sky\" headline=\"Parasailing\" headline_size=\"medium\" dash=\"top\" subheadline=\"Enjoy the thrill on the sky with our parasailing team and feel the California sun on your face. The team will help you get your adrenaline high and will be capuring your moments on a high-definition camera.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_ea2f\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"s7_e67b\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9f3\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_slider height=\"auto\" auto_play=\"\" hide_arrows=\"\" hide_paging=\"btSliderHidePaging\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/6\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"78\" caption_text=\"\" size=\"\" shape=\"circle\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][bt_header superheadline=\"June 2016\" headline=\"Alan Jones\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][/bt_column_inner][bt_column_inner width=\"5/6\"][bt_text]\n<blockquote>If you chose to stay with us you will enjoy modern home comforts in a traditional setting. Whether you are looking for a short weekend break or a longer holiday, we offer a range of packages that we think cater for all.</blockquote>\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/6\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"447\" caption_text=\"\" size=\"\" shape=\"circle\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][/bt_image][bt_header superheadline=\"July 2016\" headline=\"Adrianne White\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][bt_column_inner width=\"5/6\"][bt_text]\n<blockquote>If you chose to stay with us you will enjoy modern home comforts in a traditional setting. Whether you are looking for a short weekend break or a longer holiday, we offer a range of packages that we think cater for all.</blockquote>\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/6\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"446\" caption_text=\"\" size=\"\" shape=\"circle\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][/bt_image][bt_header superheadline=\"August 2016\" headline=\"Jenna & Mike\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][bt_column_inner width=\"5/6\"][bt_text]\n<blockquote>If you chose to stay with us you will enjoy modern home comforts in a traditional setting. Whether you are looking for a short weekend break or a longer holiday, we offer a range of packages that we think cater for all.</blockquote>\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][/bt_slider][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/3\" align=\"left\" vertical_align=\"btMiddleVertical\" border=\"no_border\" cell_padding=\"btDoublePadding\" animation=\"animate animate-fadein\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"#e5e5e5\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"IN A NUTSHELL\" headline=\"Hotel California\" headline_size=\"large\" dash=\"bottom\" subheadline=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer mollis viverra diam ac ornare. Donec rhoncus nisi in felis congue, at pulvinar nibh dapibus.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_button text=\"READ MORE\" icon=\"no_icon\" url=\"\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"ExtraSmall\" width=\"Normal\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"2/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_slider height=\"auto\" auto_play=\"\" hide_arrows=\"\" hide_paging=\"btSliderHidePaging\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"81\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"82\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"83\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"84\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"85\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][/bt_slider][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\"][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"2/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_gmaps latitude=\"36.602383\" longitude=\"-121.879245 \" zoom=\"11\" icon=\"342\" height=\"400px\" primary_color=\"\" secondary_color=\"\" water_color=\"\" custom_style=\"WwogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJhZG1pbmlzdHJhdGl2ZSIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImxhYmVscy50ZXh0LmZpbGwiLAogICAgICAgICJzdHlsZXJzIjogWwogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAiY29sb3IiOiAiIzQ0NDQ0NCIKICAgICAgICAgICAgfQogICAgICAgIF0KICAgIH0sCiAgICB7CiAgICAgICAgImZlYXR1cmVUeXBlIjogImxhbmRzY2FwZSIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJjb2xvciI6ICIjZjJmMmYyIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAicG9pIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiYWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInZpc2liaWxpdHkiOiAib2ZmIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAicm9hZCIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJzYXR1cmF0aW9uIjogLTEwMAogICAgICAgICAgICB9LAogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAibGlnaHRuZXNzIjogNDUKICAgICAgICAgICAgfQogICAgICAgIF0KICAgIH0sCiAgICB7CiAgICAgICAgImZlYXR1cmVUeXBlIjogInJvYWQuaGlnaHdheSIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogInNpbXBsaWZpZWQiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJyb2FkLmhpZ2h3YXkiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJnZW9tZXRyeSIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogInNpbXBsaWZpZWQiCiAgICAgICAgICAgIH0sCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJjb2xvciI6ICIjZDc3Mjg3IgogICAgICAgICAgICB9LAogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAibGlnaHRuZXNzIjogIjAiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJyb2FkLmhpZ2h3YXkiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJsYWJlbHMudGV4dCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogIm9uIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAicm9hZC5oaWdod2F5IiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAibGFiZWxzLmljb24iLAogICAgICAgICJzdHlsZXJzIjogWwogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAidmlzaWJpbGl0eSI6ICJvbiIKICAgICAgICAgICAgfQogICAgICAgIF0KICAgIH0sCiAgICB7CiAgICAgICAgImZlYXR1cmVUeXBlIjogInJvYWQuYXJ0ZXJpYWwiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJhbGwiLAogICAgICAgICJzdHlsZXJzIjogWwogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAidmlzaWJpbGl0eSI6ICJvbiIKICAgICAgICAgICAgfQogICAgICAgIF0KICAgIH0sCiAgICB7CiAgICAgICAgImZlYXR1cmVUeXBlIjogInJvYWQuYXJ0ZXJpYWwiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJnZW9tZXRyeS5maWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgImNvbG9yIjogIiNkNzcyODciCiAgICAgICAgICAgIH0sCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJsaWdodG5lc3MiOiAiNzUiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJyb2FkLmFydGVyaWFsIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAibGFiZWxzLmljb24iLAogICAgICAgICJzdHlsZXJzIjogWwogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAidmlzaWJpbGl0eSI6ICJvZmYiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJyb2FkLmxvY2FsIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiZ2VvbWV0cnkuZmlsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJsaWdodG5lc3MiOiAiNzUiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJ0cmFuc2l0IiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiYWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInZpc2liaWxpdHkiOiAib2ZmIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAidHJhbnNpdC5saW5lIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiYWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInZpc2liaWxpdHkiOiAib24iCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJ0cmFuc2l0LnN0YXRpb24uYnVzIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiYWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInZpc2liaWxpdHkiOiAib24iCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJ0cmFuc2l0LnN0YXRpb24ucmFpbCIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogIm9uIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAidHJhbnNpdC5zdGF0aW9uLnJhaWwiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJsYWJlbHMuaWNvbiIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ3ZWlnaHQiOiAiMC4wMSIKICAgICAgICAgICAgfSwKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgImh1ZSI6ICIjZmYwMDM1IgogICAgICAgICAgICB9LAogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAibGlnaHRuZXNzIjogIjAiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJ3YXRlciIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogIm9uIgogICAgICAgICAgICB9LAogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAiY29sb3IiOiAiIzgwZTRkOCIKICAgICAgICAgICAgfSwKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgImxpZ2h0bmVzcyI6ICIyNSIKICAgICAgICAgICAgfSwKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInNhdHVyYXRpb24iOiAiLTIzIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfQpd\" el_class=\"\" el_style=\"\" api_key=\"AIzaSyBda9LxQ-Wztqsk6aFI7SkcdiypnKTPfiI\"][/bt_gmaps][/bt_column][bt_column width=\"1/3\" align=\"left\" vertical_align=\"btMiddleVertical\" border=\"no_border\" cell_padding=\"btDoublePadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"#e5e5e5\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_service icon=\"s7_e638\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoMediumSize\" url=\"\" headline=\"Address\" dash=\"\" text=\"3216 W Highland Boulevard\nSan Diego, California\" el_class=\"\" el_style=\"\" superheadline=\"\"][/bt_service][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSemiSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_service icon=\"s7_e670\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoMediumSize\" url=\"\" headline=\"Phone\" dash=\"\" text=\"+555-40-220-6672\" el_class=\"\" el_style=\"\" superheadline=\"\"][/bt_service][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSemiSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_service icon=\"s7_e63a\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoMediumSize\" url=\"\" headline=\"Email\" dash=\"\" text=\"office@california.hotel\" el_class=\"\" el_style=\"\" superheadline=\"\"][/bt_service][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"yes\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"7/12\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"News <i>&</i> Blog\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Morbi pharetra faucibus purus, nec pretium enim luctus quis. Pellentesque aliquet venenatis ante, quis pretium neque tristique eget. Integer in luctus urna. Aenean rutrum sodales pharetra.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"5/12\"][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_latest_posts number=\"3\" category=\"\" format=\"horizontal\" post_type=\"blog\" show_excerpt=\"yes\" show_date=\"yes\" show_author=\"yes\" el_class=\"\" el_style=\"\"][/bt_latest_posts][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"321\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"0.3\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Follow us\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Find out what’s hot and new, and get discounts for being a loyal customer and a Hotel California fan.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_icons][bt_icon icon=\"fa_f09a\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f099\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f0d5\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_column][/bt_row][/bt_section] ','Evening city','\n ','publish','closed','closed','','evening-city','','','2016-06-01 07:49:46','2016-06-01 07:49:46','',921,'http://hotel.bold-themes.com/summer/?page_id=860',0,'page','',0);
INSERT INTO `smrc_posts` VALUES (865,1,'2016-06-01 08:08:49','2016-06-01 08:08:49','\n ','summer-logo-light-flat','\n ','inherit','open','closed','','summer-logo-light-flat','','','2016-06-01 08:08:49','2016-06-01 08:08:49','',0,'http://mpycdev.theomggroup.com/wp-content/uploads/2016/06/summer-logo-light-flat.png',0,'attachment','image/png',0);
INSERT INTO `smrc_posts` VALUES (878,1,'2016-06-01 10:22:17','2016-06-01 10:22:17','\n ','Simple social sidebar','\n ','publish','closed','closed','','simple-social-sidebar','','','2016-06-01 10:22:17','2016-06-01 10:22:17','',0,'http://hotel.bold-themes.com/summer/?post_type=sidebar&p=878',0,'sidebar','',0);
INSERT INTO `smrc_posts` VALUES (880,1,'2016-06-01 12:18:54','2016-06-01 12:18:54','\n ','summer-hero-boat','\n ','inherit','open','closed','','summer-hero-boat','','','2016-06-01 12:18:54','2016-06-01 12:18:54','',0,'http://mpycdev.theomggroup.com/wp-content/uploads/2016/06/summer-hero-boat.jpg',0,'attachment','image/jpeg',0);
INSERT INTO `smrc_posts` VALUES (881,1,'2016-06-01 12:19:08','2016-06-01 12:19:08','\n ','summer-hero-fire','\n ','inherit','open','closed','','summer-hero-fire','','','2016-06-01 12:19:08','2016-06-01 12:19:08','',0,'http://mpycdev.theomggroup.com/wp-content/uploads/2016/06/summer-hero-fire.jpg',0,'attachment','image/jpeg',0);
INSERT INTO `smrc_posts` VALUES (882,1,'2016-06-01 12:19:19','2016-06-01 12:19:19','\n ','summer-hero-greece','\n ','inherit','open','closed','','summer-hero-greece','','','2016-06-01 12:19:19','2016-06-01 12:19:19','',0,'http://mpycdev.theomggroup.com/wp-content/uploads/2016/06/summer-hero-greece.jpg',0,'attachment','image/jpeg',0);
INSERT INTO `smrc_posts` VALUES (883,1,'2016-06-01 12:19:40','2016-06-01 12:19:40','\n ','summer-hero-room','\n ','inherit','open','closed','','summer-hero-room','','','2016-06-01 12:19:40','2016-06-01 12:19:40','',0,'http://mpycdev.theomggroup.com/wp-content/uploads/2016/06/summer-hero-room.jpg',0,'attachment','image/jpeg',0);
INSERT INTO `smrc_posts` VALUES (899,1,'2016-09-21 08:43:22','2016-09-21 08:43:22','\n [bt_section layout=\"wide\" top_spaced=\"topExtraSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"dark\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"904\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"0.7\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/4\"][/bt_column][bt_column width=\"2/4\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein animate-moveleft\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_hr top_spaced=\"topSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"<i>Everything.</i>\nRight where you need it.\" headline_size=\"huge\" dash=\"bottom\" subheadline=\"Enjoying the sun and sea has never been so easy. At the beach of Hotel California, you\'ll find our most complete service and friendly staff.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\"][/bt_column][/bt_row][bt_row][bt_column width=\"1/4\"][/bt_column][bt_column width=\"2/4\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"BOOK NOW\" icon=\"no_icon\" url=\"rooms\" target=\"no_target\" style=\"Outline\" icon_position=\"Right\" color=\"Normal\" size=\"Small\" width=\"Normal\" el_class=\"\" el_style=\"\"][/bt_button][/bt_column][bt_column width=\"1/4\"][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"dark\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#0c5644\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\"][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\n\n[contact-form-7 id=\"397\" title=\"Booking form\"]\n\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSemiSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][/bt_column][bt_column width=\"2/4\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Everyday ease\" headline=\"Room amenities\" headline_size=\"large\" dash=\"top\" subheadline=\"Hotel California offers a large number of Room amenities that will ease up your stay when you\'re on your vacation. \" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\"][/bt_column][/bt_row][bt_row][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"0.7\" inner_background_color=\"#ffffff\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_icons][bt_icon icon=\"cs_ea2c\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoLargeSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Coffeemaker\" headline_size=\"small\" dash=\"bottom\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\" subheadline=\"Start your morning with the highest quality coffee made in-room with Lavazza coffeemaker.\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\"][bt_icons][bt_icon icon=\"cs_ea18\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoLargeSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Widescreen LCD TV\" headline_size=\"small\" dash=\"bottom\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\" subheadline=\"Enjoy your favourite TV shows or sports when you\'re at your room resting on a 40`` TV screen.\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\"][bt_icons][bt_icon icon=\"cs_ea19\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoLargeSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Wine bottle\" headline_size=\"small\" dash=\"bottom\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\" subheadline=\"Have a complementary bottle of wine free, when you stay for more than 5 nights at California.\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\"][bt_icons][bt_icon icon=\"cs_ea1a\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoLargeSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Everyday towel changes\" headline_size=\"small\" dash=\"bottom\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\" subheadline=\"Or room staff will change the towels everyday if you prefer to. Just leave them in the bath.\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"66\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"0.7\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"special-offers\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/2\"][/bt_column][bt_column width=\"1/2\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Rooms & Suites\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"If you chose to stay with us you will enjoy modern home comforts in a traditional setting. Whether you are looking for a short weekend break or a longer holiday, we offer a range of packages that will cater for all.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"1/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"0.7\" inner_background_color=\"#ffffff\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"44\" caption_text=\"View\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption=\"Double room\" show_titles=\"no\" caption_title=\"Room details\"][bt_header superheadline=\"Room features\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"cs_ea18\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9c2\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea2c\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1c\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"DELUXE\" headline=\"Double Room\" headline_size=\"medium\" dash=\"top\" subheadline=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer mollis viverra diam ac ornare. Donec rhoncus nisi in felis congue, at pulvinar\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/2\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"room-details\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"1/2\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"0.7\" inner_background_color=\"#ffffff\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"43\" caption_text=\"\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"Room features\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"cs_ea18\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9c5\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1a\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1c\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"EXECUTIVE\" headline=\"Junior Suite\" headline_size=\"medium\" dash=\"top\" subheadline=\"Sed sodales tortor non metus iaculis, non commodo ipsum mattis. Ut at dolor elit. Proin dignissim, lacus eget ullamcorper consectetur, mauris mi.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/2\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"room-details\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"1/2\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"0.7\" inner_background_color=\"#ffffff\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"42\" caption_text=\"\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"Room features\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"cs_ea30\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea18\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea2d\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1c\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"DELUXE\" headline=\"Double Room\" headline_size=\"medium\" dash=\"top\" subheadline=\"Mauris suscipit lectus pellentesque ante efficitur, at dignissim tellus maximus. Sed leo magna, faucibus non ante non, pulvinar scelerisque mag.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/2\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"room-details\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"1/2\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#e5e5e5\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"967\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"width: 60px; margin-top: -28px;\"][/bt_image][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"7/12\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Activities\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Phasellus blandit a massa vitae congue. Nam ex massa, mattis ut sapien sit amet, consequat sodales risus. Sed interdum, ligula et lobortis faucibus, sem sem placerat augue, eget scelerisque turpis lorem et tellus.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][/bt_column][bt_column width=\"5/12\"][/bt_column][/bt_row][/bt_section][bt_section layout=\"wide\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"dark\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#e5e5e5\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"73\" caption_title=\"Beach voleyball\" caption_text=\"Enjoy the game\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"ENJOY THE GAME\" headline=\"Beach Voleyball\" headline_size=\"medium\" dash=\"top\" subheadline=\"Beach volleyball is ouy visitors favourite sport, highly enjoyable for everyone young or old. Just gather your team on the beach and find the opponents in a matter of minutes. And show what you can do, be a winner!\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_e9ac\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e040\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e041\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"74\" el_class=\"\" el_style=\"\"][bt_image image=\"74\" caption_title=\"Horseback riding\" caption_text=\"Enjoy the beach\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Enjoy the beach\" headline=\"Horseback riding\" headline_size=\"medium\" dash=\"top\" subheadline=\"How about a lazy afternoon with your friends on a hors, while the sun goes down? If you want to chill out, our horse riding team will teach you in a matter of minutes and help you wind down after a good day on the sun.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_ea13\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1e\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e05b\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"75\" el_class=\"\" el_style=\"\"][bt_image image=\"75\" caption_title=\"Waterskiing\" caption_text=\"Enjoy the sea\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Enjoy the sea\" headline=\"Waterskiing\" headline_size=\"medium\" dash=\"top\" subheadline=\"If you are a big fan of water sports, then why not try the waterskiing or waterboarding? At hotel California you will find there\'s an amateur champoionship every year. Rated as the most fun activity by our visitors.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_e05b\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9a3\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9e5\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"76\" el_class=\"\" el_style=\"\"][bt_image image=\"76\" caption_title=\"Paragliding\" caption_text=\"Enjoy the sky\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Enjoy the sky\" headline=\"Parasailing\" headline_size=\"medium\" dash=\"top\" subheadline=\"Enjoy the thrill on the sky with our parasailing team and feel the California sun on your face. The team will help you get your adrenaline high and will be capuring your moments on a high-definition camera.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_ea2f\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"s7_e67b\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9f3\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_slider height=\"auto\" auto_play=\"\" hide_arrows=\"\" hide_paging=\"btSliderHidePaging\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/6\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"78\" caption_text=\"\" size=\"\" shape=\"circle\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][bt_header superheadline=\"June 2016\" headline=\"Alan Jones\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][/bt_column_inner][bt_column_inner width=\"5/6\"][bt_text]\n<blockquote>If you chose to stay with us you will enjoy modern home comforts in a traditional setting. Whether you are looking for a short weekend break or a longer holiday, we offer a range of packages that we think cater for all.</blockquote>\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/6\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"447\" caption_text=\"\" size=\"\" shape=\"circle\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][/bt_image][bt_header superheadline=\"July 2016\" headline=\"Adrianne White\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][bt_column_inner width=\"5/6\"][bt_text]\n<blockquote>If you chose to stay with us you will enjoy modern home comforts in a traditional setting. Whether you are looking for a short weekend break or a longer holiday, we offer a range of packages that we think cater for all.</blockquote>\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/6\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"446\" caption_text=\"\" size=\"\" shape=\"circle\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][/bt_image][bt_header superheadline=\"August 2016\" headline=\"Jenna & Mike\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][bt_column_inner width=\"5/6\"][bt_text]\n<blockquote>If you chose to stay with us you will enjoy modern home comforts in a traditional setting. Whether you are looking for a short weekend break or a longer holiday, we offer a range of packages that we think cater for all.</blockquote>\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][/bt_slider][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/3\" align=\"left\" vertical_align=\"btMiddleVertical\" border=\"no_border\" cell_padding=\"btDoublePadding\" animation=\"animate animate-fadein\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"#e5e5e5\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"IN A NUTSHELL\" headline=\"Hotel California\" headline_size=\"large\" dash=\"bottom\" subheadline=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer mollis viverra diam ac ornare. Donec rhoncus nisi in felis congue, at pulvinar nibh dapibus.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_button text=\"READ MORE\" icon=\"no_icon\" url=\"\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"ExtraSmall\" width=\"Normal\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"2/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_slider height=\"auto\" auto_play=\"\" hide_arrows=\"\" hide_paging=\"btSliderHidePaging\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"81\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"82\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"83\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"84\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"85\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][/bt_slider][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\"][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"2/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_gmaps latitude=\"36.602383\" longitude=\"-121.879245 \" zoom=\"11\" icon=\"965\" height=\"400px\" primary_color=\"\" secondary_color=\"\" water_color=\"\" custom_style=\"WwogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJhZG1pbmlzdHJhdGl2ZSIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImxhYmVscy50ZXh0LmZpbGwiLAogICAgICAgICJzdHlsZXJzIjogWwogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAiY29sb3IiOiAiIzQ0NDQ0NCIKICAgICAgICAgICAgfQogICAgICAgIF0KICAgIH0sCiAgICB7CiAgICAgICAgImZlYXR1cmVUeXBlIjogImxhbmRzY2FwZSIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJjb2xvciI6ICIjZjJmMmYyIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAicG9pIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiYWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInZpc2liaWxpdHkiOiAib2ZmIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAicm9hZCIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJzYXR1cmF0aW9uIjogLTEwMAogICAgICAgICAgICB9LAogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAibGlnaHRuZXNzIjogNDUKICAgICAgICAgICAgfQogICAgICAgIF0KICAgIH0sCiAgICB7CiAgICAgICAgImZlYXR1cmVUeXBlIjogInJvYWQuaGlnaHdheSIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogInNpbXBsaWZpZWQiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJyb2FkLmhpZ2h3YXkiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJnZW9tZXRyeSIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogInNpbXBsaWZpZWQiCiAgICAgICAgICAgIH0sCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJjb2xvciI6ICIjZDZiNmE3IgogICAgICAgICAgICB9LAogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAibGlnaHRuZXNzIjogIjAiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJyb2FkLmhpZ2h3YXkiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJsYWJlbHMudGV4dCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogIm9uIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAicm9hZC5oaWdod2F5IiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAibGFiZWxzLmljb24iLAogICAgICAgICJzdHlsZXJzIjogWwogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAidmlzaWJpbGl0eSI6ICJvbiIKICAgICAgICAgICAgfQogICAgICAgIF0KICAgIH0sCiAgICB7CiAgICAgICAgImZlYXR1cmVUeXBlIjogInJvYWQuYXJ0ZXJpYWwiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJhbGwiLAogICAgICAgICJzdHlsZXJzIjogWwogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAidmlzaWJpbGl0eSI6ICJvbiIKICAgICAgICAgICAgfQogICAgICAgIF0KICAgIH0sCiAgICB7CiAgICAgICAgImZlYXR1cmVUeXBlIjogInJvYWQuYXJ0ZXJpYWwiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJnZW9tZXRyeS5maWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgImNvbG9yIjogIiNkNmI2YTciCiAgICAgICAgICAgIH0sCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJsaWdodG5lc3MiOiAiNzUiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJyb2FkLmFydGVyaWFsIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAibGFiZWxzLmljb24iLAogICAgICAgICJzdHlsZXJzIjogWwogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAidmlzaWJpbGl0eSI6ICJvZmYiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJyb2FkLmxvY2FsIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiZ2VvbWV0cnkuZmlsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJsaWdodG5lc3MiOiAiNzUiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJ0cmFuc2l0IiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiYWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInZpc2liaWxpdHkiOiAib2ZmIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAidHJhbnNpdC5saW5lIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiYWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInZpc2liaWxpdHkiOiAib24iCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJ0cmFuc2l0LnN0YXRpb24uYnVzIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiYWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInZpc2liaWxpdHkiOiAib24iCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJ0cmFuc2l0LnN0YXRpb24ucmFpbCIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogIm9uIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAidHJhbnNpdC5zdGF0aW9uLnJhaWwiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJsYWJlbHMuaWNvbiIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ3ZWlnaHQiOiAiMC4wMSIKICAgICAgICAgICAgfSwKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgImh1ZSI6ICIjYWY4MTZjIgogICAgICAgICAgICB9LAogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAibGlnaHRuZXNzIjogIjAiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJ3YXRlciIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogIm9uIgogICAgICAgICAgICB9LAogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAiY29sb3IiOiAiIzIyZDZhYSIKICAgICAgICAgICAgfSwKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgImxpZ2h0bmVzcyI6ICIyNSIKICAgICAgICAgICAgfSwKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInNhdHVyYXRpb24iOiAiLTIzIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfQpd\" el_class=\"\" el_style=\"\" api_key=\"AIzaSyBda9LxQ-Wztqsk6aFI7SkcdiypnKTPfiI\"][/bt_gmaps][/bt_column][bt_column width=\"1/3\" align=\"left\" vertical_align=\"btMiddleVertical\" border=\"no_border\" cell_padding=\"btDoublePadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"#e5e5e5\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_service icon=\"s7_e638\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoMediumSize\" url=\"\" headline=\"Address\" dash=\"\" text=\"3216 W Highland Boulevard\nSan Diego, California\" el_class=\"\" el_style=\"\" superheadline=\"\"][/bt_service][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSemiSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_service icon=\"s7_e670\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoMediumSize\" url=\"\" headline=\"Phone\" dash=\"\" text=\"+555-40-220-6672\" el_class=\"\" el_style=\"\" superheadline=\"\"][/bt_service][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSemiSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_service icon=\"s7_e63a\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoMediumSize\" url=\"\" headline=\"Email\" dash=\"\" text=\"office@california.hotel\" el_class=\"\" el_style=\"\" superheadline=\"\"][/bt_service][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"yes\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"7/12\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"News <i>&</i> Blog\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Morbi pharetra faucibus purus, nec pretium enim luctus quis. Pellentesque aliquet venenatis ante, quis pretium neque tristique eget. Integer in luctus urna. Aenean rutrum sodales pharetra.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"5/12\"][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_latest_posts number=\"3\" category=\"\" format=\"horizontal\" post_type=\"blog\" show_excerpt=\"yes\" show_date=\"yes\" show_author=\"yes\" el_class=\"\" el_style=\"\"][/bt_latest_posts][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"321\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"0.3\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Follow us\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Find out what’s hot and new, and get discounts for being a loyal customer and a Hotel California fan.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_icons][bt_icon icon=\"fa_f09a\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f099\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f0d5\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_column][/bt_row][/bt_section] ','Boat and sea','\n ','publish','closed','closed','','boat-and-sea','','','2016-09-21 08:43:22','2016-09-21 08:43:22','',921,'http://hotel.bold-themes.com/summer/?page_id=899',0,'page','',0);
INSERT INTO `smrc_posts` VALUES (904,1,'2016-09-21 09:11:37','2016-09-21 09:11:37',' ','summer-hero-boat-large',' ','inherit','open','closed','','summer-hero-boat-large','','','2021-04-06 23:28:54','2021-04-06 23:28:54','',0,'http://mpycdev.theomggroup.com/wp-content/uploads/2016/09/summer-hero-boat-large.jpg',0,'attachment','image/jpeg',0);
INSERT INTO `smrc_posts` VALUES (906,1,'2016-09-21 09:17:48','2016-09-21 09:17:48','\n [bt_section layout=\"wide\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"dark\" full_screen=\"yes\" vertical_align=\"btMiddleVertical\" divider=\"no\" back_image=\"907\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"0.1\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\"][bt_hr top_spaced=\"topExtraSpaced\" bottom_spaced=\"bottomSemiSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"1/4\"][/bt_column][bt_column width=\"2/4\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein animate-moveleft\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"<i>Perfection.</i>\nAnd you are invited.\" headline_size=\"huge\" dash=\"bottom\" subheadline=\"Enjoying the sun and sea has never been so easy. At the beach of Hotel California, you\'ll find our most complete service and friendly staff.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\"][/bt_column][/bt_row][bt_row][bt_column width=\"1/4\"][/bt_column][bt_column width=\"2/4\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"MORE DETAILS\" icon=\"no_icon\" url=\"rooms\" target=\"no_target\" style=\"Outline\" icon_position=\"Right\" color=\"Normal\" size=\"Small\" width=\"Normal\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topSpaced\" bottom_spaced=\"bottomSemiSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\"][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"dark\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#002040\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\"][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\n\n[contact-form-7 id=\"397\" title=\"Booking form\"]\n\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSemiSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][/bt_column][bt_column width=\"2/4\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Everyday ease\" headline=\"Room amenities\" headline_size=\"extralarge\" dash=\"top\" subheadline=\"Hotel California offers a large number of Room amenities that will ease up your stay when you\'re on your vacation. \" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\"][/bt_column][/bt_row][bt_row][bt_column width=\"1/4\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"0.7\" inner_background_color=\"#ffffff\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_service icon=\"cs_ea53\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoLargeSize\" url=\"\" superheadline=\"\" headline=\"Free Wi-Fi\" dash=\"\" text=\"Rest and do some work if you need to, high speed wi-fi internet is free all around the hotel premises.\" el_class=\"\" el_style=\"\"][/bt_service][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_service icon=\"cs_ea2d\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoLargeSize\" url=\"\" superheadline=\"\" headline=\"Cocktails?\" dash=\"\" text=\"If you’re a fan of cocktails – our bartenders will make it for you. Just visit the lobby or pool bar.\" el_class=\"\" el_style=\"\"][/bt_service][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_service icon=\"cs_ea19\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoLargeSize\" url=\"\" superheadline=\"\" headline=\"Wine bottle\" dash=\"\" text=\"Have a complementary bottle of wine free, when you stay for more than 5 nights at California.\" el_class=\"\" el_style=\"\"][/bt_service][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_service icon=\"cs_ea31\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoLargeSize\" url=\"\" superheadline=\"\" headline=\"Premium bathtubs\" dash=\"\" text=\"Jacuzzi or a regular bath tub? It’s your choice, so whichever you prefer, let us know when booking.\" el_class=\"\" el_style=\"\"][/bt_service][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"1/4\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"0.7\" inner_background_color=\"#ffffff\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_service icon=\"cs_ea2c\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoLargeSize\" url=\"\" superheadline=\"\" headline=\"Coffeemaker\" dash=\"\" text=\"Start your morning with the highest quality coffee made in-room with Lavazza coffeemaker.\" el_class=\"\" el_style=\"\"][/bt_service][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_service icon=\"cs_ea18\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoLargeSize\" url=\"\" superheadline=\"\" headline=\"Widescreen LCD TV\" dash=\"\" text=\"Enjoy your favourite TV shows or sports when you’re at your room resting on a 40“ TV screen.\" el_class=\"\" el_style=\"\"][/bt_service][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_service icon=\"cs_ea19\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoLargeSize\" url=\"\" superheadline=\"\" headline=\"Wine bottle\" dash=\"\" text=\"Have a complementary bottle of wine free, when you stay for more than 5 nights at California.\" el_class=\"\" el_style=\"\"][/bt_service][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_service icon=\"cs_ea1a\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoLargeSize\" url=\"\" superheadline=\"\" headline=\"Loundry\" dash=\"\" text=\"Or room staff will change the towels everyday if you prefer to. Just leave them in the bath.\" el_class=\"\" el_style=\"\"][/bt_service][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSmallSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#e5e5e5\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"7/12\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Activities\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Phasellus blandit a massa vitae congue. Nam ex massa, mattis ut sapien sit amet, consequat sodales risus. Sed interdum, ligula et lobortis faucibus, sem sem placerat augue, eget scelerisque turpis lorem et tellus.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][/bt_column][bt_column width=\"5/12\"][/bt_column][/bt_row][/bt_section][bt_section layout=\"wide\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"dark\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#e5e5e5\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"73\" caption_title=\"Beach voleyball\" caption_text=\"Enjoy the game\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"ENJOY THE GAME\" headline=\"Beach Voleyball\" headline_size=\"medium\" dash=\"top\" subheadline=\"Beach volleyball is ouy visitors favourite sport, highly enjoyable for everyone young or old. Just gather your team on the beach and find the opponents in a matter of minutes. And show what you can do, be a winner!\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_e9ac\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e040\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e041\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"74\" el_class=\"\" el_style=\"\"][bt_image image=\"74\" caption_title=\"Horseback riding\" caption_text=\"Enjoy the beach\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Enjoy the beach\" headline=\"Horseback riding\" headline_size=\"medium\" dash=\"top\" subheadline=\"How about a lazy afternoon with your friends on a hors, while the sun goes down? If you want to chill out, our horse riding team will teach you in a matter of minutes and help you wind down after a good day on the sun.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_ea13\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1e\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e05b\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"75\" el_class=\"\" el_style=\"\"][bt_image image=\"75\" caption_title=\"Waterskiing\" caption_text=\"Enjoy the sea\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Enjoy the sea\" headline=\"Waterskiing\" headline_size=\"medium\" dash=\"top\" subheadline=\"If you are a big fan of water sports, then why not try the waterskiing or waterboarding? At hotel California you will find there\'s an amateur champoionship every year. Rated as the most fun activity by our visitors.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_e05b\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9a3\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9e5\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"76\" el_class=\"\" el_style=\"\"][bt_image image=\"76\" caption_title=\"Paragliding\" caption_text=\"Enjoy the sky\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Enjoy the sky\" headline=\"Parasailing\" headline_size=\"medium\" dash=\"top\" subheadline=\"Enjoy the thrill on the sky with our parasailing team and feel the California sun on your face. The team will help you get your adrenaline high and will be capuring your moments on a high-definition camera.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_ea2f\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"s7_e67b\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9f3\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"0.7\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"special-offers\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"2/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Rooms & Suites\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"If you chose to stay with us you will enjoy modern home comforts in a traditional setting. Whether you are looking for a short weekend break or a longer holiday, we offer a range of packages that will cater for all.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/3\"][/bt_column][/bt_row][bt_row][bt_column width=\"1/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"0.7\" inner_background_color=\"#ffffff\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"44\" caption_text=\"View\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption=\"Double room\" show_titles=\"no\" caption_title=\"Room details\"][bt_header superheadline=\"Room features\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"cs_ea18\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9c2\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea2c\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1c\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"DELUXE\" headline=\"Double Room\" headline_size=\"medium\" dash=\"top\" subheadline=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer mollis viverra diam ac ornare. Donec rhoncus nisi in felis congue, at pulvinar.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/2\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"room-details\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"1/2\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"0.7\" inner_background_color=\"#ffffff\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"43\" caption_text=\"\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"Room features\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"cs_ea18\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9c5\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1a\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1c\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"EXECUTIVE\" headline=\"Junior Suite\" headline_size=\"medium\" dash=\"top\" subheadline=\"Sed sodales tortor non metus iaculis, non commodo ipsum mattis. Ut at dolor elit. Proin dignissim, lacus eget ullamcorper consectetur, mauris mi.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/2\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"room-details\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"1/2\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"0.7\" inner_background_color=\"#ffffff\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"42\" caption_text=\"\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"Room features\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"cs_ea30\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea18\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea2d\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1c\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"DELUXE\" headline=\"Double Room\" headline_size=\"medium\" dash=\"top\" subheadline=\"Mauris suscipit lectus pellentesque ante efficitur, at dignissim tellus maximus. Sed leo magna, faucibus non ante non, pulvinar scelerisque magna.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/2\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"room-details\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"1/2\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_slider height=\"auto\" auto_play=\"\" hide_arrows=\"\" hide_paging=\"btSliderHidePaging\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/6\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"78\" caption_text=\"\" size=\"\" shape=\"circle\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][bt_header superheadline=\"June 2016\" headline=\"Alan Jones\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][/bt_column_inner][bt_column_inner width=\"5/6\"][bt_text]\n<blockquote>If you chose to stay with us you will enjoy modern home comforts in a traditional setting. Whether you are looking for a short weekend break or a longer holiday, we offer a range of packages that we think cater for all.</blockquote>\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/6\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"447\" caption_text=\"\" size=\"\" shape=\"circle\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][/bt_image][bt_header superheadline=\"July 2016\" headline=\"Adrianne White\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][bt_column_inner width=\"5/6\"][bt_text]\n<blockquote>If you chose to stay with us you will enjoy modern home comforts in a traditional setting. Whether you are looking for a short weekend break or a longer holiday, we offer a range of packages that we think cater for all.</blockquote>\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/6\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"446\" caption_text=\"\" size=\"\" shape=\"circle\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][/bt_image][bt_header superheadline=\"August 2016\" headline=\"Jenna & Mike\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][bt_column_inner width=\"5/6\"][bt_text]\n<blockquote>If you chose to stay with us you will enjoy modern home comforts in a traditional setting. Whether you are looking for a short weekend break or a longer holiday, we offer a range of packages that we think cater for all.</blockquote>\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][/bt_slider][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/3\" align=\"left\" vertical_align=\"btMiddleVertical\" border=\"no_border\" cell_padding=\"btDoublePadding\" animation=\"animate animate-fadein\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"#e5e5e5\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"IN A NUTSHELL\" headline=\"Hotel California\" headline_size=\"large\" dash=\"bottom\" subheadline=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer mollis viverra diam ac ornare. Donec rhoncus nisi in felis congue, at pulvinar nibh dapibus.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_button text=\"READ MORE\" icon=\"no_icon\" url=\"\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"ExtraSmall\" width=\"Normal\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"2/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_slider height=\"auto\" auto_play=\"\" hide_arrows=\"\" hide_paging=\"btSliderHidePaging\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"81\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"82\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"83\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"84\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"85\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][/bt_slider][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\"][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"2/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_gmaps latitude=\"36.602383\" longitude=\"-121.879245 \" zoom=\"11\" icon=\"952\" height=\"400px\" primary_color=\"\" secondary_color=\"\" water_color=\"\" custom_style=\"WwogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJhZG1pbmlzdHJhdGl2ZSIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImxhYmVscy50ZXh0LmZpbGwiLAogICAgICAgICJzdHlsZXJzIjogWwogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAiY29sb3IiOiAiIzQ0NDQ0NCIKICAgICAgICAgICAgfQogICAgICAgIF0KICAgIH0sCiAgICB7CiAgICAgICAgImZlYXR1cmVUeXBlIjogImxhbmRzY2FwZSIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJjb2xvciI6ICIjZjJmMmYyIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAicG9pIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiYWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInZpc2liaWxpdHkiOiAib2ZmIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAicm9hZCIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJzYXR1cmF0aW9uIjogLTEwMAogICAgICAgICAgICB9LAogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAibGlnaHRuZXNzIjogNDUKICAgICAgICAgICAgfQogICAgICAgIF0KICAgIH0sCiAgICB7CiAgICAgICAgImZlYXR1cmVUeXBlIjogInJvYWQuaGlnaHdheSIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogInNpbXBsaWZpZWQiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJyb2FkLmhpZ2h3YXkiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJnZW9tZXRyeSIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogInNpbXBsaWZpZWQiCiAgICAgICAgICAgIH0sCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJjb2xvciI6ICIjZmZhZDViIgogICAgICAgICAgICB9LAogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAibGlnaHRuZXNzIjogIjAiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJyb2FkLmhpZ2h3YXkiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJsYWJlbHMudGV4dCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogIm9uIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAicm9hZC5oaWdod2F5IiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAibGFiZWxzLmljb24iLAogICAgICAgICJzdHlsZXJzIjogWwogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAidmlzaWJpbGl0eSI6ICJvbiIKICAgICAgICAgICAgfQogICAgICAgIF0KICAgIH0sCiAgICB7CiAgICAgICAgImZlYXR1cmVUeXBlIjogInJvYWQuYXJ0ZXJpYWwiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJhbGwiLAogICAgICAgICJzdHlsZXJzIjogWwogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAidmlzaWJpbGl0eSI6ICJvbiIKICAgICAgICAgICAgfQogICAgICAgIF0KICAgIH0sCiAgICB7CiAgICAgICAgImZlYXR1cmVUeXBlIjogInJvYWQuYXJ0ZXJpYWwiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJnZW9tZXRyeS5maWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgImNvbG9yIjogIiNmZmFkNWIiCiAgICAgICAgICAgIH0sCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJsaWdodG5lc3MiOiAiNzUiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJyb2FkLmFydGVyaWFsIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAibGFiZWxzLmljb24iLAogICAgICAgICJzdHlsZXJzIjogWwogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAidmlzaWJpbGl0eSI6ICJvZmYiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJyb2FkLmxvY2FsIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiZ2VvbWV0cnkuZmlsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJsaWdodG5lc3MiOiAiNzUiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJ0cmFuc2l0IiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiYWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInZpc2liaWxpdHkiOiAib2ZmIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAidHJhbnNpdC5saW5lIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiYWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInZpc2liaWxpdHkiOiAib24iCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJ0cmFuc2l0LnN0YXRpb24uYnVzIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiYWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInZpc2liaWxpdHkiOiAib24iCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJ0cmFuc2l0LnN0YXRpb24ucmFpbCIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogIm9uIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAidHJhbnNpdC5zdGF0aW9uLnJhaWwiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJsYWJlbHMuaWNvbiIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ3ZWlnaHQiOiAiMC4wMSIKICAgICAgICAgICAgfSwKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgImh1ZSI6ICIjZmY3ZjAwIgogICAgICAgICAgICB9LAogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAibGlnaHRuZXNzIjogIjAiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJ3YXRlciIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogIm9uIgogICAgICAgICAgICB9LAogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAiY29sb3IiOiAiIzU1N2JhMSIKICAgICAgICAgICAgfSwKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgImxpZ2h0bmVzcyI6ICIyNSIKICAgICAgICAgICAgfSwKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInNhdHVyYXRpb24iOiAiLTIzIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfQpd\" el_class=\"\" el_style=\"\" api_key=\"AIzaSyBda9LxQ-Wztqsk6aFI7SkcdiypnKTPfiI\"][/bt_gmaps][/bt_column][bt_column width=\"1/3\" align=\"left\" vertical_align=\"btMiddleVertical\" border=\"no_border\" cell_padding=\"btDoublePadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"#e5e5e5\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_service icon=\"s7_e638\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoMediumSize\" url=\"\" headline=\"Address\" dash=\"\" text=\"3216 W Highland Boulevard\nSan Diego, California\" el_class=\"\" el_style=\"\" superheadline=\"\"][/bt_service][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSemiSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_service icon=\"s7_e670\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoMediumSize\" url=\"\" headline=\"Phone\" dash=\"\" text=\"+555-40-220-6672\" el_class=\"\" el_style=\"\" superheadline=\"\"][/bt_service][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSemiSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_service icon=\"s7_e63a\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoMediumSize\" url=\"\" headline=\"Email\" dash=\"\" text=\"office@california.hotel\" el_class=\"\" el_style=\"\" superheadline=\"\"][/bt_service][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"yes\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"7/12\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"News <i>&</i> Blog\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Morbi pharetra faucibus purus, nec pretium enim luctus quis. Pellentesque aliquet venenatis ante, quis pretium neque tristique eget. Integer in luctus urna. Aenean rutrum sodales pharetra.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"5/12\"][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_latest_posts number=\"3\" category=\"\" format=\"horizontal\" post_type=\"blog\" show_excerpt=\"yes\" show_date=\"yes\" show_author=\"yes\" el_class=\"\" el_style=\"\"][/bt_latest_posts][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"321\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"0.3\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Follow us\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Find out what’s hot and new, and get discounts for being a loyal customer and a Hotel California fan.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_icons][bt_icon icon=\"fa_f09a\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f099\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f0d5\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_column][/bt_row][/bt_section] ','Pool fullscreen','\n ','publish','closed','closed','','pool-fullscreen','','','2016-09-21 09:17:48','2016-09-21 09:17:48','',921,'http://hotel.bold-themes.com/summer/?page_id=906',0,'page','',0);
INSERT INTO `smrc_posts` VALUES (907,1,'2016-09-21 09:17:07','2016-09-21 09:17:07','\n ','summer-hero-pool-overlay-large','\n ','inherit','open','closed','','summer-hero-pool-overlay-large','','','2016-09-21 09:17:07','2016-09-21 09:17:07','',0,'http://mpycdev.theomggroup.com/wp-content/uploads/2016/09/summer-hero-pool-overlay-large.jpg',0,'attachment','image/jpeg',0);
INSERT INTO `smrc_posts` VALUES (921,1,'2016-09-21 10:38:37','2016-09-21 10:38:37','\n [bt_section layout=\"boxed\" top_spaced=\"topExtraSpaced\" bottom_spaced=\"bottomSemiSpaced\" skin=\"dark\" full_screen=\"no\" vertical_align=\"btMiddleVertical\" divider=\"no\" back_image=\"925\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"0.1\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\"][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"1/2\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein animate-moveleft\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\" icon=\"no_icon\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoSmallSize\"][/bt_hr][bt_header superheadline=\"WELCOME TO CALIFORNIA\" headline=\"Great <i>location</i> &\neven better <i>service</i>\" headline_size=\"huge\" dash=\"top\" subheadline=\"Enjoying the sun and sea has never been so easy. At the beach of Hotel California, you\'ll find our most complete service and friendly staff. Whether you are looking for a short weekend break or a longer holiday, we offer a range of packages.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][/bt_column][bt_column width=\"1/2\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btDoublePadding\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"btHighlight\" background_color=\"\" transparent=\"0.5\" inner_background_color=\"#000000\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSemiSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\" icon=\"no_icon\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoSmallSize\"][/bt_hr][bt_header superheadline=\"\" headline=\"Book you room now!\" headline_size=\"medium\" dash=\"bottom\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\" subheadline=\"Enjoying the sun and sea has never been so easy.\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\" icon=\"no_icon\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoSmallSize\"][/bt_hr][bt_text]\n\n[contact-form-7 id=\"557\" title=\"Booking form 2col\"]\n\n[/bt_text][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"bottomSemiSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\" icon=\"no_icon\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoSmallSize\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\"][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSemiSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_service icon=\"cs_e916\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoBigSize\" url=\"\" headline=\"Five-star quality\" dash=\"\" text=\"\" el_class=\"\" el_style=\"\" superheadline=\"FIRST\"][/bt_service][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSemiSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\" icon=\"no_icon\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoSmallSize\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_service icon=\"cs_e025\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoBigSize\" url=\"\" headline=\"Great location\" dash=\"\" text=\"\" el_class=\"\" el_style=\"\" superheadline=\"SECOND\"][/bt_service][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSemiSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\" icon=\"no_icon\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoSmallSize\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_service icon=\"cs_e02f\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoBigSize\" url=\"\" headline=\"Special offers\" dash=\"\" text=\"\" el_class=\"\" el_style=\"\" superheadline=\"THIRTH\"][/bt_service][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSemiSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\" icon=\"no_icon\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoSmallSize\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_service icon=\"cs_ea46\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoBigSize\" url=\"\" headline=\"Kids friendly\" dash=\"\" text=\"\" el_class=\"\" el_style=\"\" superheadline=\"FOURTH\"][/bt_service][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSemiSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\" icon=\"no_icon\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoSmallSize\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"dark\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#002040\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"5/6\"][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"padding-top: 8px;\"][/bt_hr][bt_text]\n\nLast chance summer <em>hotel</em> sale. Up to 45% off selected Top Secret® <em>hotels</em> + Exclusive <em>deal</em> of the day.\n\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/6\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_button text=\"READ MORE\" icon=\"no_icon\" url=\"\" target=\"no_target\" style=\"Outline\" icon_position=\"Right\" color=\"Normal\" size=\"ExtraSmall\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/3\" align=\"left\" vertical_align=\"btMiddleVertical\" border=\"no_border\" cell_padding=\"btDoublePadding\" animation=\"animate animate-fadein\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"#e5e5e5\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"IN A NUTSHELL\" headline=\"Hotel California\" headline_size=\"large\" dash=\"bottom\" subheadline=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer mollis viverra diam ac ornare. Donec rhoncus nisi in felis congue, at pulvinar nibh dapibus.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_button text=\"READ MORE\" icon=\"no_icon\" url=\"\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"ExtraSmall\" width=\"Normal\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"2/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_slider height=\"auto\" auto_play=\"\" hide_arrows=\"\" hide_paging=\"btSliderHidePaging\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"81\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"82\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"83\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"84\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"85\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][/bt_slider][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\"][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"2/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_gmaps latitude=\"36.602383\" longitude=\"-121.879245 \" zoom=\"11\" icon=\"952\" height=\"400px\" primary_color=\"\" secondary_color=\"\" water_color=\"\" custom_style=\"WwogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJhZG1pbmlzdHJhdGl2ZSIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImxhYmVscy50ZXh0LmZpbGwiLAogICAgICAgICJzdHlsZXJzIjogWwogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAiY29sb3IiOiAiIzQ0NDQ0NCIKICAgICAgICAgICAgfQogICAgICAgIF0KICAgIH0sCiAgICB7CiAgICAgICAgImZlYXR1cmVUeXBlIjogImxhbmRzY2FwZSIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJjb2xvciI6ICIjZjJmMmYyIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAicG9pIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiYWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInZpc2liaWxpdHkiOiAib2ZmIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAicm9hZCIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJzYXR1cmF0aW9uIjogLTEwMAogICAgICAgICAgICB9LAogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAibGlnaHRuZXNzIjogNDUKICAgICAgICAgICAgfQogICAgICAgIF0KICAgIH0sCiAgICB7CiAgICAgICAgImZlYXR1cmVUeXBlIjogInJvYWQuaGlnaHdheSIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogInNpbXBsaWZpZWQiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJyb2FkLmhpZ2h3YXkiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJnZW9tZXRyeSIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogInNpbXBsaWZpZWQiCiAgICAgICAgICAgIH0sCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJjb2xvciI6ICIjZmZhZDViIgogICAgICAgICAgICB9LAogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAibGlnaHRuZXNzIjogIjAiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJyb2FkLmhpZ2h3YXkiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJsYWJlbHMudGV4dCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogIm9uIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAicm9hZC5oaWdod2F5IiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAibGFiZWxzLmljb24iLAogICAgICAgICJzdHlsZXJzIjogWwogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAidmlzaWJpbGl0eSI6ICJvbiIKICAgICAgICAgICAgfQogICAgICAgIF0KICAgIH0sCiAgICB7CiAgICAgICAgImZlYXR1cmVUeXBlIjogInJvYWQuYXJ0ZXJpYWwiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJhbGwiLAogICAgICAgICJzdHlsZXJzIjogWwogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAidmlzaWJpbGl0eSI6ICJvbiIKICAgICAgICAgICAgfQogICAgICAgIF0KICAgIH0sCiAgICB7CiAgICAgICAgImZlYXR1cmVUeXBlIjogInJvYWQuYXJ0ZXJpYWwiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJnZW9tZXRyeS5maWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgImNvbG9yIjogIiNmZmFkNWIiCiAgICAgICAgICAgIH0sCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJsaWdodG5lc3MiOiAiNzUiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJyb2FkLmFydGVyaWFsIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAibGFiZWxzLmljb24iLAogICAgICAgICJzdHlsZXJzIjogWwogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAidmlzaWJpbGl0eSI6ICJvZmYiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJyb2FkLmxvY2FsIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiZ2VvbWV0cnkuZmlsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJsaWdodG5lc3MiOiAiNzUiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJ0cmFuc2l0IiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiYWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInZpc2liaWxpdHkiOiAib2ZmIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAidHJhbnNpdC5saW5lIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiYWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInZpc2liaWxpdHkiOiAib24iCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJ0cmFuc2l0LnN0YXRpb24uYnVzIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiYWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInZpc2liaWxpdHkiOiAib24iCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJ0cmFuc2l0LnN0YXRpb24ucmFpbCIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogIm9uIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAidHJhbnNpdC5zdGF0aW9uLnJhaWwiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJsYWJlbHMuaWNvbiIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ3ZWlnaHQiOiAiMC4wMSIKICAgICAgICAgICAgfSwKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgImh1ZSI6ICIjZmY3ZjAwIgogICAgICAgICAgICB9LAogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAibGlnaHRuZXNzIjogIjAiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJ3YXRlciIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogIm9uIgogICAgICAgICAgICB9LAogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAiY29sb3IiOiAiIzU1N2JhMSIKICAgICAgICAgICAgfSwKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgImxpZ2h0bmVzcyI6ICIyNSIKICAgICAgICAgICAgfSwKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInNhdHVyYXRpb24iOiAiLTIzIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfQpd\" el_class=\"\" el_style=\"\" api_key=\"AIzaSyBda9LxQ-Wztqsk6aFI7SkcdiypnKTPfiI\"][/bt_gmaps][/bt_column][bt_column width=\"1/3\" align=\"left\" vertical_align=\"btMiddleVertical\" border=\"no_border\" cell_padding=\"btDoublePadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"#e5e5e5\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_service icon=\"s7_e638\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoMediumSize\" url=\"\" headline=\"Address\" dash=\"\" text=\"3216 W Highland Boulevard\nSan Diego, California\" el_class=\"\" el_style=\"\" superheadline=\"\"][/bt_service][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSemiSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_service icon=\"s7_e670\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoMediumSize\" url=\"\" headline=\"Phone\" dash=\"\" text=\"+555-40-220-6672\" el_class=\"\" el_style=\"\" superheadline=\"\"][/bt_service][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSemiSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_service icon=\"s7_e63a\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoMediumSize\" url=\"\" headline=\"Email\" dash=\"\" text=\"office@california.hotel\" el_class=\"\" el_style=\"\" superheadline=\"\"][/bt_service][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSmallSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#e5e5e5\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"7/12\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Activities\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Phasellus blandit a massa vitae congue. Nam ex massa, mattis ut sapien sit amet, consequat sodales risus. Sed interdum, ligula et lobortis faucibus, sem sem placerat augue, eget scelerisque turpis lorem et tellus.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][/bt_column][bt_column width=\"5/12\"][/bt_column][/bt_row][/bt_section][bt_section layout=\"wide\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"dark\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#e5e5e5\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"73\" caption_title=\"Beach voleyball\" caption_text=\"Enjoy the game\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"ENJOY THE GAME\" headline=\"Beach Voleyball\" headline_size=\"medium\" dash=\"top\" subheadline=\"Beach volleyball is ouy visitors favourite sport, highly enjoyable for everyone young or old. Just gather your team on the beach and find the opponents in a matter of minutes. And show what you can do, be a winner!\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_e9ac\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e040\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e041\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"74\" el_class=\"\" el_style=\"\"][bt_image image=\"74\" caption_title=\"Horseback riding\" caption_text=\"Enjoy the beach\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Enjoy the beach\" headline=\"Horseback riding\" headline_size=\"medium\" dash=\"top\" subheadline=\"How about a lazy afternoon with your friends on a hors, while the sun goes down? If you want to chill out, our horse riding team will teach you in a matter of minutes and help you wind down after a good day on the sun.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_ea13\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1e\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e05b\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"75\" el_class=\"\" el_style=\"\"][bt_image image=\"75\" caption_title=\"Waterskiing\" caption_text=\"Enjoy the sea\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Enjoy the sea\" headline=\"Waterskiing\" headline_size=\"medium\" dash=\"top\" subheadline=\"If you are a big fan of water sports, then why not try the waterskiing or waterboarding? At hotel California you will find there\'s an amateur champoionship every year. Rated as the most fun activity by our visitors.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_e05b\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9a3\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9e5\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"76\" el_class=\"\" el_style=\"\"][bt_image image=\"76\" caption_title=\"Paragliding\" caption_text=\"Enjoy the sky\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Enjoy the sky\" headline=\"Parasailing\" headline_size=\"medium\" dash=\"top\" subheadline=\"Enjoy the thrill on the sky with our parasailing team and feel the California sun on your face. The team will help you get your adrenaline high and will be capuring your moments on a high-definition camera.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_ea2f\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"s7_e67b\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9f3\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"0.7\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"special-offers\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"2/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Rooms & Suites\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"If you chose to stay with us you will enjoy modern home comforts in a traditional setting. Whether you are looking for a short weekend break or a longer holiday, we offer a range of packages that will cater for all.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/3\"][/bt_column][/bt_row][bt_row][bt_column width=\"1/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"0.7\" inner_background_color=\"#ffffff\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"44\" caption_text=\"View\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption=\"Double room\" show_titles=\"no\" caption_title=\"Room details\"][bt_header superheadline=\"Room features\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"cs_ea18\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9c2\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea2c\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1c\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"DELUXE\" headline=\"Double Room\" headline_size=\"medium\" dash=\"top\" subheadline=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer mollis viverra diam ac ornare. Donec rhoncus nisi in felis congue, at pulvinar.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/2\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"room-details\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"1/2\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"0.7\" inner_background_color=\"#ffffff\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"43\" caption_text=\"\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"Room features\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"cs_ea18\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9c5\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1a\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1c\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"EXECUTIVE\" headline=\"Junior Suite\" headline_size=\"medium\" dash=\"top\" subheadline=\"Sed sodales tortor non metus iaculis, non commodo ipsum mattis. Ut at dolor elit. Proin dignissim, lacus eget ullamcorper consectetur, mauris mi.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/2\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"room-details\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"1/2\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"0.7\" inner_background_color=\"#ffffff\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"42\" caption_text=\"\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"Room features\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"cs_ea30\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea18\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea2d\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1c\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"DELUXE\" headline=\"Double Room\" headline_size=\"medium\" dash=\"top\" subheadline=\"Mauris suscipit lectus pellentesque ante efficitur, at dignissim tellus maximus. Sed leo magna, faucibus non ante non, pulvinar scelerisque magna.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/2\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"room-details\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"1/2\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSemiSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][/bt_column][bt_column width=\"2/4\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Everyday ease\" headline=\"Room amenities\" headline_size=\"extralarge\" dash=\"top\" subheadline=\"Hotel California offers a large number of Room amenities that will ease up your stay when you\'re on your vacation. \" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\"][/bt_column][/bt_row][bt_row][bt_column width=\"1/4\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"0.7\" inner_background_color=\"#ffffff\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_service icon=\"cs_ea53\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoLargeSize\" url=\"\" superheadline=\"\" headline=\"Free Wi-Fi\" dash=\"\" text=\"Rest and do some work if you need to, high speed wi-fi internet is free all around the hotel premises.\" el_class=\"\" el_style=\"\"][/bt_service][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_service icon=\"cs_ea2d\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoLargeSize\" url=\"\" superheadline=\"\" headline=\"Cocktails?\" dash=\"\" text=\"If you’re a fan of cocktails – our bartenders will make it for you. Just visit the lobby or pool bar.\" el_class=\"\" el_style=\"\"][/bt_service][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_service icon=\"cs_ea19\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoLargeSize\" url=\"\" superheadline=\"\" headline=\"Wine bottle\" dash=\"\" text=\"Have a complementary bottle of wine free, when you stay for more than 5 nights at California.\" el_class=\"\" el_style=\"\"][/bt_service][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_service icon=\"cs_ea31\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoLargeSize\" url=\"\" superheadline=\"\" headline=\"Premium bathtubs\" dash=\"\" text=\"Jacuzzi or a regular bath tub? It’s your choice, so whichever you prefer, let us know when booking.\" el_class=\"\" el_style=\"\"][/bt_service][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"1/4\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"0.7\" inner_background_color=\"#ffffff\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_service icon=\"cs_ea2c\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoLargeSize\" url=\"\" superheadline=\"\" headline=\"Coffeemaker\" dash=\"\" text=\"Start your morning with the highest quality coffee made in-room with Lavazza coffeemaker.\" el_class=\"\" el_style=\"\"][/bt_service][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_service icon=\"cs_ea18\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoLargeSize\" url=\"\" superheadline=\"\" headline=\"Widescreen LCD TV\" dash=\"\" text=\"Enjoy your favourite TV shows or sports when you’re at your room resting on a 40“ TV screen.\" el_class=\"\" el_style=\"\"][/bt_service][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_service icon=\"cs_ea19\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoLargeSize\" url=\"\" superheadline=\"\" headline=\"Wine bottle\" dash=\"\" text=\"Have a complementary bottle of wine free, when you stay for more than 5 nights at California.\" el_class=\"\" el_style=\"\"][/bt_service][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_service icon=\"cs_ea1a\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoLargeSize\" url=\"\" superheadline=\"\" headline=\"Loundry\" dash=\"\" text=\"Or room staff will change the towels everyday if you prefer to. Just leave them in the bath.\" el_class=\"\" el_style=\"\"][/bt_service][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_slider height=\"auto\" auto_play=\"\" hide_arrows=\"\" hide_paging=\"btSliderHidePaging\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/6\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"78\" caption_text=\"\" size=\"\" shape=\"circle\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][bt_header superheadline=\"June 2016\" headline=\"Alan Jones\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][/bt_column_inner][bt_column_inner width=\"5/6\"][bt_text]\n<blockquote>If you chose to stay with us you will enjoy modern home comforts in a traditional setting. Whether you are looking for a short weekend break or a longer holiday, we offer a range of packages that we think cater for all.</blockquote>\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/6\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"447\" caption_text=\"\" size=\"\" shape=\"circle\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][/bt_image][bt_header superheadline=\"July 2016\" headline=\"Adrianne White\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][bt_column_inner width=\"5/6\"][bt_text]\n<blockquote>If you chose to stay with us you will enjoy modern home comforts in a traditional setting. Whether you are looking for a short weekend break or a longer holiday, we offer a range of packages that we think cater for all.</blockquote>\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/6\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"446\" caption_text=\"\" size=\"\" shape=\"circle\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][/bt_image][bt_header superheadline=\"August 2016\" headline=\"Jenna & Mike\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][bt_column_inner width=\"5/6\"][bt_text]\n<blockquote>If you chose to stay with us you will enjoy modern home comforts in a traditional setting. Whether you are looking for a short weekend break or a longer holiday, we offer a range of packages that we think cater for all.</blockquote>\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][/bt_slider][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"yes\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"7/12\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"News <i>&</i> Blog\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Morbi pharetra faucibus purus, nec pretium enim luctus quis. Pellentesque aliquet venenatis ante, quis pretium neque tristique eget. Integer in luctus urna. Aenean rutrum sodales pharetra.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"5/12\"][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_latest_posts number=\"3\" category=\"\" format=\"horizontal\" post_type=\"blog\" show_excerpt=\"yes\" show_date=\"yes\" show_author=\"yes\" el_class=\"\" el_style=\"\"][/bt_latest_posts][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"321\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"0.3\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Follow us\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Find out what’s hot and new, and get discounts for being a loyal customer and a Hotel California fan.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_icons][bt_icon icon=\"fa_f09a\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f099\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f0d5\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_column][/bt_row][/bt_section] ','Evening hotel','\n ','publish','closed','closed','','evening-hotel','','','2016-09-21 10:38:37','2016-09-21 10:38:37','',0,'http://hotel.bold-themes.com/summer/?page_id=921',0,'page','',0);
INSERT INTO `smrc_posts` VALUES (925,1,'2016-09-21 10:40:08','2016-09-21 10:40:08','\n ','summer-hero-exterior-overlay-large','\n ','inherit','open','closed','','summer-hero-exterior-overlay-large','','','2016-09-21 10:40:08','2016-09-21 10:40:08','',0,'http://mpycdev.theomggroup.com/wp-content/uploads/2016/09/summer-hero-exterior-overlay-large.jpg',0,'attachment','image/jpeg',0);
INSERT INTO `smrc_posts` VALUES (952,1,'2016-09-22 14:07:17','2016-09-22 14:07:17','\n ','california-exterior-pin','\n ','inherit','open','closed','','california-exterior-pin','','','2016-09-22 14:07:17','2016-09-22 14:07:17','',0,'http://mpycdev.theomggroup.com/wp-content/uploads/2016/09/California-exterior-pin.png',0,'attachment','image/png',0);
INSERT INTO `smrc_posts` VALUES (953,1,'2016-09-22 14:07:19','2016-09-22 14:07:19','\n ','california-exterior-logo','\n ','inherit','open','closed','','california-exterior-logo','','','2016-09-22 14:07:19','2016-09-22 14:07:19','',0,'http://mpycdev.theomggroup.com/wp-content/uploads/2016/09/California-exterior-logo.png',0,'attachment','image/png',0);
INSERT INTO `smrc_posts` VALUES (954,1,'2016-09-22 14:07:20','2016-09-22 14:07:20','\n ','california-exterior-logo-inverse','\n ','inherit','open','closed','','california-exterior-logo-inverse','','','2016-09-22 14:07:20','2016-09-22 14:07:20','',0,'http://mpycdev.theomggroup.com/wp-content/uploads/2016/09/California-exterior-logo-inverse.png',0,'attachment','image/png',0);
INSERT INTO `smrc_posts` VALUES (962,1,'2016-09-22 14:16:21','2016-09-22 14:16:21','\n ','california-boat-logo-inverse','\n ','inherit','open','closed','','california-boat-logo-inverse','','','2016-09-22 14:16:21','2016-09-22 14:16:21','',0,'http://mpycdev.theomggroup.com/wp-content/uploads/2016/09/California-boat-logo-inverse.png',0,'attachment','image/png',0);
INSERT INTO `smrc_posts` VALUES (963,1,'2016-09-22 14:16:22','2016-09-22 14:16:22','\n ','california-boat-logo','\n ','inherit','open','closed','','california-boat-logo','','','2016-09-22 14:16:22','2016-09-22 14:16:22','',0,'http://mpycdev.theomggroup.com/wp-content/uploads/2016/09/California-boat-logo.png',0,'attachment','image/png',0);
INSERT INTO `smrc_posts` VALUES (965,1,'2016-09-22 14:17:53','2016-09-22 14:17:53','\n ','california-boat-pin','\n ','inherit','open','closed','','california-boat-pin','','','2016-09-22 14:17:53','2016-09-22 14:17:53','',0,'http://mpycdev.theomggroup.com/wp-content/uploads/2016/09/California-boat-pin.png',0,'attachment','image/png',0);
INSERT INTO `smrc_posts` VALUES (967,1,'2016-09-22 14:20:31','2016-09-22 14:20:31','\n ','california-boat-star-green','\n ','inherit','open','closed','','california-boat-star-green','','','2016-09-22 14:20:31','2016-09-22 14:20:31','',0,'http://mpycdev.theomggroup.com/wp-content/uploads/2016/09/California-boat-star-green.png',0,'attachment','image/png',0);
INSERT INTO `smrc_posts` VALUES (968,1,'2016-09-22 14:20:33','2016-09-22 14:20:33',' ','california-boat-star-brown',' ','inherit','open','closed','','california-boat-star-brown','','','2021-04-06 05:14:37','2021-04-06 05:14:37','',0,'http://mpycdev.theomggroup.com/wp-content/uploads/2016/09/California-boat-star-brown.png',0,'attachment','image/png',0);
INSERT INTO `smrc_posts` VALUES (969,1,'2016-09-22 14:22:38','2016-09-22 14:22:38','\n ','california-boat-logo-inverse-2','\n ','inherit','open','closed','','california-boat-logo-inverse-2','','','2016-09-22 14:22:38','2016-09-22 14:22:38','',0,'http://mpycdev.theomggroup.com/wp-content/uploads/2016/09/California-boat-logo-inverse-2.png',0,'attachment','image/png',0);
INSERT INTO `smrc_posts` VALUES (971,1,'2016-02-23 11:09:50','2016-02-23 11:09:50','\n ','News','\n ','publish','closed','closed','','news','','','2016-02-23 11:09:50','2016-02-23 11:09:50','',0,'http://hotel.omnicom-dev.com/?page_id=15',0,'page','',0);
INSERT INTO `smrc_posts` VALUES (972,1,'2016-02-23 11:09:07','2016-02-23 11:09:07','\n [bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSemiSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"2/3\" align=\"left\" vertical_align=\"btMiddleVertical\" border=\"no_border\" cell_padding=\"default\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Get the best rate\" headline=\"Offers <i>&</i> Deals\" headline_size=\"extralarge\" dash=\"bottom\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\" subheadline=\"If you chose to stay with us you will enjoy modern home comforts in a traditional setting. Whether you are looking for a short weekend break or a longer holiday, we offer a range of packages that we think cater for all.\" el_class=\"\" el_style=\"\"][/bt_header][/bt_column][bt_column width=\"1/3\" align=\"left\" vertical_align=\"btMiddleVertical\" border=\"no_border\" cell_padding=\"default\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"452\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"0.5\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"323\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"width: 60px; margin-top: -28px;\"][/bt_image][bt_hr top_spaced=\"topSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"2/3\"][/bt_column][bt_column width=\"1/3\"][bt_header superheadline=\"Get together\" headline=\"Family vacation\" headline_size=\"large\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"fa_f207\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f13d\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f1eb\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f206\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f1ae\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\n\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Integer mollis viverra diam ac ornare. Donec rhoncus nisi in felis congue, at pulvinar nibh dapibus.\n\n[/bt_text][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/3\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"special offers\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"2/3\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"dark\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#584528\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\"][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\n\n[contact-form-7 id=\"397\" title=\"Booking form\"]\n\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topExtraSpaced\" bottom_spaced=\"bottomExtraSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"454\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"0.5\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/3\"][bt_header superheadline=\"Procrastinate\" headline=\"Lazy weekend\" headline_size=\"large\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"fa_f1ba\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f072\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f1eb\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f000\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f185\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\n\nPhasellus non bibendum augue. Duis nibh felis, volutpat vitae pulvinar at, tincidunt eget mi. Donec venenatis condimentum fermentum.\n\n[/bt_text][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/3\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"special offers\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"2/3\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][/bt_column][bt_column width=\"2/3\"][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"dark\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#b71234\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\"][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSemiSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\n<div class=\"btText\">\n<blockquote>This was our absolutely best vacation ever. We were looking for a good family hotel with lots of activities for the whole family and that was exactly what we got!</blockquote>\n</div>\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"451\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"0.5\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"322\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"width: 60px; margin-top: -28px;\"][/bt_image][bt_hr top_spaced=\"topSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"2/3\"][/bt_column][bt_column width=\"1/3\"][bt_header superheadline=\"Celebrate\" headline=\"Newlyweds weekend\" headline_size=\"large\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"fa_f1ba\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f072\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f228\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\n\nSed ut metus eu neque commodo fringilla imperdiet sed nibh. Sed volutpat fermentum ligula, et maximus ex ultricies sit amet.\n\n[/bt_text][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/3\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"special offers\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"2/3\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][/bt_column][/bt_row][/bt_section][bt_section][/bt_section] ','Special offers','\n ','publish','closed','closed','','special-offers','','','2016-02-23 11:09:07','2016-02-23 11:09:07','',0,'http://hotel.omnicom-dev.com/?page_id=9',0,'page','',0);
INSERT INTO `smrc_posts` VALUES (977,1,'2021-04-02 12:24:39','2021-04-02 12:24:39','[bt_section layout=\"wide\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\"][bt_slider height=\"auto\" auto_play=\"5000\" hide_arrows=\"\" hide_paging=\"\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item image=\"843\" el_class=\"btLightSkin\" el_style=\"\"][bt_row_inner][bt_column_inner width=\"1/2\"][/bt_column_inner][bt_column_inner width=\"1/2\" align=\"left\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"animate animate-fadein animate-moveleft\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_hr top_spaced=\"topExtraSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Welcome to the\r\n<i>Hotel California</i>\" headline_size=\"huge\" dash=\"bottom\" subheadline=\"At the heart of San Diego, on one of the most colorful beaches, right next to the Pacific ocean, lies the Hotel California, most famous for it’s easy going staff and vacation you’ll never forget...\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_button text=\"Check our OFFERS & DEALS\" icon=\"fa_f061\" url=\"#special-offers\" target=\"no_target\" style=\"Outline\" icon_position=\"Left\" color=\"Accent\" size=\"Small\" width=\"Normal\" el_class=\"\" el_style=\"\"][/bt_button][bt_button text=\"BOOK NOW\" icon=\"no_icon\" url=\"rooms\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Normal\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topSpaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][/bt_slider_item][bt_slider_item image=\"844\" el_class=\"\" el_style=\"\"][bt_row_inner][bt_column_inner width=\"2/3\" align=\"left\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"animate animate-fadein animate-moveleft\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_hr top_spaced=\"topExtraSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"The art of meeting your\r\nhighest <i>expectations</i>\" headline_size=\"huge\" dash=\"bottom\" subheadline=\"Enjoying the sun and sea has never been so easy. At the beach of hotel California, you\'ll find our most complete service, great seaside and easy going staff.\r\nHotel California. Everything. Right where you need it.\" el_class=\"\" el_style=\"max-width: 660px;\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_button text=\"Check our OFFERS & DEALS\" icon=\"fa_f061\" url=\"#special-offers\" target=\"no_target\" style=\"Outline\" icon_position=\"Left\" color=\"Accent\" size=\"Small\" width=\"Normal\" el_class=\"\" el_style=\"\"][/bt_button][bt_button text=\"BOOK NOW\" icon=\"no_icon\" url=\"rooms\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Normal\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topSpaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"1/3\"][/bt_column_inner][/bt_row_inner][/bt_slider_item][bt_slider_item image=\"843\" el_class=\"btLightSkin\" el_style=\"\"][bt_row_inner][bt_column_inner width=\"1/2\"][/bt_column_inner][bt_column_inner width=\"1/2\" align=\"left\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"animate animate-fadein animate-moveleft\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_hr top_spaced=\"topExtraSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Unique <i>location,</i>\r\nservice and stay\" headline_size=\"huge\" dash=\"bottom\" subheadline=\"At the heart of San Diego, on one of the most colorful beaches, right next to the Pacific ocean, lies the Hotel California, most famous for it’s easy going staff and vacation you’ll never forget...\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_button text=\"Check our OFFERS & DEALS\" icon=\"fa_f061\" url=\"#special-offers\" target=\"no_target\" style=\"Outline\" icon_position=\"Left\" color=\"Accent\" size=\"Small\" width=\"Normal\" el_class=\"\" el_style=\"\"][/bt_button][bt_button text=\"BOOK NOW\" icon=\"no_icon\" url=\"rooms\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Normal\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topSpaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][/bt_slider_item][/bt_slider][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"dark\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#000080\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\"][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\r\n\r\n[contact-form-7 id=\"397\" title=\"Booking form\"]\r\n\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSemiSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"2/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Rooms & Suites\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"If you chose to stay with us you will enjoy modern home comforts in a traditional setting. Whether you are looking for a short weekend break or a longer holiday, we offer a range of packages that will cater for all.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/3\"][/bt_column][/bt_row][bt_row][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"44\" caption_text=\"View\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption=\"Double room\" show_titles=\"no\" caption_title=\"Room details\"][bt_header superheadline=\"Room features\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"cs_ea18\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9c2\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea2c\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1c\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"DELUXE\" headline=\"Double Room\" headline_size=\"medium\" dash=\"top\" subheadline=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer mollis viverra diam ac ornare. Donec rhoncus nisi in felis congue, at pulvinar nibh dapibus.\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/2\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"room-details\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"1/2\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"43\" caption_text=\"\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"Room features\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"cs_ea18\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9c5\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1a\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1c\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"EXECUTIVE\" headline=\"Junior Suite\" headline_size=\"medium\" dash=\"top\" subheadline=\"Sed sodales tortor non metus iaculis, non commodo ipsum mattis. Ut at dolor elit. Proin dignissim, lacus eget ullamcorper consectetur, mauris mi mattis elit sagittis.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/2\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"room-details\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"1/2\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"42\" caption_text=\"\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"Room features\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"cs_ea30\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea18\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea2d\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1c\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"DELUXE\" headline=\"Double Room\" headline_size=\"medium\" dash=\"top\" subheadline=\"Mauris suscipit lectus pellentesque ante efficitur, at dignissim tellus maximus. Sed leo magna, faucibus non ante non, pulvinar scelerisque magna sit elis.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/2\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"room-details\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"1/2\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"41\" caption_text=\"\" size=\"medium\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"Room features\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"cs_ea18\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1b\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea21\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1c\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"DELUXE\" headline=\"Family Room\" headline_size=\"medium\" dash=\"top\" subheadline=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer mollis viverra diam ac ornare. Donec rhoncus nisi in felis congue, at pulvinar nibh dapibus.\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/2\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"room-details\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"1/2\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"66\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"0.7\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"special-offers\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"323\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"width: 60px; margin-top: -28px;\"][/bt_image][bt_hr top_spaced=\"topSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"1/2\"][/bt_column][bt_column width=\"1/2\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"GET THE BEST RATE\" headline=\"Offers <i>&</i> Deals\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"If you chose to stay with us you will enjoy modern home comforts in a traditional setting. Whether you are looking for a short weekend break or a longer holiday, we offer a range of packages that we think cater for all.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"1/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"0.7\" inner_background_color=\"#ffffff\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"67\" caption_text=\"Get together\" size=\"\" shape=\"square\" url=\"special-offers\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"Family vacation\" show_titles=\"no\"][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"Get together\" headline=\"Family vacation\" headline_size=\"medium\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"fa_f207\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f13d\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f1eb\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f206\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f1ae\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\r\n\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Integer mollis viverra diam ac ornare. Donec rhoncus nisi in felis congue, at pulvinar nibh dapibus.\r\n\r\n[/bt_text][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/3\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"special-offers\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"2/3\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"0.7\" inner_background_color=\"#ffffff\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"68\" caption_text=\"Celebrate\" size=\"\" shape=\"square\" url=\"special-offers\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"Newlyweds weekend\" show_titles=\"no\"][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"Celebrate\" headline=\"Newlyweds weekend\" headline_size=\"medium\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"fa_f1ba\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f072\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f228\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\r\n\r\nSed ut metus eu neque commodo fringilla imperdiet sed nibh. Sed volutpat fermentum ligula, et maximus ex ultricies sit amet.\r\n\r\n[/bt_text][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/3\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"special-offers\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"2/3\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"0.7\" inner_background_color=\"#ffffff\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"725\" caption_text=\"Procrastinate\" size=\"\" shape=\"square\" url=\"special-offers\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"Lazy weekend\" show_titles=\"no\"][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"Procrastinate\" headline=\"Lazy weekend\" headline_size=\"medium\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"fa_f1ba\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f072\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f1eb\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f000\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f185\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\r\n\r\nPhasellus non bibendum augue. Duis nibh felis, volutpat vitae pulvinar at, tincidunt eget mi. Donec venenatis condimentum fermentum.\r\n\r\n[/bt_text][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/3\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"special-offers\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"2/3\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#e5e5e5\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"322\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"width: 60px; margin-top: -28px;\"][/bt_image][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"7/12\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Activities\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Phasellus blandit a massa vitae congue. Nam ex massa, mattis ut sapien sit amet, consequat sodales risus. Sed interdum, ligula et lobortis faucibus, sem sem placerat augue, eget scelerisque turpis lorem et tellus.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][/bt_column][bt_column width=\"5/12\"][/bt_column][/bt_row][/bt_section][bt_section layout=\"wide\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"dark\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#e5e5e5\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"73\" caption_title=\"Beach voleyball\" caption_text=\"Enjoy the game\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"ENJOY THE GAME\" headline=\"Beach Voleyball\" headline_size=\"medium\" dash=\"top\" subheadline=\"Beach volleyball is ouy visitors favourite sport, highly enjoyable for everyone young or old. Just gather your team on the beach and find the opponents in a matter of minutes. And show what you can do, be a winner!\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_e9ac\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e040\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e041\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"74\" el_class=\"\" el_style=\"\"][bt_image image=\"74\" caption_title=\"Horseback riding\" caption_text=\"Enjoy the beach\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Enjoy the beach\" headline=\"Horseback riding\" headline_size=\"medium\" dash=\"top\" subheadline=\"How about a lazy afternoon with your friends on a hors, while the sun goes down? If you want to chill out, our horse riding team will teach you in a matter of minutes and help you wind down after a good day on the sun.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_ea13\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1e\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e05b\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"75\" el_class=\"\" el_style=\"\"][bt_image image=\"75\" caption_title=\"Waterskiing\" caption_text=\"Enjoy the sea\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Enjoy the sea\" headline=\"Waterskiing\" headline_size=\"medium\" dash=\"top\" subheadline=\"If you are a big fan of water sports, then why not try the waterskiing or waterboarding? At hotel California you will find there\'s an amateur champoionship every year. Rated as the most fun activity by our visitors.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_e05b\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9a3\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9e5\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"76\" el_class=\"\" el_style=\"\"][bt_image image=\"76\" caption_title=\"Paragliding\" caption_text=\"Enjoy the sky\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Enjoy the sky\" headline=\"Parasailing\" headline_size=\"medium\" dash=\"top\" subheadline=\"Enjoy the thrill on the sky with our parasailing team and feel the California sun on your face. The team will help you get your adrenaline high and will be capuring your moments on a high-definition camera.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_ea2f\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"s7_e67b\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9f3\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_slider height=\"auto\" auto_play=\"\" hide_arrows=\"\" hide_paging=\"btSliderHidePaging\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/6\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"78\" caption_text=\"\" size=\"\" shape=\"circle\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][bt_header superheadline=\"June 2016\" headline=\"Alan Jones\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][/bt_column_inner][bt_column_inner width=\"5/6\"][bt_text]\r\n<blockquote>If you chose to stay with us you will enjoy modern home comforts in a traditional setting. Whether you are looking for a short weekend break or a longer holiday, we offer a range of packages that we think cater for all.</blockquote>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/6\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"447\" caption_text=\"\" size=\"\" shape=\"circle\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][/bt_image][bt_header superheadline=\"July 2016\" headline=\"Adrianne White\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][bt_column_inner width=\"5/6\"][bt_text]\r\n<blockquote>If you chose to stay with us you will enjoy modern home comforts in a traditional setting. Whether you are looking for a short weekend break or a longer holiday, we offer a range of packages that we think cater for all.</blockquote>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/6\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"446\" caption_text=\"\" size=\"\" shape=\"circle\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][/bt_image][bt_header superheadline=\"August 2016\" headline=\"Jenna & Mike\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][bt_column_inner width=\"5/6\"][bt_text]\r\n<blockquote>If you chose to stay with us you will enjoy modern home comforts in a traditional setting. Whether you are looking for a short weekend break or a longer holiday, we offer a range of packages that we think cater for all.</blockquote>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][/bt_slider][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/3\" align=\"left\" vertical_align=\"btMiddleVertical\" border=\"no_border\" cell_padding=\"btDoublePadding\" animation=\"animate animate-fadein\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"#e5e5e5\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"IN A NUTSHELL\" headline=\"Hotel California\" headline_size=\"large\" dash=\"bottom\" subheadline=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer mollis viverra diam ac ornare. Donec rhoncus nisi in felis congue, at pulvinar nibh dapibus.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_button text=\"READ MORE\" icon=\"no_icon\" url=\"\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"ExtraSmall\" width=\"Normal\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"2/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_slider height=\"auto\" auto_play=\"\" hide_arrows=\"\" hide_paging=\"btSliderHidePaging\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"81\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"82\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"83\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"84\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"85\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][/bt_slider][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\"][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"2/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_gmaps latitude=\"36.602383\" longitude=\"-121.879245 \" zoom=\"11\" icon=\"342\" height=\"400px\" primary_color=\"\" secondary_color=\"\" water_color=\"\" custom_style=\"WwogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJhZG1pbmlzdHJhdGl2ZSIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImxhYmVscy50ZXh0LmZpbGwiLAogICAgICAgICJzdHlsZXJzIjogWwogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAiY29sb3IiOiAiIzQ0NDQ0NCIKICAgICAgICAgICAgfQogICAgICAgIF0KICAgIH0sCiAgICB7CiAgICAgICAgImZlYXR1cmVUeXBlIjogImxhbmRzY2FwZSIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJjb2xvciI6ICIjZjJmMmYyIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAicG9pIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiYWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInZpc2liaWxpdHkiOiAib2ZmIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAicm9hZCIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJzYXR1cmF0aW9uIjogLTEwMAogICAgICAgICAgICB9LAogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAibGlnaHRuZXNzIjogNDUKICAgICAgICAgICAgfQogICAgICAgIF0KICAgIH0sCiAgICB7CiAgICAgICAgImZlYXR1cmVUeXBlIjogInJvYWQuaGlnaHdheSIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogInNpbXBsaWZpZWQiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJyb2FkLmhpZ2h3YXkiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJnZW9tZXRyeSIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogInNpbXBsaWZpZWQiCiAgICAgICAgICAgIH0sCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJjb2xvciI6ICIjZDc3Mjg3IgogICAgICAgICAgICB9LAogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAibGlnaHRuZXNzIjogIjAiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJyb2FkLmhpZ2h3YXkiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJsYWJlbHMudGV4dCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogIm9uIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAicm9hZC5oaWdod2F5IiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAibGFiZWxzLmljb24iLAogICAgICAgICJzdHlsZXJzIjogWwogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAidmlzaWJpbGl0eSI6ICJvbiIKICAgICAgICAgICAgfQogICAgICAgIF0KICAgIH0sCiAgICB7CiAgICAgICAgImZlYXR1cmVUeXBlIjogInJvYWQuYXJ0ZXJpYWwiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJhbGwiLAogICAgICAgICJzdHlsZXJzIjogWwogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAidmlzaWJpbGl0eSI6ICJvbiIKICAgICAgICAgICAgfQogICAgICAgIF0KICAgIH0sCiAgICB7CiAgICAgICAgImZlYXR1cmVUeXBlIjogInJvYWQuYXJ0ZXJpYWwiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJnZW9tZXRyeS5maWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgImNvbG9yIjogIiNkNzcyODciCiAgICAgICAgICAgIH0sCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJsaWdodG5lc3MiOiAiNzUiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJyb2FkLmFydGVyaWFsIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAibGFiZWxzLmljb24iLAogICAgICAgICJzdHlsZXJzIjogWwogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAidmlzaWJpbGl0eSI6ICJvZmYiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJyb2FkLmxvY2FsIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiZ2VvbWV0cnkuZmlsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJsaWdodG5lc3MiOiAiNzUiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJ0cmFuc2l0IiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiYWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInZpc2liaWxpdHkiOiAib2ZmIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAidHJhbnNpdC5saW5lIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiYWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInZpc2liaWxpdHkiOiAib24iCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJ0cmFuc2l0LnN0YXRpb24uYnVzIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiYWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInZpc2liaWxpdHkiOiAib24iCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJ0cmFuc2l0LnN0YXRpb24ucmFpbCIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogIm9uIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAidHJhbnNpdC5zdGF0aW9uLnJhaWwiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJsYWJlbHMuaWNvbiIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ3ZWlnaHQiOiAiMC4wMSIKICAgICAgICAgICAgfSwKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgImh1ZSI6ICIjZmYwMDM1IgogICAgICAgICAgICB9LAogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAibGlnaHRuZXNzIjogIjAiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJ3YXRlciIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogIm9uIgogICAgICAgICAgICB9LAogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAiY29sb3IiOiAiIzgwZTRkOCIKICAgICAgICAgICAgfSwKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgImxpZ2h0bmVzcyI6ICIyNSIKICAgICAgICAgICAgfSwKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInNhdHVyYXRpb24iOiAiLTIzIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfQpd\" el_class=\"\" el_style=\"\" api_key=\"AIzaSyBda9LxQ-Wztqsk6aFI7SkcdiypnKTPfiI\"][/bt_gmaps][/bt_column][bt_column width=\"1/3\" align=\"left\" vertical_align=\"btMiddleVertical\" border=\"no_border\" cell_padding=\"btDoublePadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"#e5e5e5\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_service icon=\"s7_e638\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoMediumSize\" url=\"\" headline=\"Address\" dash=\"\" text=\"3216 W Highland Boulevard\r\nSan Diego, California\" el_class=\"\" el_style=\"\" superheadline=\"\"][/bt_service][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSemiSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_service icon=\"s7_e670\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoMediumSize\" url=\"\" headline=\"Phone\" dash=\"\" text=\"+555-40-220-6672\" el_class=\"\" el_style=\"\" superheadline=\"\"][/bt_service][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSemiSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_service icon=\"s7_e63a\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoMediumSize\" url=\"\" headline=\"Email\" dash=\"\" text=\"office@california.hotel\" el_class=\"\" el_style=\"\" superheadline=\"\"][/bt_service][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"yes\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"7/12\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"News <i>&</i> Blog\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Morbi pharetra faucibus purus, nec pretium enim luctus quis. Pellentesque aliquet venenatis ante, quis pretium neque tristique eget. Integer in luctus urna. Aenean rutrum sodales pharetra.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"5/12\"][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_latest_posts number=\"3\" category=\"\" format=\"horizontal\" post_type=\"blog\" show_excerpt=\"yes\" show_date=\"yes\" show_author=\"yes\" el_class=\"\" el_style=\"\"][/bt_latest_posts][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"321\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"0.3\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Follow us\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Find out what’s hot and new, and get discounts for being a loyal customer and a Hotel California fan.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_icons][bt_icon icon=\"fa_f09a\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f099\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f0d5\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_column][/bt_row][/bt_section]','Street view','\n ','inherit','closed','closed','','837-revision-v1','','','2021-04-02 12:24:39','2021-04-02 12:24:39','',837,'http://mpycdev.theomggroup.com/?p=977',0,'revision','',0);
INSERT INTO `smrc_posts` VALUES (1005,1,'2021-04-06 04:53:27','2021-04-06 04:53:27','','mpyclogo','','inherit','open','closed','','mpyclogo','','','2021-04-06 04:53:27','2021-04-06 04:53:27','',0,'http://mpycdev.theomggroup.com/wp-content/uploads/2021/04/mpyclogo.png',0,'attachment','image/png',0);
INSERT INTO `smrc_posts` VALUES (1007,1,'2021-04-06 05:04:08','2021-04-06 05:04:08','[bt_section layout=\"wide\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\"][bt_slider height=\"auto\" auto_play=\"5000\" hide_arrows=\"\" hide_paging=\"\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item image=\"843\" el_class=\"btLightSkin\" el_style=\"\"][bt_row_inner][bt_column_inner width=\"1/2\"][/bt_column_inner][bt_column_inner width=\"1/2\" align=\"left\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"animate animate-fadein animate-moveleft\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_hr top_spaced=\"topExtraSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Welcome to the\r\n<i>Hotel California</i>\" headline_size=\"huge\" dash=\"bottom\" subheadline=\"At the heart of San Diego, on one of the most colorful beaches, right next to the Pacific ocean, lies the Hotel California, most famous for it’s easy going staff and vacation you’ll never forget...\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_button text=\"Check our OFFERS & DEALS\" icon=\"fa_f061\" url=\"#special-offers\" target=\"no_target\" style=\"Outline\" icon_position=\"Left\" color=\"Accent\" size=\"Small\" width=\"Normal\" el_class=\"\" el_style=\"\"][/bt_button][bt_button text=\"BOOK NOW\" icon=\"no_icon\" url=\"rooms\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Normal\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topSpaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][/bt_slider_item][bt_slider_item image=\"844\" el_class=\"\" el_style=\"\"][bt_row_inner][bt_column_inner width=\"2/3\" align=\"left\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"animate animate-fadein animate-moveleft\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_hr top_spaced=\"topExtraSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"The art of meeting your\r\nhighest <i>expectations</i>\" headline_size=\"huge\" dash=\"bottom\" subheadline=\"Enjoying the sun and sea has never been so easy. At the beach of hotel California, you\'ll find our most complete service, great seaside and easy going staff.\r\nHotel California. Everything. Right where you need it.\" el_class=\"\" el_style=\"max-width: 660px;\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_button text=\"Check our OFFERS & DEALS\" icon=\"fa_f061\" url=\"#special-offers\" target=\"no_target\" style=\"Outline\" icon_position=\"Left\" color=\"Accent\" size=\"Small\" width=\"Normal\" el_class=\"\" el_style=\"\"][/bt_button][bt_button text=\"BOOK NOW\" icon=\"no_icon\" url=\"rooms\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Normal\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topSpaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"1/3\"][/bt_column_inner][/bt_row_inner][/bt_slider_item][bt_slider_item image=\"843\" el_class=\"btLightSkin\" el_style=\"\"][bt_row_inner][bt_column_inner width=\"1/2\"][/bt_column_inner][bt_column_inner width=\"1/2\" align=\"left\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"animate animate-fadein animate-moveleft\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_hr top_spaced=\"topExtraSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Unique <i>location,</i>\r\nservice and stay\" headline_size=\"huge\" dash=\"bottom\" subheadline=\"At the heart of San Diego, on one of the most colorful beaches, right next to the Pacific ocean, lies the Hotel California, most famous for it’s easy going staff and vacation you’ll never forget...\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_button text=\"Check our OFFERS & DEALS\" icon=\"fa_f061\" url=\"#special-offers\" target=\"no_target\" style=\"Outline\" icon_position=\"Left\" color=\"Accent\" size=\"Small\" width=\"Normal\" el_class=\"\" el_style=\"\"][/bt_button][bt_button text=\"BOOK NOW\" icon=\"no_icon\" url=\"rooms\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Normal\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topSpaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][/bt_slider_item][/bt_slider][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"dark\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#000080\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\"][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\r\n<h4><em>founded 1953</em></h4>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSemiSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"2/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Rooms & Suites\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"If you chose to stay with us you will enjoy modern home comforts in a traditional setting. Whether you are looking for a short weekend break or a longer holiday, we offer a range of packages that will cater for all.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/3\"][/bt_column][/bt_row][bt_row][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"44\" caption_text=\"View\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption=\"Double room\" show_titles=\"no\" caption_title=\"Room details\"][bt_header superheadline=\"Room features\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"cs_ea18\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9c2\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea2c\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1c\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"DELUXE\" headline=\"Double Room\" headline_size=\"medium\" dash=\"top\" subheadline=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer mollis viverra diam ac ornare. Donec rhoncus nisi in felis congue, at pulvinar nibh dapibus.\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/2\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"room-details\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"1/2\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"43\" caption_text=\"\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"Room features\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"cs_ea18\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9c5\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1a\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1c\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"EXECUTIVE\" headline=\"Junior Suite\" headline_size=\"medium\" dash=\"top\" subheadline=\"Sed sodales tortor non metus iaculis, non commodo ipsum mattis. Ut at dolor elit. Proin dignissim, lacus eget ullamcorper consectetur, mauris mi mattis elit sagittis.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/2\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"room-details\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"1/2\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"42\" caption_text=\"\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"Room features\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"cs_ea30\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea18\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea2d\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1c\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"DELUXE\" headline=\"Double Room\" headline_size=\"medium\" dash=\"top\" subheadline=\"Mauris suscipit lectus pellentesque ante efficitur, at dignissim tellus maximus. Sed leo magna, faucibus non ante non, pulvinar scelerisque magna sit elis.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/2\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"room-details\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"1/2\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"41\" caption_text=\"\" size=\"medium\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"Room features\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"cs_ea18\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1b\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea21\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1c\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"DELUXE\" headline=\"Family Room\" headline_size=\"medium\" dash=\"top\" subheadline=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer mollis viverra diam ac ornare. Donec rhoncus nisi in felis congue, at pulvinar nibh dapibus.\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/2\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"room-details\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"1/2\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"66\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"0.7\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"special-offers\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"323\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"width: 60px; margin-top: -28px;\"][/bt_image][bt_hr top_spaced=\"topSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"1/2\"][/bt_column][bt_column width=\"1/2\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"GET THE BEST RATE\" headline=\"Offers <i>&</i> Deals\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"If you chose to stay with us you will enjoy modern home comforts in a traditional setting. Whether you are looking for a short weekend break or a longer holiday, we offer a range of packages that we think cater for all.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"1/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"0.7\" inner_background_color=\"#ffffff\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"67\" caption_text=\"Get together\" size=\"\" shape=\"square\" url=\"special-offers\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"Family vacation\" show_titles=\"no\"][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"Get together\" headline=\"Family vacation\" headline_size=\"medium\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"fa_f207\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f13d\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f1eb\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f206\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f1ae\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\r\n\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Integer mollis viverra diam ac ornare. Donec rhoncus nisi in felis congue, at pulvinar nibh dapibus.\r\n\r\n[/bt_text][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/3\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"special-offers\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"2/3\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"0.7\" inner_background_color=\"#ffffff\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"68\" caption_text=\"Celebrate\" size=\"\" shape=\"square\" url=\"special-offers\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"Newlyweds weekend\" show_titles=\"no\"][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"Celebrate\" headline=\"Newlyweds weekend\" headline_size=\"medium\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"fa_f1ba\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f072\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f228\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\r\n\r\nSed ut metus eu neque commodo fringilla imperdiet sed nibh. Sed volutpat fermentum ligula, et maximus ex ultricies sit amet.\r\n\r\n[/bt_text][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/3\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"special-offers\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"2/3\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"0.7\" inner_background_color=\"#ffffff\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"725\" caption_text=\"Procrastinate\" size=\"\" shape=\"square\" url=\"special-offers\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"Lazy weekend\" show_titles=\"no\"][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"Procrastinate\" headline=\"Lazy weekend\" headline_size=\"medium\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"fa_f1ba\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f072\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f1eb\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f000\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f185\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\r\n\r\nPhasellus non bibendum augue. Duis nibh felis, volutpat vitae pulvinar at, tincidunt eget mi. Donec venenatis condimentum fermentum.\r\n\r\n[/bt_text][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/3\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"special-offers\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"2/3\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#e5e5e5\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"322\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"width: 60px; margin-top: -28px;\"][/bt_image][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"7/12\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Activities\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Phasellus blandit a massa vitae congue. Nam ex massa, mattis ut sapien sit amet, consequat sodales risus. Sed interdum, ligula et lobortis faucibus, sem sem placerat augue, eget scelerisque turpis lorem et tellus.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][/bt_column][bt_column width=\"5/12\"][/bt_column][/bt_row][/bt_section][bt_section layout=\"wide\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"dark\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#e5e5e5\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"73\" caption_title=\"Beach voleyball\" caption_text=\"Enjoy the game\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"ENJOY THE GAME\" headline=\"Beach Voleyball\" headline_size=\"medium\" dash=\"top\" subheadline=\"Beach volleyball is ouy visitors favourite sport, highly enjoyable for everyone young or old. Just gather your team on the beach and find the opponents in a matter of minutes. And show what you can do, be a winner!\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_e9ac\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e040\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e041\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"74\" el_class=\"\" el_style=\"\"][bt_image image=\"74\" caption_title=\"Horseback riding\" caption_text=\"Enjoy the beach\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Enjoy the beach\" headline=\"Horseback riding\" headline_size=\"medium\" dash=\"top\" subheadline=\"How about a lazy afternoon with your friends on a hors, while the sun goes down? If you want to chill out, our horse riding team will teach you in a matter of minutes and help you wind down after a good day on the sun.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_ea13\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1e\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e05b\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"75\" el_class=\"\" el_style=\"\"][bt_image image=\"75\" caption_title=\"Waterskiing\" caption_text=\"Enjoy the sea\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Enjoy the sea\" headline=\"Waterskiing\" headline_size=\"medium\" dash=\"top\" subheadline=\"If you are a big fan of water sports, then why not try the waterskiing or waterboarding? At hotel California you will find there\'s an amateur champoionship every year. Rated as the most fun activity by our visitors.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_e05b\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9a3\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9e5\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"76\" el_class=\"\" el_style=\"\"][bt_image image=\"76\" caption_title=\"Paragliding\" caption_text=\"Enjoy the sky\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Enjoy the sky\" headline=\"Parasailing\" headline_size=\"medium\" dash=\"top\" subheadline=\"Enjoy the thrill on the sky with our parasailing team and feel the California sun on your face. The team will help you get your adrenaline high and will be capuring your moments on a high-definition camera.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_ea2f\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"s7_e67b\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9f3\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_slider height=\"auto\" auto_play=\"\" hide_arrows=\"\" hide_paging=\"btSliderHidePaging\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/6\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"78\" caption_text=\"\" size=\"\" shape=\"circle\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][bt_header superheadline=\"June 2016\" headline=\"Alan Jones\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][/bt_column_inner][bt_column_inner width=\"5/6\"][bt_text]\r\n<blockquote>If you chose to stay with us you will enjoy modern home comforts in a traditional setting. Whether you are looking for a short weekend break or a longer holiday, we offer a range of packages that we think cater for all.</blockquote>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/6\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"447\" caption_text=\"\" size=\"\" shape=\"circle\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][/bt_image][bt_header superheadline=\"July 2016\" headline=\"Adrianne White\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][bt_column_inner width=\"5/6\"][bt_text]\r\n<blockquote>If you chose to stay with us you will enjoy modern home comforts in a traditional setting. Whether you are looking for a short weekend break or a longer holiday, we offer a range of packages that we think cater for all.</blockquote>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/6\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"446\" caption_text=\"\" size=\"\" shape=\"circle\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][/bt_image][bt_header superheadline=\"August 2016\" headline=\"Jenna & Mike\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][bt_column_inner width=\"5/6\"][bt_text]\r\n<blockquote>If you chose to stay with us you will enjoy modern home comforts in a traditional setting. Whether you are looking for a short weekend break or a longer holiday, we offer a range of packages that we think cater for all.</blockquote>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][/bt_slider][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/3\" align=\"left\" vertical_align=\"btMiddleVertical\" border=\"no_border\" cell_padding=\"btDoublePadding\" animation=\"animate animate-fadein\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"#e5e5e5\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"IN A NUTSHELL\" headline=\"Hotel California\" headline_size=\"large\" dash=\"bottom\" subheadline=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer mollis viverra diam ac ornare. Donec rhoncus nisi in felis congue, at pulvinar nibh dapibus.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_button text=\"READ MORE\" icon=\"no_icon\" url=\"\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"ExtraSmall\" width=\"Normal\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"2/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_slider height=\"auto\" auto_play=\"\" hide_arrows=\"\" hide_paging=\"btSliderHidePaging\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"81\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"82\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"83\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"84\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"85\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][/bt_slider][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\"][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"2/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_gmaps latitude=\"36.602383\" longitude=\"-121.879245 \" zoom=\"11\" icon=\"342\" height=\"400px\" primary_color=\"\" secondary_color=\"\" water_color=\"\" custom_style=\"WwogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJhZG1pbmlzdHJhdGl2ZSIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImxhYmVscy50ZXh0LmZpbGwiLAogICAgICAgICJzdHlsZXJzIjogWwogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAiY29sb3IiOiAiIzQ0NDQ0NCIKICAgICAgICAgICAgfQogICAgICAgIF0KICAgIH0sCiAgICB7CiAgICAgICAgImZlYXR1cmVUeXBlIjogImxhbmRzY2FwZSIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJjb2xvciI6ICIjZjJmMmYyIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAicG9pIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiYWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInZpc2liaWxpdHkiOiAib2ZmIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAicm9hZCIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJzYXR1cmF0aW9uIjogLTEwMAogICAgICAgICAgICB9LAogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAibGlnaHRuZXNzIjogNDUKICAgICAgICAgICAgfQogICAgICAgIF0KICAgIH0sCiAgICB7CiAgICAgICAgImZlYXR1cmVUeXBlIjogInJvYWQuaGlnaHdheSIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogInNpbXBsaWZpZWQiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJyb2FkLmhpZ2h3YXkiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJnZW9tZXRyeSIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogInNpbXBsaWZpZWQiCiAgICAgICAgICAgIH0sCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJjb2xvciI6ICIjZDc3Mjg3IgogICAgICAgICAgICB9LAogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAibGlnaHRuZXNzIjogIjAiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJyb2FkLmhpZ2h3YXkiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJsYWJlbHMudGV4dCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogIm9uIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAicm9hZC5oaWdod2F5IiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAibGFiZWxzLmljb24iLAogICAgICAgICJzdHlsZXJzIjogWwogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAidmlzaWJpbGl0eSI6ICJvbiIKICAgICAgICAgICAgfQogICAgICAgIF0KICAgIH0sCiAgICB7CiAgICAgICAgImZlYXR1cmVUeXBlIjogInJvYWQuYXJ0ZXJpYWwiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJhbGwiLAogICAgICAgICJzdHlsZXJzIjogWwogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAidmlzaWJpbGl0eSI6ICJvbiIKICAgICAgICAgICAgfQogICAgICAgIF0KICAgIH0sCiAgICB7CiAgICAgICAgImZlYXR1cmVUeXBlIjogInJvYWQuYXJ0ZXJpYWwiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJnZW9tZXRyeS5maWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgImNvbG9yIjogIiNkNzcyODciCiAgICAgICAgICAgIH0sCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJsaWdodG5lc3MiOiAiNzUiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJyb2FkLmFydGVyaWFsIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAibGFiZWxzLmljb24iLAogICAgICAgICJzdHlsZXJzIjogWwogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAidmlzaWJpbGl0eSI6ICJvZmYiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJyb2FkLmxvY2FsIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiZ2VvbWV0cnkuZmlsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJsaWdodG5lc3MiOiAiNzUiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJ0cmFuc2l0IiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiYWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInZpc2liaWxpdHkiOiAib2ZmIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAidHJhbnNpdC5saW5lIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiYWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInZpc2liaWxpdHkiOiAib24iCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJ0cmFuc2l0LnN0YXRpb24uYnVzIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiYWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInZpc2liaWxpdHkiOiAib24iCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJ0cmFuc2l0LnN0YXRpb24ucmFpbCIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogIm9uIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAidHJhbnNpdC5zdGF0aW9uLnJhaWwiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJsYWJlbHMuaWNvbiIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ3ZWlnaHQiOiAiMC4wMSIKICAgICAgICAgICAgfSwKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgImh1ZSI6ICIjZmYwMDM1IgogICAgICAgICAgICB9LAogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAibGlnaHRuZXNzIjogIjAiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJ3YXRlciIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogIm9uIgogICAgICAgICAgICB9LAogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAiY29sb3IiOiAiIzgwZTRkOCIKICAgICAgICAgICAgfSwKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgImxpZ2h0bmVzcyI6ICIyNSIKICAgICAgICAgICAgfSwKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInNhdHVyYXRpb24iOiAiLTIzIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfQpd\" el_class=\"\" el_style=\"\" api_key=\"AIzaSyBda9LxQ-Wztqsk6aFI7SkcdiypnKTPfiI\"][/bt_gmaps][/bt_column][bt_column width=\"1/3\" align=\"left\" vertical_align=\"btMiddleVertical\" border=\"no_border\" cell_padding=\"btDoublePadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"#e5e5e5\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_service icon=\"s7_e638\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoMediumSize\" url=\"\" headline=\"Address\" dash=\"\" text=\"3216 W Highland Boulevard\r\nSan Diego, California\" el_class=\"\" el_style=\"\" superheadline=\"\"][/bt_service][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSemiSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_service icon=\"s7_e670\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoMediumSize\" url=\"\" headline=\"Phone\" dash=\"\" text=\"+555-40-220-6672\" el_class=\"\" el_style=\"\" superheadline=\"\"][/bt_service][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSemiSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_service icon=\"s7_e63a\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoMediumSize\" url=\"\" headline=\"Email\" dash=\"\" text=\"office@california.hotel\" el_class=\"\" el_style=\"\" superheadline=\"\"][/bt_service][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"yes\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"7/12\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"News <i>&</i> Blog\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Morbi pharetra faucibus purus, nec pretium enim luctus quis. Pellentesque aliquet venenatis ante, quis pretium neque tristique eget. Integer in luctus urna. Aenean rutrum sodales pharetra.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"5/12\"][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_latest_posts number=\"3\" category=\"\" format=\"horizontal\" post_type=\"blog\" show_excerpt=\"yes\" show_date=\"yes\" show_author=\"yes\" el_class=\"\" el_style=\"\"][/bt_latest_posts][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"321\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"0.3\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Follow us\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Find out what’s hot and new, and get discounts for being a loyal customer and a Hotel California fan.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_icons][bt_icon icon=\"fa_f09a\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f099\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f0d5\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_column][/bt_row][/bt_section]','Street view','\n ','inherit','closed','closed','','837-revision-v1','','','2021-04-06 05:04:08','2021-04-06 05:04:08','',837,'http://mpycdev.theomggroup.com/?p=1007',0,'revision','',0);
INSERT INTO `smrc_posts` VALUES (1008,1,'2021-04-08 03:39:09','2021-04-08 03:39:09','[bt_section layout=\"wide\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\"][bt_slider height=\"medium\" auto_play=\"5000\" hide_arrows=\"\" hide_paging=\"\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item image=\"1048\" el_class=\"\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1025\" el_class=\"\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1026\" el_class=\"btLightSkin\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1035\" el_class=\"btLightSkin\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1050\" el_class=\"btLightSkin\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1049\" el_class=\"btLightSkin\" el_style=\"\"][/bt_slider_item][/bt_slider][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"dark\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#b71234\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\"][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\n<h4 style=\"text-align: center;\"><em>founded 1953 in historic Monterey, California</em></h4>\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSemiSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"2/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Our Club\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"A non-profit organization, MPYC is a yachting and social club comprised of adult and junior members with an interest in coming together to share in boating, sailing, yacht racing and social activities. Membership is not limited to boat owners.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/3\"][/bt_column][/bt_row][bt_row][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1068\" caption_text=\"View\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption=\"Double room\" show_titles=\"no\" caption_title=\"Room details\"][bt_header superheadline=\"CORINTHIAN SPIRIT\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Racing\" headline_size=\"medium\" dash=\"top\" subheadline=\"MPYC has built a reputation for top-notch competitive sailing. We host over 100 races per year and have hosted a variety of national championships.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1071\" caption_text=\"\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"PASSION\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Cruising\" headline_size=\"medium\" dash=\"top\" subheadline=\"Our members feature both power and sailboat owners. It\'s our great honor to live along California\'s Monterey Bay and enjoy the scenic vistas and marine wildlife.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1074\" caption_text=\"\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"DRIVE\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Rowing\" headline_size=\"medium\" dash=\"top\" subheadline=\"Our beginning, recreational and advanced rowers enjoy short and long distance local routes in addition to competition in local, West Coast and U.S. regattas. \" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1070\" caption_text=\"\" size=\"medium\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"COMMITMENT\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Youth Sailing\" headline_size=\"medium\" dash=\"top\" subheadline=\"Since its inception, Monterey Peninsula Yacht Club\'s has been proud to invest in the future of sailing and our youth to foster a better future for all us, and our club.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#e5e5e5\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"323\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"width: 60px; margin-top: -28px;\"][/bt_image][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"5/12\"][/bt_column][bt_column width=\"7/12\" align=\"right\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Activities\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Phasellus blandit a massa vitae congue. Nam ex massa, mattis ut sapien sit amet, consequat sodales risus. Sed interdum, ligula et lobortis faucibus, sem sem placerat augue, eget scelerisque turpis lorem et tellus.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][/bt_column][/bt_row][/bt_section][bt_section layout=\"wide\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"dark\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#e5e5e5\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"73\" caption_title=\"Crew\" caption_text=\"ON THE WATER\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"ON THE WATER\" headline=\"Crew\" headline_size=\"medium\" dash=\"top\" subheadline=\"Beach volleyball is ouy visitors favourite sport, highly enjoyable for everyone young or old. Just gather your team on the beach and find the opponents in a matter of minutes. And show what you can do, be a winner!\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][/bt_icons][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"74\" el_class=\"\" el_style=\"\"][bt_image image=\"74\" caption_title=\"Horseback riding\" caption_text=\"Enjoy the beach\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"On the Water\" headline=\"Paddleboarding\" headline_size=\"medium\" dash=\"top\" subheadline=\"How about a lazy afternoon with your friends on a hors, while the sun goes down? If you want to chill out, our horse riding team will teach you in a matter of minutes and help you wind down after a good day on the sun.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_ea13\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1e\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e05b\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"75\" el_class=\"\" el_style=\"\"][bt_image image=\"75\" caption_title=\"Dining\" caption_text=\"ON SHORE\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"On Shore\" headline=\"Dining\" headline_size=\"medium\" dash=\"top\" subheadline=\"If you are a big fan of water sports, then why not try the waterskiing or waterboarding? At hotel California you will find there\'s an amateur champoionship every year. Rated as the most fun activity by our visitors.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_e05b\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9a3\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9e5\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"76\" el_class=\"\" el_style=\"\"][bt_image image=\"76\" caption_title=\"Paragliding\" caption_text=\"Enjoy the sky\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"On Shore\" headline=\"Special Events\" headline_size=\"medium\" dash=\"top\" subheadline=\"Enjoy the thrill on the sky with our parasailing team and feel the California sun on your face. The team will help you get your adrenaline high and will be capuring your moments on a high-definition camera.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_ea2f\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"s7_e67b\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9f3\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_slider height=\"auto\" auto_play=\"\" hide_arrows=\"\" hide_paging=\"btSliderHidePaging\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/6\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1088\" caption_text=\"\" size=\"\" shape=\"circle\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][/bt_image][bt_header superheadline=\"MPYC\" headline=\"Mission\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][bt_column_inner width=\"5/6\"][bt_text]\n<blockquote>To connect our members and our diverse community to the boundless recreational opportunities and proper stewardship of the Monterey Bay and the Pacific Ocean.</blockquote>\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/6\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1088\" caption_text=\"\" size=\"\" shape=\"circle\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][/bt_image][bt_header superheadline=\"MPYC\" headline=\"Vision\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][bt_column_inner width=\"5/6\"][bt_text]\n<blockquote>To actively promote the Monterey Peninsula Yacht Club as a prominent West Coast destination of choice for Corinthian spirit yacht racing, recreational boating, rowing and cruising.</blockquote>\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/6\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1088\" caption_text=\"\" size=\"\" shape=\"circle\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][/bt_image][bt_header superheadline=\"MPYC\" headline=\"Commitment\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][bt_column_inner width=\"5/6\"][bt_text]\n<blockquote>To supporting a diverse membership that fosters inclusiveness, camaraderie, friendship, community involvement and leadership with the goal of advancing safe and sustainable maritime ecological practices.</blockquote>\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][/bt_slider][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/3\" align=\"left\" vertical_align=\"btMiddleVertical\" border=\"no_border\" cell_padding=\"btDoublePadding\" animation=\"animate animate-fadein\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"#e5e5e5\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"MPYC\" headline=\"Clubhouse\" headline_size=\"large\" dash=\"bottom\" subheadline=\"Our clubhouse on Wharf 2 is home to the Kilpatrick Dining Room and Bear Flag Bar. We are proud to host a variety of events, seminars and our summer sailing camp.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_button text=\"READ MORE\" icon=\"no_icon\" url=\"\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"ExtraSmall\" width=\"Normal\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"2/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_slider height=\"auto\" auto_play=\"\" hide_arrows=\"\" hide_paging=\"btSliderHidePaging\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"81\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"82\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"83\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"84\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"85\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][/bt_slider][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"yes\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"7/12\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Club News\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Latest happenings and announcements at MPYC\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"5/12\"][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_latest_posts number=\"3\" category=\"\" format=\"horizontal\" post_type=\"blog\" show_excerpt=\"yes\" show_date=\"yes\" show_author=\"yes\" el_class=\"\" el_style=\"\"][/bt_latest_posts][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"1092\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"0.3\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Follow us\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Find out what\'s new at MPYC\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_icons][bt_icon icon=\"fa_f09a\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f099\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f16d\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_column][/bt_row][/bt_section]','MPYC Home','','inherit','closed','closed','','837-autosave-v1','','','2021-04-08 03:39:09','2021-04-08 03:39:09','',837,'http://mpycdev.theomggroup.com/?p=1008',0,'revision','',0);
INSERT INTO `smrc_posts` VALUES (1009,1,'2021-04-06 05:14:48','2021-04-06 05:14:48','','burgee-sm-2','','inherit','open','closed','','burgee-sm-2','','','2021-04-06 05:14:48','2021-04-06 05:14:48','',837,'http://mpycdev.theomggroup.com/wp-content/uploads/2021/04/burgee-sm-2.png',0,'attachment','image/png',0);
INSERT INTO `smrc_posts` VALUES (1012,1,'2021-04-06 05:31:14','2021-04-06 05:31:14','','mpyclogo-rd','','inherit','open','closed','','mpyclogo-rd','','','2021-04-06 05:31:14','2021-04-06 05:31:14','',0,'http://mpycdev.theomggroup.com/wp-content/uploads/2021/04/mpyclogo-rd.png',0,'attachment','image/png',0);
INSERT INTO `smrc_posts` VALUES (1013,1,'2021-04-06 05:38:45','2021-04-06 05:38:45','[bt_section layout=\"wide\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\"][bt_slider height=\"auto\" auto_play=\"5000\" hide_arrows=\"\" hide_paging=\"\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item image=\"843\" el_class=\"btLightSkin\" el_style=\"\"][bt_row_inner][bt_column_inner width=\"1/2\"][/bt_column_inner][bt_column_inner width=\"1/2\" align=\"left\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"animate animate-fadein animate-moveleft\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_hr top_spaced=\"topExtraSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Welcome to the\r\n<i>Hotel California</i>\" headline_size=\"huge\" dash=\"bottom\" subheadline=\"At the heart of San Diego, on one of the most colorful beaches, right next to the Pacific ocean, lies the Hotel California, most famous for it’s easy going staff and vacation you’ll never forget...\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_button text=\"Check our OFFERS & DEALS\" icon=\"fa_f061\" url=\"#special-offers\" target=\"no_target\" style=\"Outline\" icon_position=\"Left\" color=\"Accent\" size=\"Small\" width=\"Normal\" el_class=\"\" el_style=\"\"][/bt_button][bt_button text=\"BOOK NOW\" icon=\"no_icon\" url=\"rooms\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Normal\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topSpaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][/bt_slider_item][bt_slider_item image=\"844\" el_class=\"\" el_style=\"\"][bt_row_inner][bt_column_inner width=\"2/3\" align=\"left\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"animate animate-fadein animate-moveleft\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_hr top_spaced=\"topExtraSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"The art of meeting your\r\nhighest <i>expectations</i>\" headline_size=\"huge\" dash=\"bottom\" subheadline=\"Enjoying the sun and sea has never been so easy. At the beach of hotel California, you\'ll find our most complete service, great seaside and easy going staff.\r\nHotel California. Everything. Right where you need it.\" el_class=\"\" el_style=\"max-width: 660px;\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_button text=\"Check our OFFERS & DEALS\" icon=\"fa_f061\" url=\"#special-offers\" target=\"no_target\" style=\"Outline\" icon_position=\"Left\" color=\"Accent\" size=\"Small\" width=\"Normal\" el_class=\"\" el_style=\"\"][/bt_button][bt_button text=\"BOOK NOW\" icon=\"no_icon\" url=\"rooms\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Normal\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topSpaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"1/3\"][/bt_column_inner][/bt_row_inner][/bt_slider_item][bt_slider_item image=\"843\" el_class=\"btLightSkin\" el_style=\"\"][bt_row_inner][bt_column_inner width=\"1/2\"][/bt_column_inner][bt_column_inner width=\"1/2\" align=\"left\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"animate animate-fadein animate-moveleft\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_hr top_spaced=\"topExtraSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Unique <i>location,</i>\r\nservice and stay\" headline_size=\"huge\" dash=\"bottom\" subheadline=\"At the heart of San Diego, on one of the most colorful beaches, right next to the Pacific ocean, lies the Hotel California, most famous for it’s easy going staff and vacation you’ll never forget...\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_button text=\"Check our OFFERS & DEALS\" icon=\"fa_f061\" url=\"#special-offers\" target=\"no_target\" style=\"Outline\" icon_position=\"Left\" color=\"Accent\" size=\"Small\" width=\"Normal\" el_class=\"\" el_style=\"\"][/bt_button][bt_button text=\"BOOK NOW\" icon=\"no_icon\" url=\"rooms\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Normal\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topSpaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][/bt_slider_item][/bt_slider][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"dark\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#000080\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\"][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\r\n<h4><em>founded 1953</em></h4>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSemiSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"2/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Rooms & Suites\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"If you chose to stay with us you will enjoy modern home comforts in a traditional setting. Whether you are looking for a short weekend break or a longer holiday, we offer a range of packages that will cater for all.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/3\"][/bt_column][/bt_row][bt_row][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"44\" caption_text=\"View\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption=\"Double room\" show_titles=\"no\" caption_title=\"Room details\"][bt_header superheadline=\"Room features\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"cs_ea18\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9c2\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea2c\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1c\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"DELUXE\" headline=\"Double Room\" headline_size=\"medium\" dash=\"top\" subheadline=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer mollis viverra diam ac ornare. Donec rhoncus nisi in felis congue, at pulvinar nibh dapibus.\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/2\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"room-details\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"1/2\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"43\" caption_text=\"\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"Room features\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"cs_ea18\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9c5\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1a\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1c\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"EXECUTIVE\" headline=\"Junior Suite\" headline_size=\"medium\" dash=\"top\" subheadline=\"Sed sodales tortor non metus iaculis, non commodo ipsum mattis. Ut at dolor elit. Proin dignissim, lacus eget ullamcorper consectetur, mauris mi mattis elit sagittis.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/2\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"room-details\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"1/2\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"42\" caption_text=\"\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"Room features\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"cs_ea30\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea18\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea2d\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1c\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"DELUXE\" headline=\"Double Room\" headline_size=\"medium\" dash=\"top\" subheadline=\"Mauris suscipit lectus pellentesque ante efficitur, at dignissim tellus maximus. Sed leo magna, faucibus non ante non, pulvinar scelerisque magna sit elis.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/2\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"room-details\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"1/2\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"41\" caption_text=\"\" size=\"medium\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"Room features\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"cs_ea18\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1b\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea21\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1c\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"DELUXE\" headline=\"Family Room\" headline_size=\"medium\" dash=\"top\" subheadline=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer mollis viverra diam ac ornare. Donec rhoncus nisi in felis congue, at pulvinar nibh dapibus.\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/2\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"room-details\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"1/2\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"66\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"0.7\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"special-offers\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"323\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"width: 60px; margin-top: -28px;\"][/bt_image][bt_hr top_spaced=\"topSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"1/2\"][/bt_column][bt_column width=\"1/2\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"GET THE BEST RATE\" headline=\"Offers <i>&</i> Deals\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"If you chose to stay with us you will enjoy modern home comforts in a traditional setting. Whether you are looking for a short weekend break or a longer holiday, we offer a range of packages that we think cater for all.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"1/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"0.7\" inner_background_color=\"#ffffff\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"67\" caption_text=\"Get together\" size=\"\" shape=\"square\" url=\"special-offers\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"Family vacation\" show_titles=\"no\"][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"Get together\" headline=\"Family vacation\" headline_size=\"medium\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"fa_f207\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f13d\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f1eb\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f206\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f1ae\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\r\n\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Integer mollis viverra diam ac ornare. Donec rhoncus nisi in felis congue, at pulvinar nibh dapibus.\r\n\r\n[/bt_text][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/3\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"special-offers\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"2/3\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"0.7\" inner_background_color=\"#ffffff\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"68\" caption_text=\"Celebrate\" size=\"\" shape=\"square\" url=\"special-offers\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"Newlyweds weekend\" show_titles=\"no\"][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"Celebrate\" headline=\"Newlyweds weekend\" headline_size=\"medium\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"fa_f1ba\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f072\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f228\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\r\n\r\nSed ut metus eu neque commodo fringilla imperdiet sed nibh. Sed volutpat fermentum ligula, et maximus ex ultricies sit amet.\r\n\r\n[/bt_text][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/3\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"special-offers\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"2/3\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"0.7\" inner_background_color=\"#ffffff\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"725\" caption_text=\"Procrastinate\" size=\"\" shape=\"square\" url=\"special-offers\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"Lazy weekend\" show_titles=\"no\"][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"Procrastinate\" headline=\"Lazy weekend\" headline_size=\"medium\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"fa_f1ba\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f072\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f1eb\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f000\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f185\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\r\n\r\nPhasellus non bibendum augue. Duis nibh felis, volutpat vitae pulvinar at, tincidunt eget mi. Donec venenatis condimentum fermentum.\r\n\r\n[/bt_text][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/3\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"special-offers\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"2/3\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#e5e5e5\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"322\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"width: 60px; margin-top: -28px;\"][/bt_image][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"7/12\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Activities\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Phasellus blandit a massa vitae congue. Nam ex massa, mattis ut sapien sit amet, consequat sodales risus. Sed interdum, ligula et lobortis faucibus, sem sem placerat augue, eget scelerisque turpis lorem et tellus.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][/bt_column][bt_column width=\"5/12\"][/bt_column][/bt_row][/bt_section][bt_section layout=\"wide\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"dark\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#e5e5e5\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"73\" caption_title=\"Beach voleyball\" caption_text=\"Enjoy the game\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"ENJOY THE GAME\" headline=\"Beach Voleyball\" headline_size=\"medium\" dash=\"top\" subheadline=\"Beach volleyball is ouy visitors favourite sport, highly enjoyable for everyone young or old. Just gather your team on the beach and find the opponents in a matter of minutes. And show what you can do, be a winner!\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_e9ac\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e040\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e041\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"74\" el_class=\"\" el_style=\"\"][bt_image image=\"74\" caption_title=\"Horseback riding\" caption_text=\"Enjoy the beach\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Enjoy the beach\" headline=\"Horseback riding\" headline_size=\"medium\" dash=\"top\" subheadline=\"How about a lazy afternoon with your friends on a hors, while the sun goes down? If you want to chill out, our horse riding team will teach you in a matter of minutes and help you wind down after a good day on the sun.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_ea13\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1e\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e05b\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"75\" el_class=\"\" el_style=\"\"][bt_image image=\"75\" caption_title=\"Waterskiing\" caption_text=\"Enjoy the sea\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Enjoy the sea\" headline=\"Waterskiing\" headline_size=\"medium\" dash=\"top\" subheadline=\"If you are a big fan of water sports, then why not try the waterskiing or waterboarding? At hotel California you will find there\'s an amateur champoionship every year. Rated as the most fun activity by our visitors.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_e05b\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9a3\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9e5\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"76\" el_class=\"\" el_style=\"\"][bt_image image=\"76\" caption_title=\"Paragliding\" caption_text=\"Enjoy the sky\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Enjoy the sky\" headline=\"Parasailing\" headline_size=\"medium\" dash=\"top\" subheadline=\"Enjoy the thrill on the sky with our parasailing team and feel the California sun on your face. The team will help you get your adrenaline high and will be capuring your moments on a high-definition camera.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_ea2f\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"s7_e67b\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9f3\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_slider height=\"auto\" auto_play=\"\" hide_arrows=\"\" hide_paging=\"btSliderHidePaging\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/6\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"78\" caption_text=\"\" size=\"\" shape=\"circle\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][bt_header superheadline=\"June 2016\" headline=\"Alan Jones\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][/bt_column_inner][bt_column_inner width=\"5/6\"][bt_text]\r\n<blockquote>If you chose to stay with us you will enjoy modern home comforts in a traditional setting. Whether you are looking for a short weekend break or a longer holiday, we offer a range of packages that we think cater for all.</blockquote>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/6\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"447\" caption_text=\"\" size=\"\" shape=\"circle\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][/bt_image][bt_header superheadline=\"July 2016\" headline=\"Adrianne White\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][bt_column_inner width=\"5/6\"][bt_text]\r\n<blockquote>If you chose to stay with us you will enjoy modern home comforts in a traditional setting. Whether you are looking for a short weekend break or a longer holiday, we offer a range of packages that we think cater for all.</blockquote>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/1\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_text]\r\n<blockquote>Our mission: to connect our members and our diverse community to the boundless recreational opportunities and proper stewardship of the Monterey Bay and the Pacific Ocean.</blockquote>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][/bt_slider][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/3\" align=\"left\" vertical_align=\"btMiddleVertical\" border=\"no_border\" cell_padding=\"btDoublePadding\" animation=\"animate animate-fadein\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"#e5e5e5\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"IN A NUTSHELL\" headline=\"Hotel California\" headline_size=\"large\" dash=\"bottom\" subheadline=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer mollis viverra diam ac ornare. Donec rhoncus nisi in felis congue, at pulvinar nibh dapibus.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_button text=\"READ MORE\" icon=\"no_icon\" url=\"\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"ExtraSmall\" width=\"Normal\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"2/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_slider height=\"auto\" auto_play=\"\" hide_arrows=\"\" hide_paging=\"btSliderHidePaging\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"81\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"82\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"83\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"84\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"85\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][/bt_slider][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\"][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"2/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_gmaps latitude=\"36.602383\" longitude=\"-121.879245 \" zoom=\"11\" icon=\"342\" height=\"400px\" primary_color=\"\" secondary_color=\"\" water_color=\"\" custom_style=\"WwogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJhZG1pbmlzdHJhdGl2ZSIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImxhYmVscy50ZXh0LmZpbGwiLAogICAgICAgICJzdHlsZXJzIjogWwogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAiY29sb3IiOiAiIzQ0NDQ0NCIKICAgICAgICAgICAgfQogICAgICAgIF0KICAgIH0sCiAgICB7CiAgICAgICAgImZlYXR1cmVUeXBlIjogImxhbmRzY2FwZSIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJjb2xvciI6ICIjZjJmMmYyIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAicG9pIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiYWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInZpc2liaWxpdHkiOiAib2ZmIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAicm9hZCIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJzYXR1cmF0aW9uIjogLTEwMAogICAgICAgICAgICB9LAogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAibGlnaHRuZXNzIjogNDUKICAgICAgICAgICAgfQogICAgICAgIF0KICAgIH0sCiAgICB7CiAgICAgICAgImZlYXR1cmVUeXBlIjogInJvYWQuaGlnaHdheSIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogInNpbXBsaWZpZWQiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJyb2FkLmhpZ2h3YXkiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJnZW9tZXRyeSIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogInNpbXBsaWZpZWQiCiAgICAgICAgICAgIH0sCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJjb2xvciI6ICIjZDc3Mjg3IgogICAgICAgICAgICB9LAogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAibGlnaHRuZXNzIjogIjAiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJyb2FkLmhpZ2h3YXkiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJsYWJlbHMudGV4dCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogIm9uIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAicm9hZC5oaWdod2F5IiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAibGFiZWxzLmljb24iLAogICAgICAgICJzdHlsZXJzIjogWwogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAidmlzaWJpbGl0eSI6ICJvbiIKICAgICAgICAgICAgfQogICAgICAgIF0KICAgIH0sCiAgICB7CiAgICAgICAgImZlYXR1cmVUeXBlIjogInJvYWQuYXJ0ZXJpYWwiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJhbGwiLAogICAgICAgICJzdHlsZXJzIjogWwogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAidmlzaWJpbGl0eSI6ICJvbiIKICAgICAgICAgICAgfQogICAgICAgIF0KICAgIH0sCiAgICB7CiAgICAgICAgImZlYXR1cmVUeXBlIjogInJvYWQuYXJ0ZXJpYWwiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJnZW9tZXRyeS5maWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgImNvbG9yIjogIiNkNzcyODciCiAgICAgICAgICAgIH0sCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJsaWdodG5lc3MiOiAiNzUiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJyb2FkLmFydGVyaWFsIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAibGFiZWxzLmljb24iLAogICAgICAgICJzdHlsZXJzIjogWwogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAidmlzaWJpbGl0eSI6ICJvZmYiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJyb2FkLmxvY2FsIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiZ2VvbWV0cnkuZmlsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJsaWdodG5lc3MiOiAiNzUiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJ0cmFuc2l0IiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiYWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInZpc2liaWxpdHkiOiAib2ZmIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAidHJhbnNpdC5saW5lIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiYWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInZpc2liaWxpdHkiOiAib24iCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJ0cmFuc2l0LnN0YXRpb24uYnVzIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiYWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInZpc2liaWxpdHkiOiAib24iCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJ0cmFuc2l0LnN0YXRpb24ucmFpbCIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogIm9uIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAidHJhbnNpdC5zdGF0aW9uLnJhaWwiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJsYWJlbHMuaWNvbiIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ3ZWlnaHQiOiAiMC4wMSIKICAgICAgICAgICAgfSwKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgImh1ZSI6ICIjZmYwMDM1IgogICAgICAgICAgICB9LAogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAibGlnaHRuZXNzIjogIjAiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJ3YXRlciIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogIm9uIgogICAgICAgICAgICB9LAogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAiY29sb3IiOiAiIzgwZTRkOCIKICAgICAgICAgICAgfSwKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgImxpZ2h0bmVzcyI6ICIyNSIKICAgICAgICAgICAgfSwKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInNhdHVyYXRpb24iOiAiLTIzIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfQpd\" el_class=\"\" el_style=\"\" api_key=\"AIzaSyBda9LxQ-Wztqsk6aFI7SkcdiypnKTPfiI\"][/bt_gmaps][/bt_column][bt_column width=\"1/3\" align=\"left\" vertical_align=\"btMiddleVertical\" border=\"no_border\" cell_padding=\"btDoublePadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"#e5e5e5\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_service icon=\"s7_e638\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoMediumSize\" url=\"\" headline=\"Address\" dash=\"\" text=\"3216 W Highland Boulevard\r\nSan Diego, California\" el_class=\"\" el_style=\"\" superheadline=\"\"][/bt_service][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSemiSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_service icon=\"s7_e670\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoMediumSize\" url=\"\" headline=\"Phone\" dash=\"\" text=\"+555-40-220-6672\" el_class=\"\" el_style=\"\" superheadline=\"\"][/bt_service][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSemiSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_service icon=\"s7_e63a\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoMediumSize\" url=\"\" headline=\"Email\" dash=\"\" text=\"office@california.hotel\" el_class=\"\" el_style=\"\" superheadline=\"\"][/bt_service][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"yes\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"7/12\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"News <i>&</i> Blog\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Morbi pharetra faucibus purus, nec pretium enim luctus quis. Pellentesque aliquet venenatis ante, quis pretium neque tristique eget. Integer in luctus urna. Aenean rutrum sodales pharetra.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"5/12\"][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_latest_posts number=\"3\" category=\"\" format=\"horizontal\" post_type=\"blog\" show_excerpt=\"yes\" show_date=\"yes\" show_author=\"yes\" el_class=\"\" el_style=\"\"][/bt_latest_posts][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"321\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"0.3\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Follow us\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Find out what’s hot and new, and get discounts for being a loyal customer and a Hotel California fan.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_icons][bt_icon icon=\"fa_f09a\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f099\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f0d5\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_column][/bt_row][/bt_section]','Street view','\n ','inherit','closed','closed','','837-revision-v1','','','2021-04-06 05:38:45','2021-04-06 05:38:45','',837,'http://mpycdev.theomggroup.com/?p=1013',0,'revision','',0);
INSERT INTO `smrc_posts` VALUES (1014,1,'2021-04-06 05:41:01','2021-04-06 05:41:01','[bt_section layout=\"wide\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\"][bt_slider height=\"auto\" auto_play=\"5000\" hide_arrows=\"\" hide_paging=\"\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item image=\"843\" el_class=\"btLightSkin\" el_style=\"\"][bt_row_inner][bt_column_inner width=\"1/2\"][/bt_column_inner][bt_column_inner width=\"1/2\" align=\"left\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"animate animate-fadein animate-moveleft\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_hr top_spaced=\"topExtraSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Welcome to the\r\n<i>Hotel California</i>\" headline_size=\"huge\" dash=\"bottom\" subheadline=\"At the heart of San Diego, on one of the most colorful beaches, right next to the Pacific ocean, lies the Hotel California, most famous for it’s easy going staff and vacation you’ll never forget...\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_button text=\"Check our OFFERS & DEALS\" icon=\"fa_f061\" url=\"#special-offers\" target=\"no_target\" style=\"Outline\" icon_position=\"Left\" color=\"Accent\" size=\"Small\" width=\"Normal\" el_class=\"\" el_style=\"\"][/bt_button][bt_button text=\"BOOK NOW\" icon=\"no_icon\" url=\"rooms\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Normal\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topSpaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][/bt_slider_item][bt_slider_item image=\"844\" el_class=\"\" el_style=\"\"][bt_row_inner][bt_column_inner width=\"2/3\" align=\"left\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"animate animate-fadein animate-moveleft\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_hr top_spaced=\"topExtraSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"The art of meeting your\r\nhighest <i>expectations</i>\" headline_size=\"huge\" dash=\"bottom\" subheadline=\"Enjoying the sun and sea has never been so easy. At the beach of hotel California, you\'ll find our most complete service, great seaside and easy going staff.\r\nHotel California. Everything. Right where you need it.\" el_class=\"\" el_style=\"max-width: 660px;\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_button text=\"Check our OFFERS & DEALS\" icon=\"fa_f061\" url=\"#special-offers\" target=\"no_target\" style=\"Outline\" icon_position=\"Left\" color=\"Accent\" size=\"Small\" width=\"Normal\" el_class=\"\" el_style=\"\"][/bt_button][bt_button text=\"BOOK NOW\" icon=\"no_icon\" url=\"rooms\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Normal\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topSpaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"1/3\"][/bt_column_inner][/bt_row_inner][/bt_slider_item][bt_slider_item image=\"843\" el_class=\"btLightSkin\" el_style=\"\"][bt_row_inner][bt_column_inner width=\"1/2\"][/bt_column_inner][bt_column_inner width=\"1/2\" align=\"left\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"animate animate-fadein animate-moveleft\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_hr top_spaced=\"topExtraSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Unique <i>location,</i>\r\nservice and stay\" headline_size=\"huge\" dash=\"bottom\" subheadline=\"At the heart of San Diego, on one of the most colorful beaches, right next to the Pacific ocean, lies the Hotel California, most famous for it’s easy going staff and vacation you’ll never forget...\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_button text=\"Check our OFFERS & DEALS\" icon=\"fa_f061\" url=\"#special-offers\" target=\"no_target\" style=\"Outline\" icon_position=\"Left\" color=\"Accent\" size=\"Small\" width=\"Normal\" el_class=\"\" el_style=\"\"][/bt_button][bt_button text=\"BOOK NOW\" icon=\"no_icon\" url=\"rooms\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Normal\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topSpaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][/bt_slider_item][/bt_slider][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"dark\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#000080\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\"][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\r\n<h4><em>founded 1953</em></h4>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSemiSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"2/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Rooms & Suites\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"If you chose to stay with us you will enjoy modern home comforts in a traditional setting. Whether you are looking for a short weekend break or a longer holiday, we offer a range of packages that will cater for all.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/3\"][/bt_column][/bt_row][bt_row][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"44\" caption_text=\"View\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption=\"Double room\" show_titles=\"no\" caption_title=\"Room details\"][bt_header superheadline=\"Room features\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"cs_ea18\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9c2\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea2c\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1c\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"DELUXE\" headline=\"Double Room\" headline_size=\"medium\" dash=\"top\" subheadline=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer mollis viverra diam ac ornare. Donec rhoncus nisi in felis congue, at pulvinar nibh dapibus.\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/2\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"room-details\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"1/2\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"43\" caption_text=\"\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"Room features\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"cs_ea18\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9c5\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1a\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1c\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"EXECUTIVE\" headline=\"Junior Suite\" headline_size=\"medium\" dash=\"top\" subheadline=\"Sed sodales tortor non metus iaculis, non commodo ipsum mattis. Ut at dolor elit. Proin dignissim, lacus eget ullamcorper consectetur, mauris mi mattis elit sagittis.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/2\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"room-details\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"1/2\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"42\" caption_text=\"\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"Room features\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"cs_ea30\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea18\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea2d\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1c\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"DELUXE\" headline=\"Double Room\" headline_size=\"medium\" dash=\"top\" subheadline=\"Mauris suscipit lectus pellentesque ante efficitur, at dignissim tellus maximus. Sed leo magna, faucibus non ante non, pulvinar scelerisque magna sit elis.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/2\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"room-details\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"1/2\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"41\" caption_text=\"\" size=\"medium\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"Room features\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"cs_ea18\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1b\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea21\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1c\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"DELUXE\" headline=\"Family Room\" headline_size=\"medium\" dash=\"top\" subheadline=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer mollis viverra diam ac ornare. Donec rhoncus nisi in felis congue, at pulvinar nibh dapibus.\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/2\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"room-details\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"1/2\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"66\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"0.7\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"special-offers\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"323\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"width: 60px; margin-top: -28px;\"][/bt_image][bt_hr top_spaced=\"topSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"1/2\"][/bt_column][bt_column width=\"1/2\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"GET THE BEST RATE\" headline=\"Offers <i>&</i> Deals\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"If you chose to stay with us you will enjoy modern home comforts in a traditional setting. Whether you are looking for a short weekend break or a longer holiday, we offer a range of packages that we think cater for all.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"1/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"0.7\" inner_background_color=\"#ffffff\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"67\" caption_text=\"Get together\" size=\"\" shape=\"square\" url=\"special-offers\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"Family vacation\" show_titles=\"no\"][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"Get together\" headline=\"Family vacation\" headline_size=\"medium\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"fa_f207\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f13d\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f1eb\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f206\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f1ae\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\r\n\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Integer mollis viverra diam ac ornare. Donec rhoncus nisi in felis congue, at pulvinar nibh dapibus.\r\n\r\n[/bt_text][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/3\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"special-offers\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"2/3\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"0.7\" inner_background_color=\"#ffffff\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"68\" caption_text=\"Celebrate\" size=\"\" shape=\"square\" url=\"special-offers\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"Newlyweds weekend\" show_titles=\"no\"][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"Celebrate\" headline=\"Newlyweds weekend\" headline_size=\"medium\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"fa_f1ba\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f072\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f228\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\r\n\r\nSed ut metus eu neque commodo fringilla imperdiet sed nibh. Sed volutpat fermentum ligula, et maximus ex ultricies sit amet.\r\n\r\n[/bt_text][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/3\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"special-offers\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"2/3\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"0.7\" inner_background_color=\"#ffffff\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"725\" caption_text=\"Procrastinate\" size=\"\" shape=\"square\" url=\"special-offers\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"Lazy weekend\" show_titles=\"no\"][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"Procrastinate\" headline=\"Lazy weekend\" headline_size=\"medium\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"fa_f1ba\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f072\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f1eb\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f000\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f185\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\r\n\r\nPhasellus non bibendum augue. Duis nibh felis, volutpat vitae pulvinar at, tincidunt eget mi. Donec venenatis condimentum fermentum.\r\n\r\n[/bt_text][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/3\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"special-offers\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"2/3\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#e5e5e5\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"322\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"width: 60px; margin-top: -28px;\"][/bt_image][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"7/12\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Activities\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Phasellus blandit a massa vitae congue. Nam ex massa, mattis ut sapien sit amet, consequat sodales risus. Sed interdum, ligula et lobortis faucibus, sem sem placerat augue, eget scelerisque turpis lorem et tellus.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][/bt_column][bt_column width=\"5/12\"][/bt_column][/bt_row][/bt_section][bt_section layout=\"wide\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"dark\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#e5e5e5\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"73\" caption_title=\"Beach voleyball\" caption_text=\"Enjoy the game\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"ENJOY THE GAME\" headline=\"Beach Voleyball\" headline_size=\"medium\" dash=\"top\" subheadline=\"Beach volleyball is ouy visitors favourite sport, highly enjoyable for everyone young or old. Just gather your team on the beach and find the opponents in a matter of minutes. And show what you can do, be a winner!\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_e9ac\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e040\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e041\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"74\" el_class=\"\" el_style=\"\"][bt_image image=\"74\" caption_title=\"Horseback riding\" caption_text=\"Enjoy the beach\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Enjoy the beach\" headline=\"Horseback riding\" headline_size=\"medium\" dash=\"top\" subheadline=\"How about a lazy afternoon with your friends on a hors, while the sun goes down? If you want to chill out, our horse riding team will teach you in a matter of minutes and help you wind down after a good day on the sun.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_ea13\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1e\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e05b\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"75\" el_class=\"\" el_style=\"\"][bt_image image=\"75\" caption_title=\"Waterskiing\" caption_text=\"Enjoy the sea\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Enjoy the sea\" headline=\"Waterskiing\" headline_size=\"medium\" dash=\"top\" subheadline=\"If you are a big fan of water sports, then why not try the waterskiing or waterboarding? At hotel California you will find there\'s an amateur champoionship every year. Rated as the most fun activity by our visitors.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_e05b\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9a3\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9e5\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"76\" el_class=\"\" el_style=\"\"][bt_image image=\"76\" caption_title=\"Paragliding\" caption_text=\"Enjoy the sky\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Enjoy the sky\" headline=\"Parasailing\" headline_size=\"medium\" dash=\"top\" subheadline=\"Enjoy the thrill on the sky with our parasailing team and feel the California sun on your face. The team will help you get your adrenaline high and will be capuring your moments on a high-definition camera.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_ea2f\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"s7_e67b\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9f3\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_slider height=\"auto\" auto_play=\"\" hide_arrows=\"\" hide_paging=\"btSliderHidePaging\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/1\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_text]\r\n<blockquote>Our mission: to connect our members and our diverse community to the boundless recreational opportunities and propers stewardship of the Monterey Bay and Pacific Ocean.</blockquote>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/6\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"447\" caption_text=\"\" size=\"\" shape=\"circle\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][/bt_image][bt_header superheadline=\"July 2016\" headline=\"Adrianne White\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][bt_column_inner width=\"5/6\"][bt_text]\r\n<blockquote>If you chose to stay with us you will enjoy modern home comforts in a traditional setting. Whether you are looking for a short weekend break or a longer holiday, we offer a range of packages that we think cater for all.</blockquote>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/1\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_text]\r\n<blockquote>Our mission: to connect our members and our diverse community to the boundless recreational opportunities and proper stewardship of the Monterey Bay and the Pacific Ocean.</blockquote>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][/bt_slider][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/3\" align=\"left\" vertical_align=\"btMiddleVertical\" border=\"no_border\" cell_padding=\"btDoublePadding\" animation=\"animate animate-fadein\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"#e5e5e5\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"IN A NUTSHELL\" headline=\"Hotel California\" headline_size=\"large\" dash=\"bottom\" subheadline=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer mollis viverra diam ac ornare. Donec rhoncus nisi in felis congue, at pulvinar nibh dapibus.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_button text=\"READ MORE\" icon=\"no_icon\" url=\"\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"ExtraSmall\" width=\"Normal\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"2/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_slider height=\"auto\" auto_play=\"\" hide_arrows=\"\" hide_paging=\"btSliderHidePaging\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"81\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"82\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"83\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"84\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"85\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][/bt_slider][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\"][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"2/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_gmaps latitude=\"36.602383\" longitude=\"-121.879245 \" zoom=\"11\" icon=\"342\" height=\"400px\" primary_color=\"\" secondary_color=\"\" water_color=\"\" custom_style=\"WwogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJhZG1pbmlzdHJhdGl2ZSIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImxhYmVscy50ZXh0LmZpbGwiLAogICAgICAgICJzdHlsZXJzIjogWwogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAiY29sb3IiOiAiIzQ0NDQ0NCIKICAgICAgICAgICAgfQogICAgICAgIF0KICAgIH0sCiAgICB7CiAgICAgICAgImZlYXR1cmVUeXBlIjogImxhbmRzY2FwZSIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJjb2xvciI6ICIjZjJmMmYyIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAicG9pIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiYWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInZpc2liaWxpdHkiOiAib2ZmIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAicm9hZCIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJzYXR1cmF0aW9uIjogLTEwMAogICAgICAgICAgICB9LAogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAibGlnaHRuZXNzIjogNDUKICAgICAgICAgICAgfQogICAgICAgIF0KICAgIH0sCiAgICB7CiAgICAgICAgImZlYXR1cmVUeXBlIjogInJvYWQuaGlnaHdheSIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogInNpbXBsaWZpZWQiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJyb2FkLmhpZ2h3YXkiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJnZW9tZXRyeSIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogInNpbXBsaWZpZWQiCiAgICAgICAgICAgIH0sCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJjb2xvciI6ICIjZDc3Mjg3IgogICAgICAgICAgICB9LAogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAibGlnaHRuZXNzIjogIjAiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJyb2FkLmhpZ2h3YXkiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJsYWJlbHMudGV4dCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogIm9uIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAicm9hZC5oaWdod2F5IiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAibGFiZWxzLmljb24iLAogICAgICAgICJzdHlsZXJzIjogWwogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAidmlzaWJpbGl0eSI6ICJvbiIKICAgICAgICAgICAgfQogICAgICAgIF0KICAgIH0sCiAgICB7CiAgICAgICAgImZlYXR1cmVUeXBlIjogInJvYWQuYXJ0ZXJpYWwiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJhbGwiLAogICAgICAgICJzdHlsZXJzIjogWwogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAidmlzaWJpbGl0eSI6ICJvbiIKICAgICAgICAgICAgfQogICAgICAgIF0KICAgIH0sCiAgICB7CiAgICAgICAgImZlYXR1cmVUeXBlIjogInJvYWQuYXJ0ZXJpYWwiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJnZW9tZXRyeS5maWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgImNvbG9yIjogIiNkNzcyODciCiAgICAgICAgICAgIH0sCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJsaWdodG5lc3MiOiAiNzUiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJyb2FkLmFydGVyaWFsIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAibGFiZWxzLmljb24iLAogICAgICAgICJzdHlsZXJzIjogWwogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAidmlzaWJpbGl0eSI6ICJvZmYiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJyb2FkLmxvY2FsIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiZ2VvbWV0cnkuZmlsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJsaWdodG5lc3MiOiAiNzUiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJ0cmFuc2l0IiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiYWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInZpc2liaWxpdHkiOiAib2ZmIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAidHJhbnNpdC5saW5lIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiYWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInZpc2liaWxpdHkiOiAib24iCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJ0cmFuc2l0LnN0YXRpb24uYnVzIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiYWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInZpc2liaWxpdHkiOiAib24iCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJ0cmFuc2l0LnN0YXRpb24ucmFpbCIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogIm9uIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAidHJhbnNpdC5zdGF0aW9uLnJhaWwiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJsYWJlbHMuaWNvbiIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ3ZWlnaHQiOiAiMC4wMSIKICAgICAgICAgICAgfSwKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgImh1ZSI6ICIjZmYwMDM1IgogICAgICAgICAgICB9LAogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAibGlnaHRuZXNzIjogIjAiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJ3YXRlciIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogIm9uIgogICAgICAgICAgICB9LAogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAiY29sb3IiOiAiIzgwZTRkOCIKICAgICAgICAgICAgfSwKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgImxpZ2h0bmVzcyI6ICIyNSIKICAgICAgICAgICAgfSwKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInNhdHVyYXRpb24iOiAiLTIzIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfQpd\" el_class=\"\" el_style=\"\" api_key=\"AIzaSyBda9LxQ-Wztqsk6aFI7SkcdiypnKTPfiI\"][/bt_gmaps][/bt_column][bt_column width=\"1/3\" align=\"left\" vertical_align=\"btMiddleVertical\" border=\"no_border\" cell_padding=\"btDoublePadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"#e5e5e5\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_service icon=\"s7_e638\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoMediumSize\" url=\"\" headline=\"Address\" dash=\"\" text=\"3216 W Highland Boulevard\r\nSan Diego, California\" el_class=\"\" el_style=\"\" superheadline=\"\"][/bt_service][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSemiSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_service icon=\"s7_e670\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoMediumSize\" url=\"\" headline=\"Phone\" dash=\"\" text=\"+555-40-220-6672\" el_class=\"\" el_style=\"\" superheadline=\"\"][/bt_service][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSemiSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_service icon=\"s7_e63a\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoMediumSize\" url=\"\" headline=\"Email\" dash=\"\" text=\"office@california.hotel\" el_class=\"\" el_style=\"\" superheadline=\"\"][/bt_service][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"yes\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"7/12\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"News <i>&</i> Blog\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Morbi pharetra faucibus purus, nec pretium enim luctus quis. Pellentesque aliquet venenatis ante, quis pretium neque tristique eget. Integer in luctus urna. Aenean rutrum sodales pharetra.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"5/12\"][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_latest_posts number=\"3\" category=\"\" format=\"horizontal\" post_type=\"blog\" show_excerpt=\"yes\" show_date=\"yes\" show_author=\"yes\" el_class=\"\" el_style=\"\"][/bt_latest_posts][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"321\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"0.3\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Follow us\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Find out what’s hot and new, and get discounts for being a loyal customer and a Hotel California fan.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_icons][bt_icon icon=\"fa_f09a\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f099\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f0d5\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_column][/bt_row][/bt_section]','Street view','\n ','inherit','closed','closed','','837-revision-v1','','','2021-04-06 05:41:01','2021-04-06 05:41:01','',837,'http://mpycdev.theomggroup.com/?p=1014',0,'revision','',0);
INSERT INTO `smrc_posts` VALUES (1015,1,'2021-04-06 05:42:18','2021-04-06 05:42:18','[bt_section layout=\"wide\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\"][bt_slider height=\"auto\" auto_play=\"5000\" hide_arrows=\"\" hide_paging=\"\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item image=\"843\" el_class=\"btLightSkin\" el_style=\"\"][bt_row_inner][bt_column_inner width=\"1/2\"][/bt_column_inner][bt_column_inner width=\"1/2\" align=\"left\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"animate animate-fadein animate-moveleft\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_hr top_spaced=\"topExtraSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Welcome to the\r\n<i>Hotel California</i>\" headline_size=\"huge\" dash=\"bottom\" subheadline=\"At the heart of San Diego, on one of the most colorful beaches, right next to the Pacific ocean, lies the Hotel California, most famous for it’s easy going staff and vacation you’ll never forget...\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_button text=\"Check our OFFERS & DEALS\" icon=\"fa_f061\" url=\"#special-offers\" target=\"no_target\" style=\"Outline\" icon_position=\"Left\" color=\"Accent\" size=\"Small\" width=\"Normal\" el_class=\"\" el_style=\"\"][/bt_button][bt_button text=\"BOOK NOW\" icon=\"no_icon\" url=\"rooms\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Normal\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topSpaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][/bt_slider_item][bt_slider_item image=\"844\" el_class=\"\" el_style=\"\"][bt_row_inner][bt_column_inner width=\"2/3\" align=\"left\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"animate animate-fadein animate-moveleft\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_hr top_spaced=\"topExtraSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"The art of meeting your\r\nhighest <i>expectations</i>\" headline_size=\"huge\" dash=\"bottom\" subheadline=\"Enjoying the sun and sea has never been so easy. At the beach of hotel California, you\'ll find our most complete service, great seaside and easy going staff.\r\nHotel California. Everything. Right where you need it.\" el_class=\"\" el_style=\"max-width: 660px;\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_button text=\"Check our OFFERS & DEALS\" icon=\"fa_f061\" url=\"#special-offers\" target=\"no_target\" style=\"Outline\" icon_position=\"Left\" color=\"Accent\" size=\"Small\" width=\"Normal\" el_class=\"\" el_style=\"\"][/bt_button][bt_button text=\"BOOK NOW\" icon=\"no_icon\" url=\"rooms\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Normal\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topSpaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"1/3\"][/bt_column_inner][/bt_row_inner][/bt_slider_item][bt_slider_item image=\"843\" el_class=\"btLightSkin\" el_style=\"\"][bt_row_inner][bt_column_inner width=\"1/2\"][/bt_column_inner][bt_column_inner width=\"1/2\" align=\"left\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"animate animate-fadein animate-moveleft\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_hr top_spaced=\"topExtraSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Unique <i>location,</i>\r\nservice and stay\" headline_size=\"huge\" dash=\"bottom\" subheadline=\"At the heart of San Diego, on one of the most colorful beaches, right next to the Pacific ocean, lies the Hotel California, most famous for it’s easy going staff and vacation you’ll never forget...\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_button text=\"Check our OFFERS & DEALS\" icon=\"fa_f061\" url=\"#special-offers\" target=\"no_target\" style=\"Outline\" icon_position=\"Left\" color=\"Accent\" size=\"Small\" width=\"Normal\" el_class=\"\" el_style=\"\"][/bt_button][bt_button text=\"BOOK NOW\" icon=\"no_icon\" url=\"rooms\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Normal\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topSpaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][/bt_slider_item][/bt_slider][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"dark\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#000080\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\"][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\r\n<h4><em>founded 1953</em></h4>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSemiSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"2/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Rooms & Suites\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"If you chose to stay with us you will enjoy modern home comforts in a traditional setting. Whether you are looking for a short weekend break or a longer holiday, we offer a range of packages that will cater for all.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/3\"][/bt_column][/bt_row][bt_row][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"44\" caption_text=\"View\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption=\"Double room\" show_titles=\"no\" caption_title=\"Room details\"][bt_header superheadline=\"Room features\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"cs_ea18\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9c2\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea2c\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1c\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"DELUXE\" headline=\"Double Room\" headline_size=\"medium\" dash=\"top\" subheadline=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer mollis viverra diam ac ornare. Donec rhoncus nisi in felis congue, at pulvinar nibh dapibus.\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/2\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"room-details\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"1/2\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"43\" caption_text=\"\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"Room features\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"cs_ea18\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9c5\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1a\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1c\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"EXECUTIVE\" headline=\"Junior Suite\" headline_size=\"medium\" dash=\"top\" subheadline=\"Sed sodales tortor non metus iaculis, non commodo ipsum mattis. Ut at dolor elit. Proin dignissim, lacus eget ullamcorper consectetur, mauris mi mattis elit sagittis.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/2\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"room-details\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"1/2\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"42\" caption_text=\"\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"Room features\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"cs_ea30\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea18\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea2d\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1c\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"DELUXE\" headline=\"Double Room\" headline_size=\"medium\" dash=\"top\" subheadline=\"Mauris suscipit lectus pellentesque ante efficitur, at dignissim tellus maximus. Sed leo magna, faucibus non ante non, pulvinar scelerisque magna sit elis.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/2\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"room-details\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"1/2\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"41\" caption_text=\"\" size=\"medium\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"Room features\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"cs_ea18\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1b\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea21\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1c\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"DELUXE\" headline=\"Family Room\" headline_size=\"medium\" dash=\"top\" subheadline=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer mollis viverra diam ac ornare. Donec rhoncus nisi in felis congue, at pulvinar nibh dapibus.\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/2\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"room-details\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"1/2\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"66\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"0.7\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"special-offers\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"323\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"width: 60px; margin-top: -28px;\"][/bt_image][bt_hr top_spaced=\"topSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"1/2\"][/bt_column][bt_column width=\"1/2\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"GET THE BEST RATE\" headline=\"Offers <i>&</i> Deals\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"If you chose to stay with us you will enjoy modern home comforts in a traditional setting. Whether you are looking for a short weekend break or a longer holiday, we offer a range of packages that we think cater for all.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"1/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"0.7\" inner_background_color=\"#ffffff\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"67\" caption_text=\"Get together\" size=\"\" shape=\"square\" url=\"special-offers\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"Family vacation\" show_titles=\"no\"][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"Get together\" headline=\"Family vacation\" headline_size=\"medium\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"fa_f207\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f13d\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f1eb\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f206\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f1ae\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\r\n\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Integer mollis viverra diam ac ornare. Donec rhoncus nisi in felis congue, at pulvinar nibh dapibus.\r\n\r\n[/bt_text][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/3\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"special-offers\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"2/3\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"0.7\" inner_background_color=\"#ffffff\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"68\" caption_text=\"Celebrate\" size=\"\" shape=\"square\" url=\"special-offers\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"Newlyweds weekend\" show_titles=\"no\"][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"Celebrate\" headline=\"Newlyweds weekend\" headline_size=\"medium\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"fa_f1ba\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f072\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f228\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\r\n\r\nSed ut metus eu neque commodo fringilla imperdiet sed nibh. Sed volutpat fermentum ligula, et maximus ex ultricies sit amet.\r\n\r\n[/bt_text][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/3\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"special-offers\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"2/3\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"0.7\" inner_background_color=\"#ffffff\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"725\" caption_text=\"Procrastinate\" size=\"\" shape=\"square\" url=\"special-offers\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"Lazy weekend\" show_titles=\"no\"][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"Procrastinate\" headline=\"Lazy weekend\" headline_size=\"medium\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"fa_f1ba\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f072\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f1eb\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f000\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f185\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\r\n\r\nPhasellus non bibendum augue. Duis nibh felis, volutpat vitae pulvinar at, tincidunt eget mi. Donec venenatis condimentum fermentum.\r\n\r\n[/bt_text][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/3\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"special-offers\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"2/3\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#e5e5e5\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"322\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"width: 60px; margin-top: -28px;\"][/bt_image][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"7/12\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Activities\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Phasellus blandit a massa vitae congue. Nam ex massa, mattis ut sapien sit amet, consequat sodales risus. Sed interdum, ligula et lobortis faucibus, sem sem placerat augue, eget scelerisque turpis lorem et tellus.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][/bt_column][bt_column width=\"5/12\"][/bt_column][/bt_row][/bt_section][bt_section layout=\"wide\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"dark\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#e5e5e5\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"73\" caption_title=\"Beach voleyball\" caption_text=\"Enjoy the game\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"ENJOY THE GAME\" headline=\"Beach Voleyball\" headline_size=\"medium\" dash=\"top\" subheadline=\"Beach volleyball is ouy visitors favourite sport, highly enjoyable for everyone young or old. Just gather your team on the beach and find the opponents in a matter of minutes. And show what you can do, be a winner!\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_e9ac\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e040\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e041\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"74\" el_class=\"\" el_style=\"\"][bt_image image=\"74\" caption_title=\"Horseback riding\" caption_text=\"Enjoy the beach\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Enjoy the beach\" headline=\"Horseback riding\" headline_size=\"medium\" dash=\"top\" subheadline=\"How about a lazy afternoon with your friends on a hors, while the sun goes down? If you want to chill out, our horse riding team will teach you in a matter of minutes and help you wind down after a good day on the sun.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_ea13\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1e\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e05b\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"75\" el_class=\"\" el_style=\"\"][bt_image image=\"75\" caption_title=\"Waterskiing\" caption_text=\"Enjoy the sea\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Enjoy the sea\" headline=\"Waterskiing\" headline_size=\"medium\" dash=\"top\" subheadline=\"If you are a big fan of water sports, then why not try the waterskiing or waterboarding? At hotel California you will find there\'s an amateur champoionship every year. Rated as the most fun activity by our visitors.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_e05b\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9a3\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9e5\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"76\" el_class=\"\" el_style=\"\"][bt_image image=\"76\" caption_title=\"Paragliding\" caption_text=\"Enjoy the sky\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Enjoy the sky\" headline=\"Parasailing\" headline_size=\"medium\" dash=\"top\" subheadline=\"Enjoy the thrill on the sky with our parasailing team and feel the California sun on your face. The team will help you get your adrenaline high and will be capuring your moments on a high-definition camera.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_ea2f\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"s7_e67b\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9f3\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_slider height=\"auto\" auto_play=\"\" hide_arrows=\"\" hide_paging=\"btSliderHidePaging\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/6\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"78\" caption_text=\"\" size=\"\" shape=\"circle\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][bt_header superheadline=\"June 2016\" headline=\"Alan Jones\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][/bt_column_inner][bt_column_inner width=\"5/6\"][bt_text]\r\n<blockquote>If you chose to stay with us you will enjoy modern home comforts in a traditional setting. Whether you are looking for a short weekend break or a longer holiday, we offer a range of packages that we think cater for all.</blockquote>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/6\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"447\" caption_text=\"\" size=\"\" shape=\"circle\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][/bt_image][bt_header superheadline=\"July 2016\" headline=\"Adrianne White\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][bt_column_inner width=\"5/6\"][bt_text]\r\n<blockquote>If you chose to stay with us you will enjoy modern home comforts in a traditional setting. Whether you are looking for a short weekend break or a longer holiday, we offer a range of packages that we think cater for all.</blockquote>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/1\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_text]\r\n<blockquote>Our mission: to connect our members and our diverse community to the boundless recreational opportunities and proper stewardship of the Monterey Bay and the Pacific Ocean.</blockquote>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][/bt_slider][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/3\" align=\"left\" vertical_align=\"btMiddleVertical\" border=\"no_border\" cell_padding=\"btDoublePadding\" animation=\"animate animate-fadein\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"#e5e5e5\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"IN A NUTSHELL\" headline=\"Hotel California\" headline_size=\"large\" dash=\"bottom\" subheadline=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer mollis viverra diam ac ornare. Donec rhoncus nisi in felis congue, at pulvinar nibh dapibus.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_button text=\"READ MORE\" icon=\"no_icon\" url=\"\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"ExtraSmall\" width=\"Normal\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"2/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_slider height=\"auto\" auto_play=\"\" hide_arrows=\"\" hide_paging=\"btSliderHidePaging\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"81\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"82\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"83\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"84\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"85\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][/bt_slider][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\"][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"2/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_gmaps latitude=\"36.602383\" longitude=\"-121.879245 \" zoom=\"11\" icon=\"342\" height=\"400px\" primary_color=\"\" secondary_color=\"\" water_color=\"\" custom_style=\"WwogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJhZG1pbmlzdHJhdGl2ZSIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImxhYmVscy50ZXh0LmZpbGwiLAogICAgICAgICJzdHlsZXJzIjogWwogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAiY29sb3IiOiAiIzQ0NDQ0NCIKICAgICAgICAgICAgfQogICAgICAgIF0KICAgIH0sCiAgICB7CiAgICAgICAgImZlYXR1cmVUeXBlIjogImxhbmRzY2FwZSIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJjb2xvciI6ICIjZjJmMmYyIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAicG9pIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiYWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInZpc2liaWxpdHkiOiAib2ZmIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAicm9hZCIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJzYXR1cmF0aW9uIjogLTEwMAogICAgICAgICAgICB9LAogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAibGlnaHRuZXNzIjogNDUKICAgICAgICAgICAgfQogICAgICAgIF0KICAgIH0sCiAgICB7CiAgICAgICAgImZlYXR1cmVUeXBlIjogInJvYWQuaGlnaHdheSIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogInNpbXBsaWZpZWQiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJyb2FkLmhpZ2h3YXkiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJnZW9tZXRyeSIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogInNpbXBsaWZpZWQiCiAgICAgICAgICAgIH0sCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJjb2xvciI6ICIjZDc3Mjg3IgogICAgICAgICAgICB9LAogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAibGlnaHRuZXNzIjogIjAiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJyb2FkLmhpZ2h3YXkiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJsYWJlbHMudGV4dCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogIm9uIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAicm9hZC5oaWdod2F5IiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAibGFiZWxzLmljb24iLAogICAgICAgICJzdHlsZXJzIjogWwogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAidmlzaWJpbGl0eSI6ICJvbiIKICAgICAgICAgICAgfQogICAgICAgIF0KICAgIH0sCiAgICB7CiAgICAgICAgImZlYXR1cmVUeXBlIjogInJvYWQuYXJ0ZXJpYWwiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJhbGwiLAogICAgICAgICJzdHlsZXJzIjogWwogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAidmlzaWJpbGl0eSI6ICJvbiIKICAgICAgICAgICAgfQogICAgICAgIF0KICAgIH0sCiAgICB7CiAgICAgICAgImZlYXR1cmVUeXBlIjogInJvYWQuYXJ0ZXJpYWwiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJnZW9tZXRyeS5maWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgImNvbG9yIjogIiNkNzcyODciCiAgICAgICAgICAgIH0sCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJsaWdodG5lc3MiOiAiNzUiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJyb2FkLmFydGVyaWFsIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAibGFiZWxzLmljb24iLAogICAgICAgICJzdHlsZXJzIjogWwogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAidmlzaWJpbGl0eSI6ICJvZmYiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJyb2FkLmxvY2FsIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiZ2VvbWV0cnkuZmlsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJsaWdodG5lc3MiOiAiNzUiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJ0cmFuc2l0IiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiYWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInZpc2liaWxpdHkiOiAib2ZmIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAidHJhbnNpdC5saW5lIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiYWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInZpc2liaWxpdHkiOiAib24iCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJ0cmFuc2l0LnN0YXRpb24uYnVzIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiYWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInZpc2liaWxpdHkiOiAib24iCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJ0cmFuc2l0LnN0YXRpb24ucmFpbCIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogIm9uIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAidHJhbnNpdC5zdGF0aW9uLnJhaWwiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJsYWJlbHMuaWNvbiIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ3ZWlnaHQiOiAiMC4wMSIKICAgICAgICAgICAgfSwKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgImh1ZSI6ICIjZmYwMDM1IgogICAgICAgICAgICB9LAogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAibGlnaHRuZXNzIjogIjAiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJ3YXRlciIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogIm9uIgogICAgICAgICAgICB9LAogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAiY29sb3IiOiAiIzgwZTRkOCIKICAgICAgICAgICAgfSwKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgImxpZ2h0bmVzcyI6ICIyNSIKICAgICAgICAgICAgfSwKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInNhdHVyYXRpb24iOiAiLTIzIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfQpd\" el_class=\"\" el_style=\"\" api_key=\"AIzaSyBda9LxQ-Wztqsk6aFI7SkcdiypnKTPfiI\"][/bt_gmaps][/bt_column][bt_column width=\"1/3\" align=\"left\" vertical_align=\"btMiddleVertical\" border=\"no_border\" cell_padding=\"btDoublePadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"#e5e5e5\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_service icon=\"s7_e638\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoMediumSize\" url=\"\" headline=\"Address\" dash=\"\" text=\"3216 W Highland Boulevard\r\nSan Diego, California\" el_class=\"\" el_style=\"\" superheadline=\"\"][/bt_service][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSemiSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_service icon=\"s7_e670\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoMediumSize\" url=\"\" headline=\"Phone\" dash=\"\" text=\"+555-40-220-6672\" el_class=\"\" el_style=\"\" superheadline=\"\"][/bt_service][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSemiSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_service icon=\"s7_e63a\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoMediumSize\" url=\"\" headline=\"Email\" dash=\"\" text=\"office@california.hotel\" el_class=\"\" el_style=\"\" superheadline=\"\"][/bt_service][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"yes\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"7/12\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"News <i>&</i> Blog\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Morbi pharetra faucibus purus, nec pretium enim luctus quis. Pellentesque aliquet venenatis ante, quis pretium neque tristique eget. Integer in luctus urna. Aenean rutrum sodales pharetra.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"5/12\"][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_latest_posts number=\"3\" category=\"\" format=\"horizontal\" post_type=\"blog\" show_excerpt=\"yes\" show_date=\"yes\" show_author=\"yes\" el_class=\"\" el_style=\"\"][/bt_latest_posts][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"321\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"0.3\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Follow us\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Find out what’s hot and new, and get discounts for being a loyal customer and a Hotel California fan.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_icons][bt_icon icon=\"fa_f09a\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f099\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f0d5\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_column][/bt_row][/bt_section]','Street view','\n ','inherit','closed','closed','','837-revision-v1','','','2021-04-06 05:42:18','2021-04-06 05:42:18','',837,'http://mpycdev.theomggroup.com/?p=1015',0,'revision','',0);
INSERT INTO `smrc_posts` VALUES (1025,1,'2021-04-07 04:22:27','2021-04-07 04:22:27','','mpyc-slider01','','inherit','open','closed','','mpyc-slider01','','','2021-04-07 04:22:27','2021-04-07 04:22:27','',0,'http://mpycdev.theomggroup.com/wp-content/uploads/2021/04/mpyc-slider01.jpg',0,'attachment','image/jpeg',0);
INSERT INTO `smrc_posts` VALUES (1026,1,'2021-04-07 04:22:32','2021-04-07 04:22:32','','mpyc-slider02','','inherit','open','closed','','mpyc-slider02','','','2021-04-07 04:22:32','2021-04-07 04:22:32','',0,'http://mpycdev.theomggroup.com/wp-content/uploads/2021/04/mpyc-slider02.jpg',0,'attachment','image/jpeg',0);
INSERT INTO `smrc_posts` VALUES (1027,1,'2021-04-07 04:22:37','2021-04-07 04:22:37','','mpyc-slider03','','inherit','open','closed','','mpyc-slider03','','','2021-04-07 04:22:37','2021-04-07 04:22:37','',0,'http://mpycdev.theomggroup.com/wp-content/uploads/2021/04/mpyc-slider03.jpg',0,'attachment','image/jpeg',0);
INSERT INTO `smrc_posts` VALUES (1028,1,'2021-04-07 04:22:41','2021-04-07 04:22:41','','mpyc-slider04','','inherit','open','closed','','mpyc-slider04','','','2021-04-07 04:22:41','2021-04-07 04:22:41','',0,'http://mpycdev.theomggroup.com/wp-content/uploads/2021/04/mpyc-slider04.jpg',0,'attachment','image/jpeg',0);
INSERT INTO `smrc_posts` VALUES (1029,1,'2021-04-07 04:24:22','2021-04-07 04:24:22','[bt_section layout=\"wide\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\"][bt_slider height=\"auto\" auto_play=\"5000\" hide_arrows=\"\" hide_paging=\"\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item image=\"1025\" el_class=\"btLightSkin\" el_style=\"\"][bt_row_inner][bt_column_inner width=\"1/2\"][/bt_column_inner][bt_column_inner width=\"1/2\" align=\"left\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"animate animate-fadein animate-moveleft\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_hr top_spaced=\"topExtraSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Welcome to the\r\n<i>Hotel California</i>\" headline_size=\"huge\" dash=\"bottom\" subheadline=\"At the heart of San Diego, on one of the most colorful beaches, right next to the Pacific ocean, lies the Hotel California, most famous for it’s easy going staff and vacation you’ll never forget...\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topSpaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][/bt_slider_item][bt_slider_item image=\"844\" el_class=\"\" el_style=\"\"][bt_row_inner][bt_column_inner width=\"2/3\" align=\"left\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"animate animate-fadein animate-moveleft\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_hr top_spaced=\"topExtraSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"The art of meeting your\r\nhighest <i>expectations</i>\" headline_size=\"huge\" dash=\"bottom\" subheadline=\"Enjoying the sun and sea has never been so easy. At the beach of hotel California, you\'ll find our most complete service, great seaside and easy going staff.\r\nHotel California. Everything. Right where you need it.\" el_class=\"\" el_style=\"max-width: 660px;\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_button text=\"Check our OFFERS & DEALS\" icon=\"fa_f061\" url=\"#special-offers\" target=\"no_target\" style=\"Outline\" icon_position=\"Left\" color=\"Accent\" size=\"Small\" width=\"Normal\" el_class=\"\" el_style=\"\"][/bt_button][bt_button text=\"BOOK NOW\" icon=\"no_icon\" url=\"rooms\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Normal\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topSpaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"1/3\"][/bt_column_inner][/bt_row_inner][/bt_slider_item][bt_slider_item image=\"843\" el_class=\"btLightSkin\" el_style=\"\"][bt_row_inner][bt_column_inner width=\"1/2\"][/bt_column_inner][bt_column_inner width=\"1/2\" align=\"left\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"animate animate-fadein animate-moveleft\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_hr top_spaced=\"topExtraSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Unique <i>location,</i>\r\nservice and stay\" headline_size=\"huge\" dash=\"bottom\" subheadline=\"At the heart of San Diego, on one of the most colorful beaches, right next to the Pacific ocean, lies the Hotel California, most famous for it’s easy going staff and vacation you’ll never forget...\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_button text=\"Check our OFFERS & DEALS\" icon=\"fa_f061\" url=\"#special-offers\" target=\"no_target\" style=\"Outline\" icon_position=\"Left\" color=\"Accent\" size=\"Small\" width=\"Normal\" el_class=\"\" el_style=\"\"][/bt_button][bt_button text=\"BOOK NOW\" icon=\"no_icon\" url=\"rooms\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Normal\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topSpaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][/bt_slider_item][/bt_slider][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"dark\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#000080\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\"][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\r\n<h4><em>founded 1953</em></h4>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSemiSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"2/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Rooms & Suites\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"If you chose to stay with us you will enjoy modern home comforts in a traditional setting. Whether you are looking for a short weekend break or a longer holiday, we offer a range of packages that will cater for all.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/3\"][/bt_column][/bt_row][bt_row][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"44\" caption_text=\"View\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption=\"Double room\" show_titles=\"no\" caption_title=\"Room details\"][bt_header superheadline=\"Room features\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"cs_ea18\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9c2\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea2c\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1c\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"DELUXE\" headline=\"Double Room\" headline_size=\"medium\" dash=\"top\" subheadline=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer mollis viverra diam ac ornare. Donec rhoncus nisi in felis congue, at pulvinar nibh dapibus.\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/2\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"room-details\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"1/2\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"43\" caption_text=\"\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"Room features\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"cs_ea18\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9c5\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1a\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1c\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"EXECUTIVE\" headline=\"Junior Suite\" headline_size=\"medium\" dash=\"top\" subheadline=\"Sed sodales tortor non metus iaculis, non commodo ipsum mattis. Ut at dolor elit. Proin dignissim, lacus eget ullamcorper consectetur, mauris mi mattis elit sagittis.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/2\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"room-details\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"1/2\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"42\" caption_text=\"\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"Room features\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"cs_ea30\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea18\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea2d\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1c\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"DELUXE\" headline=\"Double Room\" headline_size=\"medium\" dash=\"top\" subheadline=\"Mauris suscipit lectus pellentesque ante efficitur, at dignissim tellus maximus. Sed leo magna, faucibus non ante non, pulvinar scelerisque magna sit elis.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/2\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"room-details\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"1/2\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"41\" caption_text=\"\" size=\"medium\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"Room features\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"cs_ea18\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1b\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea21\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1c\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"DELUXE\" headline=\"Family Room\" headline_size=\"medium\" dash=\"top\" subheadline=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer mollis viverra diam ac ornare. Donec rhoncus nisi in felis congue, at pulvinar nibh dapibus.\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/2\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"room-details\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"1/2\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"66\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"0.7\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"special-offers\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"323\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"width: 60px; margin-top: -28px;\"][/bt_image][bt_hr top_spaced=\"topSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"1/2\"][/bt_column][bt_column width=\"1/2\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"GET THE BEST RATE\" headline=\"Offers <i>&</i> Deals\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"If you chose to stay with us you will enjoy modern home comforts in a traditional setting. Whether you are looking for a short weekend break or a longer holiday, we offer a range of packages that we think cater for all.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"1/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"0.7\" inner_background_color=\"#ffffff\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"67\" caption_text=\"Get together\" size=\"\" shape=\"square\" url=\"special-offers\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"Family vacation\" show_titles=\"no\"][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"Get together\" headline=\"Family vacation\" headline_size=\"medium\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"fa_f207\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f13d\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f1eb\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f206\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f1ae\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\r\n\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Integer mollis viverra diam ac ornare. Donec rhoncus nisi in felis congue, at pulvinar nibh dapibus.\r\n\r\n[/bt_text][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/3\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"special-offers\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"2/3\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"0.7\" inner_background_color=\"#ffffff\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"68\" caption_text=\"Celebrate\" size=\"\" shape=\"square\" url=\"special-offers\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"Newlyweds weekend\" show_titles=\"no\"][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"Celebrate\" headline=\"Newlyweds weekend\" headline_size=\"medium\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"fa_f1ba\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f072\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f228\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\r\n\r\nSed ut metus eu neque commodo fringilla imperdiet sed nibh. Sed volutpat fermentum ligula, et maximus ex ultricies sit amet.\r\n\r\n[/bt_text][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/3\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"special-offers\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"2/3\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"0.7\" inner_background_color=\"#ffffff\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"725\" caption_text=\"Procrastinate\" size=\"\" shape=\"square\" url=\"special-offers\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"Lazy weekend\" show_titles=\"no\"][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"Procrastinate\" headline=\"Lazy weekend\" headline_size=\"medium\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"fa_f1ba\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f072\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f1eb\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f000\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f185\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\r\n\r\nPhasellus non bibendum augue. Duis nibh felis, volutpat vitae pulvinar at, tincidunt eget mi. Donec venenatis condimentum fermentum.\r\n\r\n[/bt_text][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/3\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"special-offers\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"2/3\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#e5e5e5\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"322\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"width: 60px; margin-top: -28px;\"][/bt_image][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"7/12\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Activities\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Phasellus blandit a massa vitae congue. Nam ex massa, mattis ut sapien sit amet, consequat sodales risus. Sed interdum, ligula et lobortis faucibus, sem sem placerat augue, eget scelerisque turpis lorem et tellus.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][/bt_column][bt_column width=\"5/12\"][/bt_column][/bt_row][/bt_section][bt_section layout=\"wide\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"dark\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#e5e5e5\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"73\" caption_title=\"Beach voleyball\" caption_text=\"Enjoy the game\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"ENJOY THE GAME\" headline=\"Beach Voleyball\" headline_size=\"medium\" dash=\"top\" subheadline=\"Beach volleyball is ouy visitors favourite sport, highly enjoyable for everyone young or old. Just gather your team on the beach and find the opponents in a matter of minutes. And show what you can do, be a winner!\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_e9ac\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e040\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e041\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"74\" el_class=\"\" el_style=\"\"][bt_image image=\"74\" caption_title=\"Horseback riding\" caption_text=\"Enjoy the beach\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Enjoy the beach\" headline=\"Horseback riding\" headline_size=\"medium\" dash=\"top\" subheadline=\"How about a lazy afternoon with your friends on a hors, while the sun goes down? If you want to chill out, our horse riding team will teach you in a matter of minutes and help you wind down after a good day on the sun.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_ea13\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1e\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e05b\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"75\" el_class=\"\" el_style=\"\"][bt_image image=\"75\" caption_title=\"Waterskiing\" caption_text=\"Enjoy the sea\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Enjoy the sea\" headline=\"Waterskiing\" headline_size=\"medium\" dash=\"top\" subheadline=\"If you are a big fan of water sports, then why not try the waterskiing or waterboarding? At hotel California you will find there\'s an amateur champoionship every year. Rated as the most fun activity by our visitors.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_e05b\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9a3\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9e5\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"76\" el_class=\"\" el_style=\"\"][bt_image image=\"76\" caption_title=\"Paragliding\" caption_text=\"Enjoy the sky\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Enjoy the sky\" headline=\"Parasailing\" headline_size=\"medium\" dash=\"top\" subheadline=\"Enjoy the thrill on the sky with our parasailing team and feel the California sun on your face. The team will help you get your adrenaline high and will be capuring your moments on a high-definition camera.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_ea2f\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"s7_e67b\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9f3\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_slider height=\"auto\" auto_play=\"\" hide_arrows=\"\" hide_paging=\"btSliderHidePaging\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/6\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"78\" caption_text=\"\" size=\"\" shape=\"circle\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][bt_header superheadline=\"June 2016\" headline=\"Alan Jones\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][/bt_column_inner][bt_column_inner width=\"5/6\"][bt_text]\r\n<blockquote>If you chose to stay with us you will enjoy modern home comforts in a traditional setting. Whether you are looking for a short weekend break or a longer holiday, we offer a range of packages that we think cater for all.</blockquote>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/6\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"447\" caption_text=\"\" size=\"\" shape=\"circle\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][/bt_image][bt_header superheadline=\"July 2016\" headline=\"Adrianne White\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][bt_column_inner width=\"5/6\"][bt_text]\r\n<blockquote>If you chose to stay with us you will enjoy modern home comforts in a traditional setting. Whether you are looking for a short weekend break or a longer holiday, we offer a range of packages that we think cater for all.</blockquote>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/1\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_text]\r\n<blockquote>Our mission: to connect our members and our diverse community to the boundless recreational opportunities and proper stewardship of the Monterey Bay and the Pacific Ocean.</blockquote>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][/bt_slider][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/3\" align=\"left\" vertical_align=\"btMiddleVertical\" border=\"no_border\" cell_padding=\"btDoublePadding\" animation=\"animate animate-fadein\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"#e5e5e5\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"IN A NUTSHELL\" headline=\"Hotel California\" headline_size=\"large\" dash=\"bottom\" subheadline=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer mollis viverra diam ac ornare. Donec rhoncus nisi in felis congue, at pulvinar nibh dapibus.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_button text=\"READ MORE\" icon=\"no_icon\" url=\"\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"ExtraSmall\" width=\"Normal\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"2/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_slider height=\"auto\" auto_play=\"\" hide_arrows=\"\" hide_paging=\"btSliderHidePaging\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"81\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"82\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"83\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"84\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"85\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][/bt_slider][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\"][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"2/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_gmaps latitude=\"36.602383\" longitude=\"-121.879245 \" zoom=\"11\" icon=\"342\" height=\"400px\" primary_color=\"\" secondary_color=\"\" water_color=\"\" custom_style=\"WwogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJhZG1pbmlzdHJhdGl2ZSIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImxhYmVscy50ZXh0LmZpbGwiLAogICAgICAgICJzdHlsZXJzIjogWwogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAiY29sb3IiOiAiIzQ0NDQ0NCIKICAgICAgICAgICAgfQogICAgICAgIF0KICAgIH0sCiAgICB7CiAgICAgICAgImZlYXR1cmVUeXBlIjogImxhbmRzY2FwZSIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJjb2xvciI6ICIjZjJmMmYyIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAicG9pIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiYWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInZpc2liaWxpdHkiOiAib2ZmIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAicm9hZCIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJzYXR1cmF0aW9uIjogLTEwMAogICAgICAgICAgICB9LAogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAibGlnaHRuZXNzIjogNDUKICAgICAgICAgICAgfQogICAgICAgIF0KICAgIH0sCiAgICB7CiAgICAgICAgImZlYXR1cmVUeXBlIjogInJvYWQuaGlnaHdheSIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogInNpbXBsaWZpZWQiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJyb2FkLmhpZ2h3YXkiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJnZW9tZXRyeSIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogInNpbXBsaWZpZWQiCiAgICAgICAgICAgIH0sCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJjb2xvciI6ICIjZDc3Mjg3IgogICAgICAgICAgICB9LAogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAibGlnaHRuZXNzIjogIjAiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJyb2FkLmhpZ2h3YXkiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJsYWJlbHMudGV4dCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogIm9uIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAicm9hZC5oaWdod2F5IiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAibGFiZWxzLmljb24iLAogICAgICAgICJzdHlsZXJzIjogWwogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAidmlzaWJpbGl0eSI6ICJvbiIKICAgICAgICAgICAgfQogICAgICAgIF0KICAgIH0sCiAgICB7CiAgICAgICAgImZlYXR1cmVUeXBlIjogInJvYWQuYXJ0ZXJpYWwiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJhbGwiLAogICAgICAgICJzdHlsZXJzIjogWwogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAidmlzaWJpbGl0eSI6ICJvbiIKICAgICAgICAgICAgfQogICAgICAgIF0KICAgIH0sCiAgICB7CiAgICAgICAgImZlYXR1cmVUeXBlIjogInJvYWQuYXJ0ZXJpYWwiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJnZW9tZXRyeS5maWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgImNvbG9yIjogIiNkNzcyODciCiAgICAgICAgICAgIH0sCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJsaWdodG5lc3MiOiAiNzUiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJyb2FkLmFydGVyaWFsIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAibGFiZWxzLmljb24iLAogICAgICAgICJzdHlsZXJzIjogWwogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAidmlzaWJpbGl0eSI6ICJvZmYiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJyb2FkLmxvY2FsIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiZ2VvbWV0cnkuZmlsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJsaWdodG5lc3MiOiAiNzUiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJ0cmFuc2l0IiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiYWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInZpc2liaWxpdHkiOiAib2ZmIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAidHJhbnNpdC5saW5lIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiYWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInZpc2liaWxpdHkiOiAib24iCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJ0cmFuc2l0LnN0YXRpb24uYnVzIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiYWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInZpc2liaWxpdHkiOiAib24iCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJ0cmFuc2l0LnN0YXRpb24ucmFpbCIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogIm9uIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAidHJhbnNpdC5zdGF0aW9uLnJhaWwiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJsYWJlbHMuaWNvbiIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ3ZWlnaHQiOiAiMC4wMSIKICAgICAgICAgICAgfSwKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgImh1ZSI6ICIjZmYwMDM1IgogICAgICAgICAgICB9LAogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAibGlnaHRuZXNzIjogIjAiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJ3YXRlciIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogIm9uIgogICAgICAgICAgICB9LAogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAiY29sb3IiOiAiIzgwZTRkOCIKICAgICAgICAgICAgfSwKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgImxpZ2h0bmVzcyI6ICIyNSIKICAgICAgICAgICAgfSwKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInNhdHVyYXRpb24iOiAiLTIzIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfQpd\" el_class=\"\" el_style=\"\" api_key=\"AIzaSyBda9LxQ-Wztqsk6aFI7SkcdiypnKTPfiI\"][/bt_gmaps][/bt_column][bt_column width=\"1/3\" align=\"left\" vertical_align=\"btMiddleVertical\" border=\"no_border\" cell_padding=\"btDoublePadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"#e5e5e5\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_service icon=\"s7_e638\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoMediumSize\" url=\"\" headline=\"Address\" dash=\"\" text=\"3216 W Highland Boulevard\r\nSan Diego, California\" el_class=\"\" el_style=\"\" superheadline=\"\"][/bt_service][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSemiSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_service icon=\"s7_e670\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoMediumSize\" url=\"\" headline=\"Phone\" dash=\"\" text=\"+555-40-220-6672\" el_class=\"\" el_style=\"\" superheadline=\"\"][/bt_service][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSemiSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_service icon=\"s7_e63a\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoMediumSize\" url=\"\" headline=\"Email\" dash=\"\" text=\"office@california.hotel\" el_class=\"\" el_style=\"\" superheadline=\"\"][/bt_service][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"yes\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"7/12\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"News <i>&</i> Blog\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Morbi pharetra faucibus purus, nec pretium enim luctus quis. Pellentesque aliquet venenatis ante, quis pretium neque tristique eget. Integer in luctus urna. Aenean rutrum sodales pharetra.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"5/12\"][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_latest_posts number=\"3\" category=\"\" format=\"horizontal\" post_type=\"blog\" show_excerpt=\"yes\" show_date=\"yes\" show_author=\"yes\" el_class=\"\" el_style=\"\"][/bt_latest_posts][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"321\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"0.3\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Follow us\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Find out what’s hot and new, and get discounts for being a loyal customer and a Hotel California fan.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_icons][bt_icon icon=\"fa_f09a\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f099\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f0d5\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_column][/bt_row][/bt_section]','Street view','\n ','inherit','closed','closed','','837-revision-v1','','','2021-04-07 04:24:22','2021-04-07 04:24:22','',837,'http://mpycdev.theomggroup.com/?p=1029',0,'revision','',0);
INSERT INTO `smrc_posts` VALUES (1030,1,'2021-04-07 04:25:55','2021-04-07 04:25:55','[bt_section layout=\"wide\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\"][bt_slider height=\"auto\" auto_play=\"5000\" hide_arrows=\"\" hide_paging=\"\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item image=\"1025\" el_class=\"btLightSkin\" el_style=\"\"][bt_row_inner][bt_column_inner width=\"1/1\"][/bt_column_inner][/bt_row_inner][/bt_slider_item][bt_slider_item image=\"1027\" el_class=\"\" el_style=\"\"][bt_row_inner][bt_column_inner width=\"2/3\" align=\"left\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"animate animate-fadein animate-moveleft\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_hr top_spaced=\"topExtraSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"The art of meeting your\r\nhighest <i>expectations</i>\" headline_size=\"huge\" dash=\"bottom\" subheadline=\"Enjoying the sun and sea has never been so easy. At the beach of hotel California, you\'ll find our most complete service, great seaside and easy going staff.\r\nHotel California. Everything. Right where you need it.\" el_class=\"\" el_style=\"max-width: 660px;\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_button text=\"Check our OFFERS & DEALS\" icon=\"fa_f061\" url=\"#special-offers\" target=\"no_target\" style=\"Outline\" icon_position=\"Left\" color=\"Accent\" size=\"Small\" width=\"Normal\" el_class=\"\" el_style=\"\"][/bt_button][bt_button text=\"BOOK NOW\" icon=\"no_icon\" url=\"rooms\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Normal\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topSpaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"1/3\"][/bt_column_inner][/bt_row_inner][/bt_slider_item][bt_slider_item image=\"843\" el_class=\"btLightSkin\" el_style=\"\"][bt_row_inner][bt_column_inner width=\"1/2\"][/bt_column_inner][bt_column_inner width=\"1/2\" align=\"left\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"animate animate-fadein animate-moveleft\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_hr top_spaced=\"topExtraSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Unique <i>location,</i>\r\nservice and stay\" headline_size=\"huge\" dash=\"bottom\" subheadline=\"At the heart of San Diego, on one of the most colorful beaches, right next to the Pacific ocean, lies the Hotel California, most famous for it’s easy going staff and vacation you’ll never forget...\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_button text=\"Check our OFFERS & DEALS\" icon=\"fa_f061\" url=\"#special-offers\" target=\"no_target\" style=\"Outline\" icon_position=\"Left\" color=\"Accent\" size=\"Small\" width=\"Normal\" el_class=\"\" el_style=\"\"][/bt_button][bt_button text=\"BOOK NOW\" icon=\"no_icon\" url=\"rooms\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Normal\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topSpaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][/bt_slider_item][/bt_slider][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"dark\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#000080\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\"][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\r\n<h4><em>founded 1953</em></h4>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSemiSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"2/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Rooms & Suites\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"If you chose to stay with us you will enjoy modern home comforts in a traditional setting. Whether you are looking for a short weekend break or a longer holiday, we offer a range of packages that will cater for all.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/3\"][/bt_column][/bt_row][bt_row][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"44\" caption_text=\"View\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption=\"Double room\" show_titles=\"no\" caption_title=\"Room details\"][bt_header superheadline=\"Room features\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"cs_ea18\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9c2\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea2c\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1c\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"DELUXE\" headline=\"Double Room\" headline_size=\"medium\" dash=\"top\" subheadline=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer mollis viverra diam ac ornare. Donec rhoncus nisi in felis congue, at pulvinar nibh dapibus.\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/2\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"room-details\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"1/2\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"43\" caption_text=\"\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"Room features\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"cs_ea18\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9c5\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1a\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1c\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"EXECUTIVE\" headline=\"Junior Suite\" headline_size=\"medium\" dash=\"top\" subheadline=\"Sed sodales tortor non metus iaculis, non commodo ipsum mattis. Ut at dolor elit. Proin dignissim, lacus eget ullamcorper consectetur, mauris mi mattis elit sagittis.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/2\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"room-details\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"1/2\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"42\" caption_text=\"\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"Room features\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"cs_ea30\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea18\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea2d\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1c\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"DELUXE\" headline=\"Double Room\" headline_size=\"medium\" dash=\"top\" subheadline=\"Mauris suscipit lectus pellentesque ante efficitur, at dignissim tellus maximus. Sed leo magna, faucibus non ante non, pulvinar scelerisque magna sit elis.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/2\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"room-details\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"1/2\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"41\" caption_text=\"\" size=\"medium\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"Room features\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"cs_ea18\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1b\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea21\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1c\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"DELUXE\" headline=\"Family Room\" headline_size=\"medium\" dash=\"top\" subheadline=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer mollis viverra diam ac ornare. Donec rhoncus nisi in felis congue, at pulvinar nibh dapibus.\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/2\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"room-details\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"1/2\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"66\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"0.7\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"special-offers\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"323\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"width: 60px; margin-top: -28px;\"][/bt_image][bt_hr top_spaced=\"topSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"1/2\"][/bt_column][bt_column width=\"1/2\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"GET THE BEST RATE\" headline=\"Offers <i>&</i> Deals\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"If you chose to stay with us you will enjoy modern home comforts in a traditional setting. Whether you are looking for a short weekend break or a longer holiday, we offer a range of packages that we think cater for all.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"1/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"0.7\" inner_background_color=\"#ffffff\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"67\" caption_text=\"Get together\" size=\"\" shape=\"square\" url=\"special-offers\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"Family vacation\" show_titles=\"no\"][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"Get together\" headline=\"Family vacation\" headline_size=\"medium\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"fa_f207\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f13d\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f1eb\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f206\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f1ae\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\r\n\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Integer mollis viverra diam ac ornare. Donec rhoncus nisi in felis congue, at pulvinar nibh dapibus.\r\n\r\n[/bt_text][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/3\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"special-offers\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"2/3\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"0.7\" inner_background_color=\"#ffffff\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"68\" caption_text=\"Celebrate\" size=\"\" shape=\"square\" url=\"special-offers\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"Newlyweds weekend\" show_titles=\"no\"][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"Celebrate\" headline=\"Newlyweds weekend\" headline_size=\"medium\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"fa_f1ba\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f072\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f228\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\r\n\r\nSed ut metus eu neque commodo fringilla imperdiet sed nibh. Sed volutpat fermentum ligula, et maximus ex ultricies sit amet.\r\n\r\n[/bt_text][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/3\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"special-offers\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"2/3\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"0.7\" inner_background_color=\"#ffffff\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"725\" caption_text=\"Procrastinate\" size=\"\" shape=\"square\" url=\"special-offers\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"Lazy weekend\" show_titles=\"no\"][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"Procrastinate\" headline=\"Lazy weekend\" headline_size=\"medium\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"fa_f1ba\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f072\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f1eb\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f000\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f185\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\r\n\r\nPhasellus non bibendum augue. Duis nibh felis, volutpat vitae pulvinar at, tincidunt eget mi. Donec venenatis condimentum fermentum.\r\n\r\n[/bt_text][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/3\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"special-offers\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"2/3\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#e5e5e5\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"322\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"width: 60px; margin-top: -28px;\"][/bt_image][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"7/12\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Activities\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Phasellus blandit a massa vitae congue. Nam ex massa, mattis ut sapien sit amet, consequat sodales risus. Sed interdum, ligula et lobortis faucibus, sem sem placerat augue, eget scelerisque turpis lorem et tellus.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][/bt_column][bt_column width=\"5/12\"][/bt_column][/bt_row][/bt_section][bt_section layout=\"wide\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"dark\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#e5e5e5\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"73\" caption_title=\"Beach voleyball\" caption_text=\"Enjoy the game\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"ENJOY THE GAME\" headline=\"Beach Voleyball\" headline_size=\"medium\" dash=\"top\" subheadline=\"Beach volleyball is ouy visitors favourite sport, highly enjoyable for everyone young or old. Just gather your team on the beach and find the opponents in a matter of minutes. And show what you can do, be a winner!\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_e9ac\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e040\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e041\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"74\" el_class=\"\" el_style=\"\"][bt_image image=\"74\" caption_title=\"Horseback riding\" caption_text=\"Enjoy the beach\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Enjoy the beach\" headline=\"Horseback riding\" headline_size=\"medium\" dash=\"top\" subheadline=\"How about a lazy afternoon with your friends on a hors, while the sun goes down? If you want to chill out, our horse riding team will teach you in a matter of minutes and help you wind down after a good day on the sun.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_ea13\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1e\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e05b\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"75\" el_class=\"\" el_style=\"\"][bt_image image=\"75\" caption_title=\"Waterskiing\" caption_text=\"Enjoy the sea\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Enjoy the sea\" headline=\"Waterskiing\" headline_size=\"medium\" dash=\"top\" subheadline=\"If you are a big fan of water sports, then why not try the waterskiing or waterboarding? At hotel California you will find there\'s an amateur champoionship every year. Rated as the most fun activity by our visitors.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_e05b\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9a3\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9e5\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"76\" el_class=\"\" el_style=\"\"][bt_image image=\"76\" caption_title=\"Paragliding\" caption_text=\"Enjoy the sky\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Enjoy the sky\" headline=\"Parasailing\" headline_size=\"medium\" dash=\"top\" subheadline=\"Enjoy the thrill on the sky with our parasailing team and feel the California sun on your face. The team will help you get your adrenaline high and will be capuring your moments on a high-definition camera.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_ea2f\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"s7_e67b\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9f3\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_slider height=\"auto\" auto_play=\"\" hide_arrows=\"\" hide_paging=\"btSliderHidePaging\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/6\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"78\" caption_text=\"\" size=\"\" shape=\"circle\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][bt_header superheadline=\"June 2016\" headline=\"Alan Jones\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][/bt_column_inner][bt_column_inner width=\"5/6\"][bt_text]\r\n<blockquote>If you chose to stay with us you will enjoy modern home comforts in a traditional setting. Whether you are looking for a short weekend break or a longer holiday, we offer a range of packages that we think cater for all.</blockquote>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/6\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"447\" caption_text=\"\" size=\"\" shape=\"circle\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][/bt_image][bt_header superheadline=\"July 2016\" headline=\"Adrianne White\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][bt_column_inner width=\"5/6\"][bt_text]\r\n<blockquote>If you chose to stay with us you will enjoy modern home comforts in a traditional setting. Whether you are looking for a short weekend break or a longer holiday, we offer a range of packages that we think cater for all.</blockquote>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/1\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_text]\r\n<blockquote>Our mission: to connect our members and our diverse community to the boundless recreational opportunities and proper stewardship of the Monterey Bay and the Pacific Ocean.</blockquote>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][/bt_slider][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/3\" align=\"left\" vertical_align=\"btMiddleVertical\" border=\"no_border\" cell_padding=\"btDoublePadding\" animation=\"animate animate-fadein\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"#e5e5e5\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"IN A NUTSHELL\" headline=\"Hotel California\" headline_size=\"large\" dash=\"bottom\" subheadline=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer mollis viverra diam ac ornare. Donec rhoncus nisi in felis congue, at pulvinar nibh dapibus.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_button text=\"READ MORE\" icon=\"no_icon\" url=\"\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"ExtraSmall\" width=\"Normal\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"2/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_slider height=\"auto\" auto_play=\"\" hide_arrows=\"\" hide_paging=\"btSliderHidePaging\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"81\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"82\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"83\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"84\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"85\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][/bt_slider][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\"][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"2/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_gmaps latitude=\"36.602383\" longitude=\"-121.879245 \" zoom=\"11\" icon=\"342\" height=\"400px\" primary_color=\"\" secondary_color=\"\" water_color=\"\" custom_style=\"WwogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJhZG1pbmlzdHJhdGl2ZSIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImxhYmVscy50ZXh0LmZpbGwiLAogICAgICAgICJzdHlsZXJzIjogWwogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAiY29sb3IiOiAiIzQ0NDQ0NCIKICAgICAgICAgICAgfQogICAgICAgIF0KICAgIH0sCiAgICB7CiAgICAgICAgImZlYXR1cmVUeXBlIjogImxhbmRzY2FwZSIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJjb2xvciI6ICIjZjJmMmYyIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAicG9pIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiYWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInZpc2liaWxpdHkiOiAib2ZmIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAicm9hZCIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJzYXR1cmF0aW9uIjogLTEwMAogICAgICAgICAgICB9LAogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAibGlnaHRuZXNzIjogNDUKICAgICAgICAgICAgfQogICAgICAgIF0KICAgIH0sCiAgICB7CiAgICAgICAgImZlYXR1cmVUeXBlIjogInJvYWQuaGlnaHdheSIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogInNpbXBsaWZpZWQiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJyb2FkLmhpZ2h3YXkiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJnZW9tZXRyeSIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogInNpbXBsaWZpZWQiCiAgICAgICAgICAgIH0sCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJjb2xvciI6ICIjZDc3Mjg3IgogICAgICAgICAgICB9LAogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAibGlnaHRuZXNzIjogIjAiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJyb2FkLmhpZ2h3YXkiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJsYWJlbHMudGV4dCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogIm9uIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAicm9hZC5oaWdod2F5IiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAibGFiZWxzLmljb24iLAogICAgICAgICJzdHlsZXJzIjogWwogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAidmlzaWJpbGl0eSI6ICJvbiIKICAgICAgICAgICAgfQogICAgICAgIF0KICAgIH0sCiAgICB7CiAgICAgICAgImZlYXR1cmVUeXBlIjogInJvYWQuYXJ0ZXJpYWwiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJhbGwiLAogICAgICAgICJzdHlsZXJzIjogWwogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAidmlzaWJpbGl0eSI6ICJvbiIKICAgICAgICAgICAgfQogICAgICAgIF0KICAgIH0sCiAgICB7CiAgICAgICAgImZlYXR1cmVUeXBlIjogInJvYWQuYXJ0ZXJpYWwiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJnZW9tZXRyeS5maWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgImNvbG9yIjogIiNkNzcyODciCiAgICAgICAgICAgIH0sCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJsaWdodG5lc3MiOiAiNzUiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJyb2FkLmFydGVyaWFsIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAibGFiZWxzLmljb24iLAogICAgICAgICJzdHlsZXJzIjogWwogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAidmlzaWJpbGl0eSI6ICJvZmYiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJyb2FkLmxvY2FsIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiZ2VvbWV0cnkuZmlsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJsaWdodG5lc3MiOiAiNzUiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJ0cmFuc2l0IiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiYWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInZpc2liaWxpdHkiOiAib2ZmIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAidHJhbnNpdC5saW5lIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiYWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInZpc2liaWxpdHkiOiAib24iCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJ0cmFuc2l0LnN0YXRpb24uYnVzIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiYWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInZpc2liaWxpdHkiOiAib24iCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJ0cmFuc2l0LnN0YXRpb24ucmFpbCIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogIm9uIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAidHJhbnNpdC5zdGF0aW9uLnJhaWwiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJsYWJlbHMuaWNvbiIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ3ZWlnaHQiOiAiMC4wMSIKICAgICAgICAgICAgfSwKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgImh1ZSI6ICIjZmYwMDM1IgogICAgICAgICAgICB9LAogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAibGlnaHRuZXNzIjogIjAiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJ3YXRlciIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogIm9uIgogICAgICAgICAgICB9LAogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAiY29sb3IiOiAiIzgwZTRkOCIKICAgICAgICAgICAgfSwKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgImxpZ2h0bmVzcyI6ICIyNSIKICAgICAgICAgICAgfSwKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInNhdHVyYXRpb24iOiAiLTIzIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfQpd\" el_class=\"\" el_style=\"\" api_key=\"AIzaSyBda9LxQ-Wztqsk6aFI7SkcdiypnKTPfiI\"][/bt_gmaps][/bt_column][bt_column width=\"1/3\" align=\"left\" vertical_align=\"btMiddleVertical\" border=\"no_border\" cell_padding=\"btDoublePadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"#e5e5e5\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_service icon=\"s7_e638\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoMediumSize\" url=\"\" headline=\"Address\" dash=\"\" text=\"3216 W Highland Boulevard\r\nSan Diego, California\" el_class=\"\" el_style=\"\" superheadline=\"\"][/bt_service][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSemiSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_service icon=\"s7_e670\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoMediumSize\" url=\"\" headline=\"Phone\" dash=\"\" text=\"+555-40-220-6672\" el_class=\"\" el_style=\"\" superheadline=\"\"][/bt_service][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSemiSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_service icon=\"s7_e63a\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoMediumSize\" url=\"\" headline=\"Email\" dash=\"\" text=\"office@california.hotel\" el_class=\"\" el_style=\"\" superheadline=\"\"][/bt_service][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"yes\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"7/12\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"News <i>&</i> Blog\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Morbi pharetra faucibus purus, nec pretium enim luctus quis. Pellentesque aliquet venenatis ante, quis pretium neque tristique eget. Integer in luctus urna. Aenean rutrum sodales pharetra.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"5/12\"][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_latest_posts number=\"3\" category=\"\" format=\"horizontal\" post_type=\"blog\" show_excerpt=\"yes\" show_date=\"yes\" show_author=\"yes\" el_class=\"\" el_style=\"\"][/bt_latest_posts][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"321\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"0.3\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Follow us\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Find out what’s hot and new, and get discounts for being a loyal customer and a Hotel California fan.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_icons][bt_icon icon=\"fa_f09a\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f099\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f0d5\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_column][/bt_row][/bt_section]','Street view','\n ','inherit','closed','closed','','837-revision-v1','','','2021-04-07 04:25:55','2021-04-07 04:25:55','',837,'http://mpycdev.theomggroup.com/?p=1030',0,'revision','',0);
INSERT INTO `smrc_posts` VALUES (1031,1,'2021-04-07 04:27:04','2021-04-07 04:27:04','[bt_section layout=\"wide\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\"][bt_slider height=\"auto\" auto_play=\"5000\" hide_arrows=\"\" hide_paging=\"\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item image=\"1025\" el_class=\"btLightSkin\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1027\" el_class=\"\" el_style=\"\"][bt_row_inner][bt_column_inner width=\"2/3\" align=\"left\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"animate animate-fadein animate-moveleft\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_hr top_spaced=\"topExtraSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"The art of meeting your\r\nhighest <i>expectations</i>\" headline_size=\"huge\" dash=\"bottom\" subheadline=\"Enjoying the sun and sea has never been so easy. At the beach of hotel California, you\'ll find our most complete service, great seaside and easy going staff.\r\nHotel California. Everything. Right where you need it.\" el_class=\"\" el_style=\"max-width: 660px;\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_button text=\"Check our OFFERS & DEALS\" icon=\"fa_f061\" url=\"#special-offers\" target=\"no_target\" style=\"Outline\" icon_position=\"Left\" color=\"Accent\" size=\"Small\" width=\"Normal\" el_class=\"\" el_style=\"\"][/bt_button][bt_button text=\"BOOK NOW\" icon=\"no_icon\" url=\"rooms\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Normal\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topSpaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"1/3\"][/bt_column_inner][/bt_row_inner][/bt_slider_item][bt_slider_item image=\"843\" el_class=\"btLightSkin\" el_style=\"\"][bt_row_inner][bt_column_inner width=\"1/2\"][/bt_column_inner][bt_column_inner width=\"1/2\" align=\"left\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"animate animate-fadein animate-moveleft\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_hr top_spaced=\"topExtraSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Unique <i>location,</i>\r\nservice and stay\" headline_size=\"huge\" dash=\"bottom\" subheadline=\"At the heart of San Diego, on one of the most colorful beaches, right next to the Pacific ocean, lies the Hotel California, most famous for it’s easy going staff and vacation you’ll never forget...\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_button text=\"Check our OFFERS & DEALS\" icon=\"fa_f061\" url=\"#special-offers\" target=\"no_target\" style=\"Outline\" icon_position=\"Left\" color=\"Accent\" size=\"Small\" width=\"Normal\" el_class=\"\" el_style=\"\"][/bt_button][bt_button text=\"BOOK NOW\" icon=\"no_icon\" url=\"rooms\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Normal\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topSpaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][/bt_slider_item][/bt_slider][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"dark\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#000080\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\"][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\r\n<h4><em>founded 1953</em></h4>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSemiSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"2/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Rooms & Suites\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"If you chose to stay with us you will enjoy modern home comforts in a traditional setting. Whether you are looking for a short weekend break or a longer holiday, we offer a range of packages that will cater for all.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/3\"][/bt_column][/bt_row][bt_row][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"44\" caption_text=\"View\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption=\"Double room\" show_titles=\"no\" caption_title=\"Room details\"][bt_header superheadline=\"Room features\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"cs_ea18\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9c2\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea2c\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1c\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"DELUXE\" headline=\"Double Room\" headline_size=\"medium\" dash=\"top\" subheadline=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer mollis viverra diam ac ornare. Donec rhoncus nisi in felis congue, at pulvinar nibh dapibus.\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/2\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"room-details\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"1/2\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"43\" caption_text=\"\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"Room features\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"cs_ea18\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9c5\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1a\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1c\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"EXECUTIVE\" headline=\"Junior Suite\" headline_size=\"medium\" dash=\"top\" subheadline=\"Sed sodales tortor non metus iaculis, non commodo ipsum mattis. Ut at dolor elit. Proin dignissim, lacus eget ullamcorper consectetur, mauris mi mattis elit sagittis.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/2\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"room-details\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"1/2\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"42\" caption_text=\"\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"Room features\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"cs_ea30\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea18\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea2d\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1c\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"DELUXE\" headline=\"Double Room\" headline_size=\"medium\" dash=\"top\" subheadline=\"Mauris suscipit lectus pellentesque ante efficitur, at dignissim tellus maximus. Sed leo magna, faucibus non ante non, pulvinar scelerisque magna sit elis.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/2\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"room-details\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"1/2\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"41\" caption_text=\"\" size=\"medium\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"Room features\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"cs_ea18\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1b\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea21\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1c\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"DELUXE\" headline=\"Family Room\" headline_size=\"medium\" dash=\"top\" subheadline=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer mollis viverra diam ac ornare. Donec rhoncus nisi in felis congue, at pulvinar nibh dapibus.\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/2\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"room-details\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"1/2\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"66\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"0.7\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"special-offers\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"323\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"width: 60px; margin-top: -28px;\"][/bt_image][bt_hr top_spaced=\"topSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"1/2\"][/bt_column][bt_column width=\"1/2\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"GET THE BEST RATE\" headline=\"Offers <i>&</i> Deals\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"If you chose to stay with us you will enjoy modern home comforts in a traditional setting. Whether you are looking for a short weekend break or a longer holiday, we offer a range of packages that we think cater for all.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"1/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"0.7\" inner_background_color=\"#ffffff\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"67\" caption_text=\"Get together\" size=\"\" shape=\"square\" url=\"special-offers\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"Family vacation\" show_titles=\"no\"][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"Get together\" headline=\"Family vacation\" headline_size=\"medium\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"fa_f207\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f13d\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f1eb\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f206\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f1ae\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\r\n\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Integer mollis viverra diam ac ornare. Donec rhoncus nisi in felis congue, at pulvinar nibh dapibus.\r\n\r\n[/bt_text][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/3\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"special-offers\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"2/3\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"0.7\" inner_background_color=\"#ffffff\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"68\" caption_text=\"Celebrate\" size=\"\" shape=\"square\" url=\"special-offers\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"Newlyweds weekend\" show_titles=\"no\"][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"Celebrate\" headline=\"Newlyweds weekend\" headline_size=\"medium\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"fa_f1ba\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f072\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f228\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\r\n\r\nSed ut metus eu neque commodo fringilla imperdiet sed nibh. Sed volutpat fermentum ligula, et maximus ex ultricies sit amet.\r\n\r\n[/bt_text][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/3\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"special-offers\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"2/3\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"0.7\" inner_background_color=\"#ffffff\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"725\" caption_text=\"Procrastinate\" size=\"\" shape=\"square\" url=\"special-offers\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"Lazy weekend\" show_titles=\"no\"][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"Procrastinate\" headline=\"Lazy weekend\" headline_size=\"medium\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"fa_f1ba\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f072\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f1eb\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f000\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f185\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\r\n\r\nPhasellus non bibendum augue. Duis nibh felis, volutpat vitae pulvinar at, tincidunt eget mi. Donec venenatis condimentum fermentum.\r\n\r\n[/bt_text][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/3\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"special-offers\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"2/3\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#e5e5e5\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"322\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"width: 60px; margin-top: -28px;\"][/bt_image][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"7/12\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Activities\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Phasellus blandit a massa vitae congue. Nam ex massa, mattis ut sapien sit amet, consequat sodales risus. Sed interdum, ligula et lobortis faucibus, sem sem placerat augue, eget scelerisque turpis lorem et tellus.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][/bt_column][bt_column width=\"5/12\"][/bt_column][/bt_row][/bt_section][bt_section layout=\"wide\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"dark\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#e5e5e5\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"73\" caption_title=\"Beach voleyball\" caption_text=\"Enjoy the game\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"ENJOY THE GAME\" headline=\"Beach Voleyball\" headline_size=\"medium\" dash=\"top\" subheadline=\"Beach volleyball is ouy visitors favourite sport, highly enjoyable for everyone young or old. Just gather your team on the beach and find the opponents in a matter of minutes. And show what you can do, be a winner!\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_e9ac\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e040\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e041\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"74\" el_class=\"\" el_style=\"\"][bt_image image=\"74\" caption_title=\"Horseback riding\" caption_text=\"Enjoy the beach\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Enjoy the beach\" headline=\"Horseback riding\" headline_size=\"medium\" dash=\"top\" subheadline=\"How about a lazy afternoon with your friends on a hors, while the sun goes down? If you want to chill out, our horse riding team will teach you in a matter of minutes and help you wind down after a good day on the sun.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_ea13\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1e\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e05b\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"75\" el_class=\"\" el_style=\"\"][bt_image image=\"75\" caption_title=\"Waterskiing\" caption_text=\"Enjoy the sea\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Enjoy the sea\" headline=\"Waterskiing\" headline_size=\"medium\" dash=\"top\" subheadline=\"If you are a big fan of water sports, then why not try the waterskiing or waterboarding? At hotel California you will find there\'s an amateur champoionship every year. Rated as the most fun activity by our visitors.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_e05b\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9a3\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9e5\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"76\" el_class=\"\" el_style=\"\"][bt_image image=\"76\" caption_title=\"Paragliding\" caption_text=\"Enjoy the sky\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Enjoy the sky\" headline=\"Parasailing\" headline_size=\"medium\" dash=\"top\" subheadline=\"Enjoy the thrill on the sky with our parasailing team and feel the California sun on your face. The team will help you get your adrenaline high and will be capuring your moments on a high-definition camera.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_ea2f\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"s7_e67b\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9f3\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_slider height=\"auto\" auto_play=\"\" hide_arrows=\"\" hide_paging=\"btSliderHidePaging\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/6\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"78\" caption_text=\"\" size=\"\" shape=\"circle\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][bt_header superheadline=\"June 2016\" headline=\"Alan Jones\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][/bt_column_inner][bt_column_inner width=\"5/6\"][bt_text]\r\n<blockquote>If you chose to stay with us you will enjoy modern home comforts in a traditional setting. Whether you are looking for a short weekend break or a longer holiday, we offer a range of packages that we think cater for all.</blockquote>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/6\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"447\" caption_text=\"\" size=\"\" shape=\"circle\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][/bt_image][bt_header superheadline=\"July 2016\" headline=\"Adrianne White\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][bt_column_inner width=\"5/6\"][bt_text]\r\n<blockquote>If you chose to stay with us you will enjoy modern home comforts in a traditional setting. Whether you are looking for a short weekend break or a longer holiday, we offer a range of packages that we think cater for all.</blockquote>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/1\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_text]\r\n<blockquote>Our mission: to connect our members and our diverse community to the boundless recreational opportunities and proper stewardship of the Monterey Bay and the Pacific Ocean.</blockquote>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][/bt_slider][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/3\" align=\"left\" vertical_align=\"btMiddleVertical\" border=\"no_border\" cell_padding=\"btDoublePadding\" animation=\"animate animate-fadein\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"#e5e5e5\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"IN A NUTSHELL\" headline=\"Hotel California\" headline_size=\"large\" dash=\"bottom\" subheadline=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer mollis viverra diam ac ornare. Donec rhoncus nisi in felis congue, at pulvinar nibh dapibus.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_button text=\"READ MORE\" icon=\"no_icon\" url=\"\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"ExtraSmall\" width=\"Normal\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"2/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_slider height=\"auto\" auto_play=\"\" hide_arrows=\"\" hide_paging=\"btSliderHidePaging\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"81\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"82\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"83\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"84\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"85\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][/bt_slider][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\"][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"2/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_gmaps latitude=\"36.602383\" longitude=\"-121.879245 \" zoom=\"11\" icon=\"342\" height=\"400px\" primary_color=\"\" secondary_color=\"\" water_color=\"\" custom_style=\"WwogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJhZG1pbmlzdHJhdGl2ZSIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImxhYmVscy50ZXh0LmZpbGwiLAogICAgICAgICJzdHlsZXJzIjogWwogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAiY29sb3IiOiAiIzQ0NDQ0NCIKICAgICAgICAgICAgfQogICAgICAgIF0KICAgIH0sCiAgICB7CiAgICAgICAgImZlYXR1cmVUeXBlIjogImxhbmRzY2FwZSIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJjb2xvciI6ICIjZjJmMmYyIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAicG9pIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiYWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInZpc2liaWxpdHkiOiAib2ZmIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAicm9hZCIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJzYXR1cmF0aW9uIjogLTEwMAogICAgICAgICAgICB9LAogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAibGlnaHRuZXNzIjogNDUKICAgICAgICAgICAgfQogICAgICAgIF0KICAgIH0sCiAgICB7CiAgICAgICAgImZlYXR1cmVUeXBlIjogInJvYWQuaGlnaHdheSIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogInNpbXBsaWZpZWQiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJyb2FkLmhpZ2h3YXkiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJnZW9tZXRyeSIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogInNpbXBsaWZpZWQiCiAgICAgICAgICAgIH0sCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJjb2xvciI6ICIjZDc3Mjg3IgogICAgICAgICAgICB9LAogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAibGlnaHRuZXNzIjogIjAiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJyb2FkLmhpZ2h3YXkiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJsYWJlbHMudGV4dCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogIm9uIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAicm9hZC5oaWdod2F5IiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAibGFiZWxzLmljb24iLAogICAgICAgICJzdHlsZXJzIjogWwogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAidmlzaWJpbGl0eSI6ICJvbiIKICAgICAgICAgICAgfQogICAgICAgIF0KICAgIH0sCiAgICB7CiAgICAgICAgImZlYXR1cmVUeXBlIjogInJvYWQuYXJ0ZXJpYWwiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJhbGwiLAogICAgICAgICJzdHlsZXJzIjogWwogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAidmlzaWJpbGl0eSI6ICJvbiIKICAgICAgICAgICAgfQogICAgICAgIF0KICAgIH0sCiAgICB7CiAgICAgICAgImZlYXR1cmVUeXBlIjogInJvYWQuYXJ0ZXJpYWwiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJnZW9tZXRyeS5maWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgImNvbG9yIjogIiNkNzcyODciCiAgICAgICAgICAgIH0sCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJsaWdodG5lc3MiOiAiNzUiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJyb2FkLmFydGVyaWFsIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAibGFiZWxzLmljb24iLAogICAgICAgICJzdHlsZXJzIjogWwogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAidmlzaWJpbGl0eSI6ICJvZmYiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJyb2FkLmxvY2FsIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiZ2VvbWV0cnkuZmlsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJsaWdodG5lc3MiOiAiNzUiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJ0cmFuc2l0IiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiYWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInZpc2liaWxpdHkiOiAib2ZmIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAidHJhbnNpdC5saW5lIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiYWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInZpc2liaWxpdHkiOiAib24iCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJ0cmFuc2l0LnN0YXRpb24uYnVzIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiYWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInZpc2liaWxpdHkiOiAib24iCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJ0cmFuc2l0LnN0YXRpb24ucmFpbCIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogIm9uIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAidHJhbnNpdC5zdGF0aW9uLnJhaWwiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJsYWJlbHMuaWNvbiIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ3ZWlnaHQiOiAiMC4wMSIKICAgICAgICAgICAgfSwKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgImh1ZSI6ICIjZmYwMDM1IgogICAgICAgICAgICB9LAogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAibGlnaHRuZXNzIjogIjAiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJ3YXRlciIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogIm9uIgogICAgICAgICAgICB9LAogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAiY29sb3IiOiAiIzgwZTRkOCIKICAgICAgICAgICAgfSwKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgImxpZ2h0bmVzcyI6ICIyNSIKICAgICAgICAgICAgfSwKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInNhdHVyYXRpb24iOiAiLTIzIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfQpd\" el_class=\"\" el_style=\"\" api_key=\"AIzaSyBda9LxQ-Wztqsk6aFI7SkcdiypnKTPfiI\"][/bt_gmaps][/bt_column][bt_column width=\"1/3\" align=\"left\" vertical_align=\"btMiddleVertical\" border=\"no_border\" cell_padding=\"btDoublePadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"#e5e5e5\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_service icon=\"s7_e638\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoMediumSize\" url=\"\" headline=\"Address\" dash=\"\" text=\"3216 W Highland Boulevard\r\nSan Diego, California\" el_class=\"\" el_style=\"\" superheadline=\"\"][/bt_service][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSemiSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_service icon=\"s7_e670\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoMediumSize\" url=\"\" headline=\"Phone\" dash=\"\" text=\"+555-40-220-6672\" el_class=\"\" el_style=\"\" superheadline=\"\"][/bt_service][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSemiSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_service icon=\"s7_e63a\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoMediumSize\" url=\"\" headline=\"Email\" dash=\"\" text=\"office@california.hotel\" el_class=\"\" el_style=\"\" superheadline=\"\"][/bt_service][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"yes\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"7/12\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"News <i>&</i> Blog\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Morbi pharetra faucibus purus, nec pretium enim luctus quis. Pellentesque aliquet venenatis ante, quis pretium neque tristique eget. Integer in luctus urna. Aenean rutrum sodales pharetra.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"5/12\"][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_latest_posts number=\"3\" category=\"\" format=\"horizontal\" post_type=\"blog\" show_excerpt=\"yes\" show_date=\"yes\" show_author=\"yes\" el_class=\"\" el_style=\"\"][/bt_latest_posts][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"321\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"0.3\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Follow us\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Find out what’s hot and new, and get discounts for being a loyal customer and a Hotel California fan.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_icons][bt_icon icon=\"fa_f09a\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f099\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f0d5\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_column][/bt_row][/bt_section]','Street view','\n ','inherit','closed','closed','','837-revision-v1','','','2021-04-07 04:27:04','2021-04-07 04:27:04','',837,'http://mpycdev.theomggroup.com/?p=1031',0,'revision','',0);
INSERT INTO `smrc_posts` VALUES (1032,1,'2021-04-07 04:29:21','2021-04-07 04:29:21','[bt_section layout=\"wide\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\"][bt_slider height=\"auto\" auto_play=\"5000\" hide_arrows=\"\" hide_paging=\"\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item image=\"1027\" el_class=\"\" el_style=\"\"][bt_row_inner][bt_column_inner width=\"2/3\" align=\"left\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"animate animate-fadein animate-moveleft\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][/bt_column_inner][bt_column_inner width=\"1/3\"][/bt_column_inner][/bt_row_inner][/bt_slider_item][bt_slider_item image=\"1027\" el_class=\"\" el_style=\"\"][bt_row_inner][bt_column_inner width=\"2/3\" align=\"left\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"animate animate-fadein animate-moveleft\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_hr top_spaced=\"topExtraSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"The art of meeting your\r\nhighest <i>expectations</i>\" headline_size=\"huge\" dash=\"bottom\" subheadline=\"Enjoying the sun and sea has never been so easy. At the beach of hotel California, you\'ll find our most complete service, great seaside and easy going staff.\r\nHotel California. Everything. Right where you need it.\" el_class=\"\" el_style=\"max-width: 660px;\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_button text=\"Check our OFFERS & DEALS\" icon=\"fa_f061\" url=\"#special-offers\" target=\"no_target\" style=\"Outline\" icon_position=\"Left\" color=\"Accent\" size=\"Small\" width=\"Normal\" el_class=\"\" el_style=\"\"][/bt_button][bt_button text=\"BOOK NOW\" icon=\"no_icon\" url=\"rooms\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Normal\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topSpaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"1/3\"][/bt_column_inner][/bt_row_inner][/bt_slider_item][bt_slider_item image=\"843\" el_class=\"btLightSkin\" el_style=\"\"][bt_row_inner][bt_column_inner width=\"1/2\"][/bt_column_inner][bt_column_inner width=\"1/2\" align=\"left\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"animate animate-fadein animate-moveleft\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_hr top_spaced=\"topExtraSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Unique <i>location,</i>\r\nservice and stay\" headline_size=\"huge\" dash=\"bottom\" subheadline=\"At the heart of San Diego, on one of the most colorful beaches, right next to the Pacific ocean, lies the Hotel California, most famous for it’s easy going staff and vacation you’ll never forget...\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_button text=\"Check our OFFERS & DEALS\" icon=\"fa_f061\" url=\"#special-offers\" target=\"no_target\" style=\"Outline\" icon_position=\"Left\" color=\"Accent\" size=\"Small\" width=\"Normal\" el_class=\"\" el_style=\"\"][/bt_button][bt_button text=\"BOOK NOW\" icon=\"no_icon\" url=\"rooms\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Normal\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topSpaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][/bt_slider_item][/bt_slider][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"dark\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#000080\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\"][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\r\n<h4><em>founded 1953</em></h4>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSemiSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"2/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Rooms & Suites\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"If you chose to stay with us you will enjoy modern home comforts in a traditional setting. Whether you are looking for a short weekend break or a longer holiday, we offer a range of packages that will cater for all.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/3\"][/bt_column][/bt_row][bt_row][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"44\" caption_text=\"View\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption=\"Double room\" show_titles=\"no\" caption_title=\"Room details\"][bt_header superheadline=\"Room features\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"cs_ea18\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9c2\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea2c\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1c\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"DELUXE\" headline=\"Double Room\" headline_size=\"medium\" dash=\"top\" subheadline=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer mollis viverra diam ac ornare. Donec rhoncus nisi in felis congue, at pulvinar nibh dapibus.\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/2\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"room-details\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"1/2\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"43\" caption_text=\"\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"Room features\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"cs_ea18\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9c5\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1a\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1c\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"EXECUTIVE\" headline=\"Junior Suite\" headline_size=\"medium\" dash=\"top\" subheadline=\"Sed sodales tortor non metus iaculis, non commodo ipsum mattis. Ut at dolor elit. Proin dignissim, lacus eget ullamcorper consectetur, mauris mi mattis elit sagittis.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/2\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"room-details\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"1/2\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"42\" caption_text=\"\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"Room features\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"cs_ea30\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea18\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea2d\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1c\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"DELUXE\" headline=\"Double Room\" headline_size=\"medium\" dash=\"top\" subheadline=\"Mauris suscipit lectus pellentesque ante efficitur, at dignissim tellus maximus. Sed leo magna, faucibus non ante non, pulvinar scelerisque magna sit elis.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/2\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"room-details\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"1/2\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"41\" caption_text=\"\" size=\"medium\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"Room features\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"cs_ea18\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1b\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea21\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1c\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"DELUXE\" headline=\"Family Room\" headline_size=\"medium\" dash=\"top\" subheadline=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer mollis viverra diam ac ornare. Donec rhoncus nisi in felis congue, at pulvinar nibh dapibus.\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/2\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"room-details\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"1/2\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"66\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"0.7\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"special-offers\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"323\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"width: 60px; margin-top: -28px;\"][/bt_image][bt_hr top_spaced=\"topSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"1/2\"][/bt_column][bt_column width=\"1/2\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"GET THE BEST RATE\" headline=\"Offers <i>&</i> Deals\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"If you chose to stay with us you will enjoy modern home comforts in a traditional setting. Whether you are looking for a short weekend break or a longer holiday, we offer a range of packages that we think cater for all.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"1/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"0.7\" inner_background_color=\"#ffffff\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"67\" caption_text=\"Get together\" size=\"\" shape=\"square\" url=\"special-offers\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"Family vacation\" show_titles=\"no\"][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"Get together\" headline=\"Family vacation\" headline_size=\"medium\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"fa_f207\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f13d\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f1eb\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f206\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f1ae\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\r\n\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Integer mollis viverra diam ac ornare. Donec rhoncus nisi in felis congue, at pulvinar nibh dapibus.\r\n\r\n[/bt_text][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/3\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"special-offers\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"2/3\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"0.7\" inner_background_color=\"#ffffff\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"68\" caption_text=\"Celebrate\" size=\"\" shape=\"square\" url=\"special-offers\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"Newlyweds weekend\" show_titles=\"no\"][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"Celebrate\" headline=\"Newlyweds weekend\" headline_size=\"medium\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"fa_f1ba\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f072\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f228\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\r\n\r\nSed ut metus eu neque commodo fringilla imperdiet sed nibh. Sed volutpat fermentum ligula, et maximus ex ultricies sit amet.\r\n\r\n[/bt_text][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/3\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"special-offers\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"2/3\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"0.7\" inner_background_color=\"#ffffff\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"725\" caption_text=\"Procrastinate\" size=\"\" shape=\"square\" url=\"special-offers\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"Lazy weekend\" show_titles=\"no\"][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"Procrastinate\" headline=\"Lazy weekend\" headline_size=\"medium\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"fa_f1ba\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f072\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f1eb\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f000\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f185\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\r\n\r\nPhasellus non bibendum augue. Duis nibh felis, volutpat vitae pulvinar at, tincidunt eget mi. Donec venenatis condimentum fermentum.\r\n\r\n[/bt_text][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/3\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"special-offers\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"2/3\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#e5e5e5\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"322\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"width: 60px; margin-top: -28px;\"][/bt_image][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"7/12\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Activities\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Phasellus blandit a massa vitae congue. Nam ex massa, mattis ut sapien sit amet, consequat sodales risus. Sed interdum, ligula et lobortis faucibus, sem sem placerat augue, eget scelerisque turpis lorem et tellus.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][/bt_column][bt_column width=\"5/12\"][/bt_column][/bt_row][/bt_section][bt_section layout=\"wide\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"dark\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#e5e5e5\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"73\" caption_title=\"Beach voleyball\" caption_text=\"Enjoy the game\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"ENJOY THE GAME\" headline=\"Beach Voleyball\" headline_size=\"medium\" dash=\"top\" subheadline=\"Beach volleyball is ouy visitors favourite sport, highly enjoyable for everyone young or old. Just gather your team on the beach and find the opponents in a matter of minutes. And show what you can do, be a winner!\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_e9ac\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e040\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e041\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"74\" el_class=\"\" el_style=\"\"][bt_image image=\"74\" caption_title=\"Horseback riding\" caption_text=\"Enjoy the beach\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Enjoy the beach\" headline=\"Horseback riding\" headline_size=\"medium\" dash=\"top\" subheadline=\"How about a lazy afternoon with your friends on a hors, while the sun goes down? If you want to chill out, our horse riding team will teach you in a matter of minutes and help you wind down after a good day on the sun.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_ea13\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1e\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e05b\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"75\" el_class=\"\" el_style=\"\"][bt_image image=\"75\" caption_title=\"Waterskiing\" caption_text=\"Enjoy the sea\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Enjoy the sea\" headline=\"Waterskiing\" headline_size=\"medium\" dash=\"top\" subheadline=\"If you are a big fan of water sports, then why not try the waterskiing or waterboarding? At hotel California you will find there\'s an amateur champoionship every year. Rated as the most fun activity by our visitors.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_e05b\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9a3\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9e5\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"76\" el_class=\"\" el_style=\"\"][bt_image image=\"76\" caption_title=\"Paragliding\" caption_text=\"Enjoy the sky\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Enjoy the sky\" headline=\"Parasailing\" headline_size=\"medium\" dash=\"top\" subheadline=\"Enjoy the thrill on the sky with our parasailing team and feel the California sun on your face. The team will help you get your adrenaline high and will be capuring your moments on a high-definition camera.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_ea2f\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"s7_e67b\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9f3\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_slider height=\"auto\" auto_play=\"\" hide_arrows=\"\" hide_paging=\"btSliderHidePaging\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/6\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"78\" caption_text=\"\" size=\"\" shape=\"circle\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][bt_header superheadline=\"June 2016\" headline=\"Alan Jones\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][/bt_column_inner][bt_column_inner width=\"5/6\"][bt_text]\r\n<blockquote>If you chose to stay with us you will enjoy modern home comforts in a traditional setting. Whether you are looking for a short weekend break or a longer holiday, we offer a range of packages that we think cater for all.</blockquote>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/6\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"447\" caption_text=\"\" size=\"\" shape=\"circle\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][/bt_image][bt_header superheadline=\"July 2016\" headline=\"Adrianne White\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][bt_column_inner width=\"5/6\"][bt_text]\r\n<blockquote>If you chose to stay with us you will enjoy modern home comforts in a traditional setting. Whether you are looking for a short weekend break or a longer holiday, we offer a range of packages that we think cater for all.</blockquote>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/1\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_text]\r\n<blockquote>Our mission: to connect our members and our diverse community to the boundless recreational opportunities and proper stewardship of the Monterey Bay and the Pacific Ocean.</blockquote>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][/bt_slider][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/3\" align=\"left\" vertical_align=\"btMiddleVertical\" border=\"no_border\" cell_padding=\"btDoublePadding\" animation=\"animate animate-fadein\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"#e5e5e5\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"IN A NUTSHELL\" headline=\"Hotel California\" headline_size=\"large\" dash=\"bottom\" subheadline=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer mollis viverra diam ac ornare. Donec rhoncus nisi in felis congue, at pulvinar nibh dapibus.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_button text=\"READ MORE\" icon=\"no_icon\" url=\"\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"ExtraSmall\" width=\"Normal\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"2/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_slider height=\"auto\" auto_play=\"\" hide_arrows=\"\" hide_paging=\"btSliderHidePaging\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"81\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"82\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"83\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"84\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"85\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][/bt_slider][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\"][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"2/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_gmaps latitude=\"36.602383\" longitude=\"-121.879245 \" zoom=\"11\" icon=\"342\" height=\"400px\" primary_color=\"\" secondary_color=\"\" water_color=\"\" custom_style=\"WwogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJhZG1pbmlzdHJhdGl2ZSIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImxhYmVscy50ZXh0LmZpbGwiLAogICAgICAgICJzdHlsZXJzIjogWwogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAiY29sb3IiOiAiIzQ0NDQ0NCIKICAgICAgICAgICAgfQogICAgICAgIF0KICAgIH0sCiAgICB7CiAgICAgICAgImZlYXR1cmVUeXBlIjogImxhbmRzY2FwZSIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJjb2xvciI6ICIjZjJmMmYyIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAicG9pIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiYWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInZpc2liaWxpdHkiOiAib2ZmIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAicm9hZCIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJzYXR1cmF0aW9uIjogLTEwMAogICAgICAgICAgICB9LAogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAibGlnaHRuZXNzIjogNDUKICAgICAgICAgICAgfQogICAgICAgIF0KICAgIH0sCiAgICB7CiAgICAgICAgImZlYXR1cmVUeXBlIjogInJvYWQuaGlnaHdheSIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogInNpbXBsaWZpZWQiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJyb2FkLmhpZ2h3YXkiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJnZW9tZXRyeSIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogInNpbXBsaWZpZWQiCiAgICAgICAgICAgIH0sCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJjb2xvciI6ICIjZDc3Mjg3IgogICAgICAgICAgICB9LAogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAibGlnaHRuZXNzIjogIjAiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJyb2FkLmhpZ2h3YXkiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJsYWJlbHMudGV4dCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogIm9uIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAicm9hZC5oaWdod2F5IiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAibGFiZWxzLmljb24iLAogICAgICAgICJzdHlsZXJzIjogWwogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAidmlzaWJpbGl0eSI6ICJvbiIKICAgICAgICAgICAgfQogICAgICAgIF0KICAgIH0sCiAgICB7CiAgICAgICAgImZlYXR1cmVUeXBlIjogInJvYWQuYXJ0ZXJpYWwiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJhbGwiLAogICAgICAgICJzdHlsZXJzIjogWwogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAidmlzaWJpbGl0eSI6ICJvbiIKICAgICAgICAgICAgfQogICAgICAgIF0KICAgIH0sCiAgICB7CiAgICAgICAgImZlYXR1cmVUeXBlIjogInJvYWQuYXJ0ZXJpYWwiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJnZW9tZXRyeS5maWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgImNvbG9yIjogIiNkNzcyODciCiAgICAgICAgICAgIH0sCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJsaWdodG5lc3MiOiAiNzUiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJyb2FkLmFydGVyaWFsIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAibGFiZWxzLmljb24iLAogICAgICAgICJzdHlsZXJzIjogWwogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAidmlzaWJpbGl0eSI6ICJvZmYiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJyb2FkLmxvY2FsIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiZ2VvbWV0cnkuZmlsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJsaWdodG5lc3MiOiAiNzUiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJ0cmFuc2l0IiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiYWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInZpc2liaWxpdHkiOiAib2ZmIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAidHJhbnNpdC5saW5lIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiYWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInZpc2liaWxpdHkiOiAib24iCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJ0cmFuc2l0LnN0YXRpb24uYnVzIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiYWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInZpc2liaWxpdHkiOiAib24iCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJ0cmFuc2l0LnN0YXRpb24ucmFpbCIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogIm9uIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAidHJhbnNpdC5zdGF0aW9uLnJhaWwiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJsYWJlbHMuaWNvbiIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ3ZWlnaHQiOiAiMC4wMSIKICAgICAgICAgICAgfSwKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgImh1ZSI6ICIjZmYwMDM1IgogICAgICAgICAgICB9LAogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAibGlnaHRuZXNzIjogIjAiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJ3YXRlciIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogIm9uIgogICAgICAgICAgICB9LAogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAiY29sb3IiOiAiIzgwZTRkOCIKICAgICAgICAgICAgfSwKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgImxpZ2h0bmVzcyI6ICIyNSIKICAgICAgICAgICAgfSwKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInNhdHVyYXRpb24iOiAiLTIzIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfQpd\" el_class=\"\" el_style=\"\" api_key=\"AIzaSyBda9LxQ-Wztqsk6aFI7SkcdiypnKTPfiI\"][/bt_gmaps][/bt_column][bt_column width=\"1/3\" align=\"left\" vertical_align=\"btMiddleVertical\" border=\"no_border\" cell_padding=\"btDoublePadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"#e5e5e5\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_service icon=\"s7_e638\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoMediumSize\" url=\"\" headline=\"Address\" dash=\"\" text=\"3216 W Highland Boulevard\r\nSan Diego, California\" el_class=\"\" el_style=\"\" superheadline=\"\"][/bt_service][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSemiSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_service icon=\"s7_e670\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoMediumSize\" url=\"\" headline=\"Phone\" dash=\"\" text=\"+555-40-220-6672\" el_class=\"\" el_style=\"\" superheadline=\"\"][/bt_service][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSemiSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_service icon=\"s7_e63a\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoMediumSize\" url=\"\" headline=\"Email\" dash=\"\" text=\"office@california.hotel\" el_class=\"\" el_style=\"\" superheadline=\"\"][/bt_service][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"yes\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"7/12\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"News <i>&</i> Blog\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Morbi pharetra faucibus purus, nec pretium enim luctus quis. Pellentesque aliquet venenatis ante, quis pretium neque tristique eget. Integer in luctus urna. Aenean rutrum sodales pharetra.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"5/12\"][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_latest_posts number=\"3\" category=\"\" format=\"horizontal\" post_type=\"blog\" show_excerpt=\"yes\" show_date=\"yes\" show_author=\"yes\" el_class=\"\" el_style=\"\"][/bt_latest_posts][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"321\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"0.3\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Follow us\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Find out what’s hot and new, and get discounts for being a loyal customer and a Hotel California fan.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_icons][bt_icon icon=\"fa_f09a\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f099\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f0d5\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_column][/bt_row][/bt_section]','Street view','\n ','inherit','closed','closed','','837-revision-v1','','','2021-04-07 04:29:21','2021-04-07 04:29:21','',837,'http://mpycdev.theomggroup.com/?p=1032',0,'revision','',0);
INSERT INTO `smrc_posts` VALUES (1033,1,'2021-04-07 04:29:57','2021-04-07 04:29:57','[bt_section layout=\"wide\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\"][bt_slider height=\"auto\" auto_play=\"5000\" hide_arrows=\"\" hide_paging=\"\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item image=\"1025\" el_class=\"\" el_style=\"\"][bt_row_inner][bt_column_inner width=\"2/3\" align=\"left\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"animate animate-fadein animate-moveleft\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][/bt_column_inner][bt_column_inner width=\"1/3\"][/bt_column_inner][/bt_row_inner][/bt_slider_item][bt_slider_item image=\"1027\" el_class=\"\" el_style=\"\"][bt_row_inner][bt_column_inner width=\"2/3\" align=\"left\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"animate animate-fadein animate-moveleft\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_hr top_spaced=\"topExtraSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"The art of meeting your\r\nhighest <i>expectations</i>\" headline_size=\"huge\" dash=\"bottom\" subheadline=\"Enjoying the sun and sea has never been so easy. At the beach of hotel California, you\'ll find our most complete service, great seaside and easy going staff.\r\nHotel California. Everything. Right where you need it.\" el_class=\"\" el_style=\"max-width: 660px;\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_button text=\"Check our OFFERS & DEALS\" icon=\"fa_f061\" url=\"#special-offers\" target=\"no_target\" style=\"Outline\" icon_position=\"Left\" color=\"Accent\" size=\"Small\" width=\"Normal\" el_class=\"\" el_style=\"\"][/bt_button][bt_button text=\"BOOK NOW\" icon=\"no_icon\" url=\"rooms\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Normal\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topSpaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"1/3\"][/bt_column_inner][/bt_row_inner][/bt_slider_item][bt_slider_item image=\"843\" el_class=\"btLightSkin\" el_style=\"\"][bt_row_inner][bt_column_inner width=\"1/2\"][/bt_column_inner][bt_column_inner width=\"1/2\" align=\"left\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"animate animate-fadein animate-moveleft\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_hr top_spaced=\"topExtraSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Unique <i>location,</i>\r\nservice and stay\" headline_size=\"huge\" dash=\"bottom\" subheadline=\"At the heart of San Diego, on one of the most colorful beaches, right next to the Pacific ocean, lies the Hotel California, most famous for it’s easy going staff and vacation you’ll never forget...\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_button text=\"Check our OFFERS & DEALS\" icon=\"fa_f061\" url=\"#special-offers\" target=\"no_target\" style=\"Outline\" icon_position=\"Left\" color=\"Accent\" size=\"Small\" width=\"Normal\" el_class=\"\" el_style=\"\"][/bt_button][bt_button text=\"BOOK NOW\" icon=\"no_icon\" url=\"rooms\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Normal\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topSpaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][/bt_slider_item][/bt_slider][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"dark\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#000080\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\"][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\r\n<h4><em>founded 1953</em></h4>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSemiSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"2/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Rooms & Suites\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"If you chose to stay with us you will enjoy modern home comforts in a traditional setting. Whether you are looking for a short weekend break or a longer holiday, we offer a range of packages that will cater for all.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/3\"][/bt_column][/bt_row][bt_row][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"44\" caption_text=\"View\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption=\"Double room\" show_titles=\"no\" caption_title=\"Room details\"][bt_header superheadline=\"Room features\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"cs_ea18\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9c2\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea2c\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1c\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"DELUXE\" headline=\"Double Room\" headline_size=\"medium\" dash=\"top\" subheadline=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer mollis viverra diam ac ornare. Donec rhoncus nisi in felis congue, at pulvinar nibh dapibus.\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/2\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"room-details\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"1/2\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"43\" caption_text=\"\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"Room features\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"cs_ea18\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9c5\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1a\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1c\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"EXECUTIVE\" headline=\"Junior Suite\" headline_size=\"medium\" dash=\"top\" subheadline=\"Sed sodales tortor non metus iaculis, non commodo ipsum mattis. Ut at dolor elit. Proin dignissim, lacus eget ullamcorper consectetur, mauris mi mattis elit sagittis.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/2\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"room-details\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"1/2\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"42\" caption_text=\"\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"Room features\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"cs_ea30\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea18\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea2d\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1c\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"DELUXE\" headline=\"Double Room\" headline_size=\"medium\" dash=\"top\" subheadline=\"Mauris suscipit lectus pellentesque ante efficitur, at dignissim tellus maximus. Sed leo magna, faucibus non ante non, pulvinar scelerisque magna sit elis.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/2\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"room-details\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"1/2\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"41\" caption_text=\"\" size=\"medium\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"Room features\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"cs_ea18\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1b\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea21\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1c\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"DELUXE\" headline=\"Family Room\" headline_size=\"medium\" dash=\"top\" subheadline=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer mollis viverra diam ac ornare. Donec rhoncus nisi in felis congue, at pulvinar nibh dapibus.\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/2\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"room-details\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"1/2\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"66\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"0.7\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"special-offers\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"323\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"width: 60px; margin-top: -28px;\"][/bt_image][bt_hr top_spaced=\"topSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"1/2\"][/bt_column][bt_column width=\"1/2\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"GET THE BEST RATE\" headline=\"Offers <i>&</i> Deals\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"If you chose to stay with us you will enjoy modern home comforts in a traditional setting. Whether you are looking for a short weekend break or a longer holiday, we offer a range of packages that we think cater for all.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"1/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"0.7\" inner_background_color=\"#ffffff\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"67\" caption_text=\"Get together\" size=\"\" shape=\"square\" url=\"special-offers\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"Family vacation\" show_titles=\"no\"][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"Get together\" headline=\"Family vacation\" headline_size=\"medium\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"fa_f207\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f13d\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f1eb\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f206\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f1ae\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\r\n\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Integer mollis viverra diam ac ornare. Donec rhoncus nisi in felis congue, at pulvinar nibh dapibus.\r\n\r\n[/bt_text][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/3\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"special-offers\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"2/3\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"0.7\" inner_background_color=\"#ffffff\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"68\" caption_text=\"Celebrate\" size=\"\" shape=\"square\" url=\"special-offers\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"Newlyweds weekend\" show_titles=\"no\"][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"Celebrate\" headline=\"Newlyweds weekend\" headline_size=\"medium\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"fa_f1ba\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f072\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f228\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\r\n\r\nSed ut metus eu neque commodo fringilla imperdiet sed nibh. Sed volutpat fermentum ligula, et maximus ex ultricies sit amet.\r\n\r\n[/bt_text][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/3\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"special-offers\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"2/3\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"0.7\" inner_background_color=\"#ffffff\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"725\" caption_text=\"Procrastinate\" size=\"\" shape=\"square\" url=\"special-offers\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"Lazy weekend\" show_titles=\"no\"][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"Procrastinate\" headline=\"Lazy weekend\" headline_size=\"medium\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"fa_f1ba\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f072\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f1eb\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f000\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f185\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\r\n\r\nPhasellus non bibendum augue. Duis nibh felis, volutpat vitae pulvinar at, tincidunt eget mi. Donec venenatis condimentum fermentum.\r\n\r\n[/bt_text][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/3\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"special-offers\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"2/3\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#e5e5e5\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"322\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"width: 60px; margin-top: -28px;\"][/bt_image][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"7/12\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Activities\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Phasellus blandit a massa vitae congue. Nam ex massa, mattis ut sapien sit amet, consequat sodales risus. Sed interdum, ligula et lobortis faucibus, sem sem placerat augue, eget scelerisque turpis lorem et tellus.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][/bt_column][bt_column width=\"5/12\"][/bt_column][/bt_row][/bt_section][bt_section layout=\"wide\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"dark\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#e5e5e5\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"73\" caption_title=\"Beach voleyball\" caption_text=\"Enjoy the game\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"ENJOY THE GAME\" headline=\"Beach Voleyball\" headline_size=\"medium\" dash=\"top\" subheadline=\"Beach volleyball is ouy visitors favourite sport, highly enjoyable for everyone young or old. Just gather your team on the beach and find the opponents in a matter of minutes. And show what you can do, be a winner!\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_e9ac\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e040\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e041\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"74\" el_class=\"\" el_style=\"\"][bt_image image=\"74\" caption_title=\"Horseback riding\" caption_text=\"Enjoy the beach\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Enjoy the beach\" headline=\"Horseback riding\" headline_size=\"medium\" dash=\"top\" subheadline=\"How about a lazy afternoon with your friends on a hors, while the sun goes down? If you want to chill out, our horse riding team will teach you in a matter of minutes and help you wind down after a good day on the sun.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_ea13\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1e\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e05b\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"75\" el_class=\"\" el_style=\"\"][bt_image image=\"75\" caption_title=\"Waterskiing\" caption_text=\"Enjoy the sea\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Enjoy the sea\" headline=\"Waterskiing\" headline_size=\"medium\" dash=\"top\" subheadline=\"If you are a big fan of water sports, then why not try the waterskiing or waterboarding? At hotel California you will find there\'s an amateur champoionship every year. Rated as the most fun activity by our visitors.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_e05b\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9a3\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9e5\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"76\" el_class=\"\" el_style=\"\"][bt_image image=\"76\" caption_title=\"Paragliding\" caption_text=\"Enjoy the sky\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Enjoy the sky\" headline=\"Parasailing\" headline_size=\"medium\" dash=\"top\" subheadline=\"Enjoy the thrill on the sky with our parasailing team and feel the California sun on your face. The team will help you get your adrenaline high and will be capuring your moments on a high-definition camera.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_ea2f\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"s7_e67b\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9f3\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_slider height=\"auto\" auto_play=\"\" hide_arrows=\"\" hide_paging=\"btSliderHidePaging\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/6\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"78\" caption_text=\"\" size=\"\" shape=\"circle\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][bt_header superheadline=\"June 2016\" headline=\"Alan Jones\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][/bt_column_inner][bt_column_inner width=\"5/6\"][bt_text]\r\n<blockquote>If you chose to stay with us you will enjoy modern home comforts in a traditional setting. Whether you are looking for a short weekend break or a longer holiday, we offer a range of packages that we think cater for all.</blockquote>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/6\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"447\" caption_text=\"\" size=\"\" shape=\"circle\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][/bt_image][bt_header superheadline=\"July 2016\" headline=\"Adrianne White\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][bt_column_inner width=\"5/6\"][bt_text]\r\n<blockquote>If you chose to stay with us you will enjoy modern home comforts in a traditional setting. Whether you are looking for a short weekend break or a longer holiday, we offer a range of packages that we think cater for all.</blockquote>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/1\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_text]\r\n<blockquote>Our mission: to connect our members and our diverse community to the boundless recreational opportunities and proper stewardship of the Monterey Bay and the Pacific Ocean.</blockquote>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][/bt_slider][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/3\" align=\"left\" vertical_align=\"btMiddleVertical\" border=\"no_border\" cell_padding=\"btDoublePadding\" animation=\"animate animate-fadein\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"#e5e5e5\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"IN A NUTSHELL\" headline=\"Hotel California\" headline_size=\"large\" dash=\"bottom\" subheadline=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer mollis viverra diam ac ornare. Donec rhoncus nisi in felis congue, at pulvinar nibh dapibus.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_button text=\"READ MORE\" icon=\"no_icon\" url=\"\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"ExtraSmall\" width=\"Normal\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"2/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_slider height=\"auto\" auto_play=\"\" hide_arrows=\"\" hide_paging=\"btSliderHidePaging\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"81\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"82\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"83\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"84\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"85\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][/bt_slider][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\"][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"2/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_gmaps latitude=\"36.602383\" longitude=\"-121.879245 \" zoom=\"11\" icon=\"342\" height=\"400px\" primary_color=\"\" secondary_color=\"\" water_color=\"\" custom_style=\"WwogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJhZG1pbmlzdHJhdGl2ZSIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImxhYmVscy50ZXh0LmZpbGwiLAogICAgICAgICJzdHlsZXJzIjogWwogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAiY29sb3IiOiAiIzQ0NDQ0NCIKICAgICAgICAgICAgfQogICAgICAgIF0KICAgIH0sCiAgICB7CiAgICAgICAgImZlYXR1cmVUeXBlIjogImxhbmRzY2FwZSIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJjb2xvciI6ICIjZjJmMmYyIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAicG9pIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiYWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInZpc2liaWxpdHkiOiAib2ZmIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAicm9hZCIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJzYXR1cmF0aW9uIjogLTEwMAogICAgICAgICAgICB9LAogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAibGlnaHRuZXNzIjogNDUKICAgICAgICAgICAgfQogICAgICAgIF0KICAgIH0sCiAgICB7CiAgICAgICAgImZlYXR1cmVUeXBlIjogInJvYWQuaGlnaHdheSIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogInNpbXBsaWZpZWQiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJyb2FkLmhpZ2h3YXkiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJnZW9tZXRyeSIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogInNpbXBsaWZpZWQiCiAgICAgICAgICAgIH0sCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJjb2xvciI6ICIjZDc3Mjg3IgogICAgICAgICAgICB9LAogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAibGlnaHRuZXNzIjogIjAiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJyb2FkLmhpZ2h3YXkiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJsYWJlbHMudGV4dCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogIm9uIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAicm9hZC5oaWdod2F5IiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAibGFiZWxzLmljb24iLAogICAgICAgICJzdHlsZXJzIjogWwogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAidmlzaWJpbGl0eSI6ICJvbiIKICAgICAgICAgICAgfQogICAgICAgIF0KICAgIH0sCiAgICB7CiAgICAgICAgImZlYXR1cmVUeXBlIjogInJvYWQuYXJ0ZXJpYWwiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJhbGwiLAogICAgICAgICJzdHlsZXJzIjogWwogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAidmlzaWJpbGl0eSI6ICJvbiIKICAgICAgICAgICAgfQogICAgICAgIF0KICAgIH0sCiAgICB7CiAgICAgICAgImZlYXR1cmVUeXBlIjogInJvYWQuYXJ0ZXJpYWwiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJnZW9tZXRyeS5maWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgImNvbG9yIjogIiNkNzcyODciCiAgICAgICAgICAgIH0sCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJsaWdodG5lc3MiOiAiNzUiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJyb2FkLmFydGVyaWFsIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAibGFiZWxzLmljb24iLAogICAgICAgICJzdHlsZXJzIjogWwogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAidmlzaWJpbGl0eSI6ICJvZmYiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJyb2FkLmxvY2FsIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiZ2VvbWV0cnkuZmlsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJsaWdodG5lc3MiOiAiNzUiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJ0cmFuc2l0IiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiYWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInZpc2liaWxpdHkiOiAib2ZmIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAidHJhbnNpdC5saW5lIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiYWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInZpc2liaWxpdHkiOiAib24iCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJ0cmFuc2l0LnN0YXRpb24uYnVzIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiYWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInZpc2liaWxpdHkiOiAib24iCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJ0cmFuc2l0LnN0YXRpb24ucmFpbCIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogIm9uIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAidHJhbnNpdC5zdGF0aW9uLnJhaWwiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJsYWJlbHMuaWNvbiIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ3ZWlnaHQiOiAiMC4wMSIKICAgICAgICAgICAgfSwKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgImh1ZSI6ICIjZmYwMDM1IgogICAgICAgICAgICB9LAogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAibGlnaHRuZXNzIjogIjAiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJ3YXRlciIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogIm9uIgogICAgICAgICAgICB9LAogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAiY29sb3IiOiAiIzgwZTRkOCIKICAgICAgICAgICAgfSwKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgImxpZ2h0bmVzcyI6ICIyNSIKICAgICAgICAgICAgfSwKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInNhdHVyYXRpb24iOiAiLTIzIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfQpd\" el_class=\"\" el_style=\"\" api_key=\"AIzaSyBda9LxQ-Wztqsk6aFI7SkcdiypnKTPfiI\"][/bt_gmaps][/bt_column][bt_column width=\"1/3\" align=\"left\" vertical_align=\"btMiddleVertical\" border=\"no_border\" cell_padding=\"btDoublePadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"#e5e5e5\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_service icon=\"s7_e638\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoMediumSize\" url=\"\" headline=\"Address\" dash=\"\" text=\"3216 W Highland Boulevard\r\nSan Diego, California\" el_class=\"\" el_style=\"\" superheadline=\"\"][/bt_service][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSemiSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_service icon=\"s7_e670\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoMediumSize\" url=\"\" headline=\"Phone\" dash=\"\" text=\"+555-40-220-6672\" el_class=\"\" el_style=\"\" superheadline=\"\"][/bt_service][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSemiSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_service icon=\"s7_e63a\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoMediumSize\" url=\"\" headline=\"Email\" dash=\"\" text=\"office@california.hotel\" el_class=\"\" el_style=\"\" superheadline=\"\"][/bt_service][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"yes\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"7/12\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"News <i>&</i> Blog\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Morbi pharetra faucibus purus, nec pretium enim luctus quis. Pellentesque aliquet venenatis ante, quis pretium neque tristique eget. Integer in luctus urna. Aenean rutrum sodales pharetra.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"5/12\"][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_latest_posts number=\"3\" category=\"\" format=\"horizontal\" post_type=\"blog\" show_excerpt=\"yes\" show_date=\"yes\" show_author=\"yes\" el_class=\"\" el_style=\"\"][/bt_latest_posts][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"321\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"0.3\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Follow us\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Find out what’s hot and new, and get discounts for being a loyal customer and a Hotel California fan.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_icons][bt_icon icon=\"fa_f09a\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f099\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f0d5\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_column][/bt_row][/bt_section]','Street view','\n ','inherit','closed','closed','','837-revision-v1','','','2021-04-07 04:29:57','2021-04-07 04:29:57','',837,'http://mpycdev.theomggroup.com/?p=1033',0,'revision','',0);
INSERT INTO `smrc_posts` VALUES (1034,1,'2021-04-07 04:30:57','2021-04-07 04:30:57','[bt_section layout=\"wide\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\"][bt_slider height=\"auto\" auto_play=\"5000\" hide_arrows=\"\" hide_paging=\"\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item image=\"843\" el_class=\"btLightSkin\" el_style=\"\"][bt_row_inner][bt_column_inner width=\"1/2\"][/bt_column_inner][bt_column_inner width=\"1/2\" align=\"left\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"animate animate-fadein animate-moveleft\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_hr top_spaced=\"topExtraSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Welcome to the\r\n<i>Hotel California</i>\" headline_size=\"huge\" dash=\"bottom\" subheadline=\"At the heart of San Diego, on one of the most colorful beaches, right next to the Pacific ocean, lies the Hotel California, most famous for it’s easy going staff and vacation you’ll never forget...\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_button text=\"Check our OFFERS & DEALS\" icon=\"fa_f061\" url=\"#special-offers\" target=\"no_target\" style=\"Outline\" icon_position=\"Left\" color=\"Accent\" size=\"Small\" width=\"Normal\" el_class=\"\" el_style=\"\"][/bt_button][bt_button text=\"BOOK NOW\" icon=\"no_icon\" url=\"rooms\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Normal\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topSpaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][/bt_slider_item][bt_slider_item image=\"844\" el_class=\"\" el_style=\"\"][bt_row_inner][bt_column_inner width=\"2/3\" align=\"left\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"animate animate-fadein animate-moveleft\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_hr top_spaced=\"topExtraSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"The art of meeting your\r\nhighest <i>expectations</i>\" headline_size=\"huge\" dash=\"bottom\" subheadline=\"Enjoying the sun and sea has never been so easy. At the beach of hotel California, you\'ll find our most complete service, great seaside and easy going staff.\r\nHotel California. Everything. Right where you need it.\" el_class=\"\" el_style=\"max-width: 660px;\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_button text=\"Check our OFFERS & DEALS\" icon=\"fa_f061\" url=\"#special-offers\" target=\"no_target\" style=\"Outline\" icon_position=\"Left\" color=\"Accent\" size=\"Small\" width=\"Normal\" el_class=\"\" el_style=\"\"][/bt_button][bt_button text=\"BOOK NOW\" icon=\"no_icon\" url=\"rooms\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Normal\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topSpaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"1/3\"][/bt_column_inner][/bt_row_inner][/bt_slider_item][bt_slider_item image=\"843\" el_class=\"btLightSkin\" el_style=\"\"][bt_row_inner][bt_column_inner width=\"1/2\"][/bt_column_inner][bt_column_inner width=\"1/2\" align=\"left\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"animate animate-fadein animate-moveleft\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_hr top_spaced=\"topExtraSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Unique <i>location,</i>\r\nservice and stay\" headline_size=\"huge\" dash=\"bottom\" subheadline=\"At the heart of San Diego, on one of the most colorful beaches, right next to the Pacific ocean, lies the Hotel California, most famous for it’s easy going staff and vacation you’ll never forget...\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_button text=\"Check our OFFERS & DEALS\" icon=\"fa_f061\" url=\"#special-offers\" target=\"no_target\" style=\"Outline\" icon_position=\"Left\" color=\"Accent\" size=\"Small\" width=\"Normal\" el_class=\"\" el_style=\"\"][/bt_button][bt_button text=\"BOOK NOW\" icon=\"no_icon\" url=\"rooms\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Normal\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topSpaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][/bt_slider_item][/bt_slider][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"dark\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#000080\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\"][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\r\n<h4><em>founded 1953</em></h4>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSemiSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"2/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Rooms & Suites\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"If you chose to stay with us you will enjoy modern home comforts in a traditional setting. Whether you are looking for a short weekend break or a longer holiday, we offer a range of packages that will cater for all.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/3\"][/bt_column][/bt_row][bt_row][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"44\" caption_text=\"View\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption=\"Double room\" show_titles=\"no\" caption_title=\"Room details\"][bt_header superheadline=\"Room features\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"cs_ea18\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9c2\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea2c\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1c\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"DELUXE\" headline=\"Double Room\" headline_size=\"medium\" dash=\"top\" subheadline=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer mollis viverra diam ac ornare. Donec rhoncus nisi in felis congue, at pulvinar nibh dapibus.\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/2\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"room-details\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"1/2\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"43\" caption_text=\"\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"Room features\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"cs_ea18\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9c5\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1a\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1c\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"EXECUTIVE\" headline=\"Junior Suite\" headline_size=\"medium\" dash=\"top\" subheadline=\"Sed sodales tortor non metus iaculis, non commodo ipsum mattis. Ut at dolor elit. Proin dignissim, lacus eget ullamcorper consectetur, mauris mi mattis elit sagittis.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/2\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"room-details\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"1/2\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"42\" caption_text=\"\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"Room features\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"cs_ea30\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea18\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea2d\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1c\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"DELUXE\" headline=\"Double Room\" headline_size=\"medium\" dash=\"top\" subheadline=\"Mauris suscipit lectus pellentesque ante efficitur, at dignissim tellus maximus. Sed leo magna, faucibus non ante non, pulvinar scelerisque magna sit elis.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/2\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"room-details\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"1/2\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"41\" caption_text=\"\" size=\"medium\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"Room features\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"cs_ea18\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1b\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea21\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1c\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"DELUXE\" headline=\"Family Room\" headline_size=\"medium\" dash=\"top\" subheadline=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer mollis viverra diam ac ornare. Donec rhoncus nisi in felis congue, at pulvinar nibh dapibus.\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/2\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"room-details\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"1/2\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"66\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"0.7\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"special-offers\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"323\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"width: 60px; margin-top: -28px;\"][/bt_image][bt_hr top_spaced=\"topSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"1/2\"][/bt_column][bt_column width=\"1/2\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"GET THE BEST RATE\" headline=\"Offers <i>&</i> Deals\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"If you chose to stay with us you will enjoy modern home comforts in a traditional setting. Whether you are looking for a short weekend break or a longer holiday, we offer a range of packages that we think cater for all.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"1/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"0.7\" inner_background_color=\"#ffffff\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"67\" caption_text=\"Get together\" size=\"\" shape=\"square\" url=\"special-offers\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"Family vacation\" show_titles=\"no\"][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"Get together\" headline=\"Family vacation\" headline_size=\"medium\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"fa_f207\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f13d\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f1eb\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f206\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f1ae\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\r\n\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Integer mollis viverra diam ac ornare. Donec rhoncus nisi in felis congue, at pulvinar nibh dapibus.\r\n\r\n[/bt_text][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/3\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"special-offers\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"2/3\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"0.7\" inner_background_color=\"#ffffff\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"68\" caption_text=\"Celebrate\" size=\"\" shape=\"square\" url=\"special-offers\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"Newlyweds weekend\" show_titles=\"no\"][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"Celebrate\" headline=\"Newlyweds weekend\" headline_size=\"medium\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"fa_f1ba\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f072\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f228\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\r\n\r\nSed ut metus eu neque commodo fringilla imperdiet sed nibh. Sed volutpat fermentum ligula, et maximus ex ultricies sit amet.\r\n\r\n[/bt_text][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/3\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"special-offers\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"2/3\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"0.7\" inner_background_color=\"#ffffff\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"725\" caption_text=\"Procrastinate\" size=\"\" shape=\"square\" url=\"special-offers\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"Lazy weekend\" show_titles=\"no\"][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"Procrastinate\" headline=\"Lazy weekend\" headline_size=\"medium\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"fa_f1ba\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f072\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f1eb\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f000\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f185\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\r\n\r\nPhasellus non bibendum augue. Duis nibh felis, volutpat vitae pulvinar at, tincidunt eget mi. Donec venenatis condimentum fermentum.\r\n\r\n[/bt_text][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/3\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"special-offers\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"2/3\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#e5e5e5\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"322\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"width: 60px; margin-top: -28px;\"][/bt_image][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"7/12\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Activities\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Phasellus blandit a massa vitae congue. Nam ex massa, mattis ut sapien sit amet, consequat sodales risus. Sed interdum, ligula et lobortis faucibus, sem sem placerat augue, eget scelerisque turpis lorem et tellus.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][/bt_column][bt_column width=\"5/12\"][/bt_column][/bt_row][/bt_section][bt_section layout=\"wide\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"dark\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#e5e5e5\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"73\" caption_title=\"Beach voleyball\" caption_text=\"Enjoy the game\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"ENJOY THE GAME\" headline=\"Beach Voleyball\" headline_size=\"medium\" dash=\"top\" subheadline=\"Beach volleyball is ouy visitors favourite sport, highly enjoyable for everyone young or old. Just gather your team on the beach and find the opponents in a matter of minutes. And show what you can do, be a winner!\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_e9ac\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e040\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e041\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"74\" el_class=\"\" el_style=\"\"][bt_image image=\"74\" caption_title=\"Horseback riding\" caption_text=\"Enjoy the beach\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Enjoy the beach\" headline=\"Horseback riding\" headline_size=\"medium\" dash=\"top\" subheadline=\"How about a lazy afternoon with your friends on a hors, while the sun goes down? If you want to chill out, our horse riding team will teach you in a matter of minutes and help you wind down after a good day on the sun.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_ea13\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1e\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e05b\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"75\" el_class=\"\" el_style=\"\"][bt_image image=\"75\" caption_title=\"Waterskiing\" caption_text=\"Enjoy the sea\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Enjoy the sea\" headline=\"Waterskiing\" headline_size=\"medium\" dash=\"top\" subheadline=\"If you are a big fan of water sports, then why not try the waterskiing or waterboarding? At hotel California you will find there\'s an amateur champoionship every year. Rated as the most fun activity by our visitors.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_e05b\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9a3\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9e5\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"76\" el_class=\"\" el_style=\"\"][bt_image image=\"76\" caption_title=\"Paragliding\" caption_text=\"Enjoy the sky\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Enjoy the sky\" headline=\"Parasailing\" headline_size=\"medium\" dash=\"top\" subheadline=\"Enjoy the thrill on the sky with our parasailing team and feel the California sun on your face. The team will help you get your adrenaline high and will be capuring your moments on a high-definition camera.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_ea2f\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"s7_e67b\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9f3\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_slider height=\"auto\" auto_play=\"\" hide_arrows=\"\" hide_paging=\"btSliderHidePaging\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/6\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"78\" caption_text=\"\" size=\"\" shape=\"circle\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][bt_header superheadline=\"June 2016\" headline=\"Alan Jones\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][/bt_column_inner][bt_column_inner width=\"5/6\"][bt_text]\r\n<blockquote>If you chose to stay with us you will enjoy modern home comforts in a traditional setting. Whether you are looking for a short weekend break or a longer holiday, we offer a range of packages that we think cater for all.</blockquote>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/6\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"447\" caption_text=\"\" size=\"\" shape=\"circle\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][/bt_image][bt_header superheadline=\"July 2016\" headline=\"Adrianne White\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][bt_column_inner width=\"5/6\"][bt_text]\r\n<blockquote>If you chose to stay with us you will enjoy modern home comforts in a traditional setting. Whether you are looking for a short weekend break or a longer holiday, we offer a range of packages that we think cater for all.</blockquote>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/1\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_text]\r\n<blockquote>Our mission: to connect our members and our diverse community to the boundless recreational opportunities and proper stewardship of the Monterey Bay and the Pacific Ocean.</blockquote>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][/bt_slider][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/3\" align=\"left\" vertical_align=\"btMiddleVertical\" border=\"no_border\" cell_padding=\"btDoublePadding\" animation=\"animate animate-fadein\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"#e5e5e5\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"IN A NUTSHELL\" headline=\"Hotel California\" headline_size=\"large\" dash=\"bottom\" subheadline=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer mollis viverra diam ac ornare. Donec rhoncus nisi in felis congue, at pulvinar nibh dapibus.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_button text=\"READ MORE\" icon=\"no_icon\" url=\"\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"ExtraSmall\" width=\"Normal\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"2/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_slider height=\"auto\" auto_play=\"\" hide_arrows=\"\" hide_paging=\"btSliderHidePaging\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"81\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"82\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"83\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"84\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"85\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][/bt_slider][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\"][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"2/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_gmaps latitude=\"36.602383\" longitude=\"-121.879245 \" zoom=\"11\" icon=\"342\" height=\"400px\" primary_color=\"\" secondary_color=\"\" water_color=\"\" custom_style=\"WwogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJhZG1pbmlzdHJhdGl2ZSIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImxhYmVscy50ZXh0LmZpbGwiLAogICAgICAgICJzdHlsZXJzIjogWwogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAiY29sb3IiOiAiIzQ0NDQ0NCIKICAgICAgICAgICAgfQogICAgICAgIF0KICAgIH0sCiAgICB7CiAgICAgICAgImZlYXR1cmVUeXBlIjogImxhbmRzY2FwZSIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJjb2xvciI6ICIjZjJmMmYyIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAicG9pIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiYWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInZpc2liaWxpdHkiOiAib2ZmIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAicm9hZCIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJzYXR1cmF0aW9uIjogLTEwMAogICAgICAgICAgICB9LAogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAibGlnaHRuZXNzIjogNDUKICAgICAgICAgICAgfQogICAgICAgIF0KICAgIH0sCiAgICB7CiAgICAgICAgImZlYXR1cmVUeXBlIjogInJvYWQuaGlnaHdheSIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogInNpbXBsaWZpZWQiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJyb2FkLmhpZ2h3YXkiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJnZW9tZXRyeSIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogInNpbXBsaWZpZWQiCiAgICAgICAgICAgIH0sCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJjb2xvciI6ICIjZDc3Mjg3IgogICAgICAgICAgICB9LAogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAibGlnaHRuZXNzIjogIjAiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJyb2FkLmhpZ2h3YXkiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJsYWJlbHMudGV4dCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogIm9uIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAicm9hZC5oaWdod2F5IiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAibGFiZWxzLmljb24iLAogICAgICAgICJzdHlsZXJzIjogWwogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAidmlzaWJpbGl0eSI6ICJvbiIKICAgICAgICAgICAgfQogICAgICAgIF0KICAgIH0sCiAgICB7CiAgICAgICAgImZlYXR1cmVUeXBlIjogInJvYWQuYXJ0ZXJpYWwiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJhbGwiLAogICAgICAgICJzdHlsZXJzIjogWwogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAidmlzaWJpbGl0eSI6ICJvbiIKICAgICAgICAgICAgfQogICAgICAgIF0KICAgIH0sCiAgICB7CiAgICAgICAgImZlYXR1cmVUeXBlIjogInJvYWQuYXJ0ZXJpYWwiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJnZW9tZXRyeS5maWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgImNvbG9yIjogIiNkNzcyODciCiAgICAgICAgICAgIH0sCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJsaWdodG5lc3MiOiAiNzUiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJyb2FkLmFydGVyaWFsIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAibGFiZWxzLmljb24iLAogICAgICAgICJzdHlsZXJzIjogWwogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAidmlzaWJpbGl0eSI6ICJvZmYiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJyb2FkLmxvY2FsIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiZ2VvbWV0cnkuZmlsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJsaWdodG5lc3MiOiAiNzUiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJ0cmFuc2l0IiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiYWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInZpc2liaWxpdHkiOiAib2ZmIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAidHJhbnNpdC5saW5lIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiYWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInZpc2liaWxpdHkiOiAib24iCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJ0cmFuc2l0LnN0YXRpb24uYnVzIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiYWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInZpc2liaWxpdHkiOiAib24iCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJ0cmFuc2l0LnN0YXRpb24ucmFpbCIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogIm9uIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAidHJhbnNpdC5zdGF0aW9uLnJhaWwiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJsYWJlbHMuaWNvbiIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ3ZWlnaHQiOiAiMC4wMSIKICAgICAgICAgICAgfSwKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgImh1ZSI6ICIjZmYwMDM1IgogICAgICAgICAgICB9LAogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAibGlnaHRuZXNzIjogIjAiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJ3YXRlciIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogIm9uIgogICAgICAgICAgICB9LAogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAiY29sb3IiOiAiIzgwZTRkOCIKICAgICAgICAgICAgfSwKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgImxpZ2h0bmVzcyI6ICIyNSIKICAgICAgICAgICAgfSwKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInNhdHVyYXRpb24iOiAiLTIzIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfQpd\" el_class=\"\" el_style=\"\" api_key=\"AIzaSyBda9LxQ-Wztqsk6aFI7SkcdiypnKTPfiI\"][/bt_gmaps][/bt_column][bt_column width=\"1/3\" align=\"left\" vertical_align=\"btMiddleVertical\" border=\"no_border\" cell_padding=\"btDoublePadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"#e5e5e5\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_service icon=\"s7_e638\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoMediumSize\" url=\"\" headline=\"Address\" dash=\"\" text=\"3216 W Highland Boulevard\r\nSan Diego, California\" el_class=\"\" el_style=\"\" superheadline=\"\"][/bt_service][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSemiSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_service icon=\"s7_e670\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoMediumSize\" url=\"\" headline=\"Phone\" dash=\"\" text=\"+555-40-220-6672\" el_class=\"\" el_style=\"\" superheadline=\"\"][/bt_service][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSemiSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_service icon=\"s7_e63a\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoMediumSize\" url=\"\" headline=\"Email\" dash=\"\" text=\"office@california.hotel\" el_class=\"\" el_style=\"\" superheadline=\"\"][/bt_service][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"yes\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"7/12\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"News <i>&</i> Blog\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Morbi pharetra faucibus purus, nec pretium enim luctus quis. Pellentesque aliquet venenatis ante, quis pretium neque tristique eget. Integer in luctus urna. Aenean rutrum sodales pharetra.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"5/12\"][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_latest_posts number=\"3\" category=\"\" format=\"horizontal\" post_type=\"blog\" show_excerpt=\"yes\" show_date=\"yes\" show_author=\"yes\" el_class=\"\" el_style=\"\"][/bt_latest_posts][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"321\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"0.3\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Follow us\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Find out what’s hot and new, and get discounts for being a loyal customer and a Hotel California fan.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_icons][bt_icon icon=\"fa_f09a\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f099\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f0d5\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_column][/bt_row][/bt_section]','Street view','\n ','inherit','closed','closed','','837-revision-v1','','','2021-04-07 04:30:57','2021-04-07 04:30:57','',837,'http://mpycdev.theomggroup.com/?p=1034',0,'revision','',0);
INSERT INTO `smrc_posts` VALUES (1036,1,'2021-04-07 04:33:50','2021-04-07 04:33:50','[bt_section layout=\"wide\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\"][bt_slider height=\"auto\" auto_play=\"5000\" hide_arrows=\"\" hide_paging=\"\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item image=\"1027\" el_class=\"btLightSkin\" el_style=\"\"][bt_row_inner][bt_column_inner width=\"1/2\"][/bt_column_inner][bt_column_inner width=\"1/2\" align=\"left\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"animate animate-fadein animate-moveleft\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_hr top_spaced=\"topExtraSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Welcome to the\r\n<i>Hotel California</i>\" headline_size=\"huge\" dash=\"bottom\" subheadline=\"At the heart of San Diego, on one of the most colorful beaches, right next to the Pacific ocean, lies the Hotel California, most famous for it’s easy going staff and vacation you’ll never forget...\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_button text=\"Check our OFFERS & DEALS\" icon=\"fa_f061\" url=\"#special-offers\" target=\"no_target\" style=\"Outline\" icon_position=\"Left\" color=\"Accent\" size=\"Small\" width=\"Normal\" el_class=\"\" el_style=\"\"][/bt_button][bt_button text=\"BOOK NOW\" icon=\"no_icon\" url=\"rooms\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Normal\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topSpaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][/bt_slider_item][bt_slider_item image=\"1025\" el_class=\"\" el_style=\"\"][bt_row_inner][bt_column_inner width=\"2/3\" align=\"left\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"animate animate-fadein animate-moveleft\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_hr top_spaced=\"topExtraSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"The art of meeting your\r\nhighest <i>expectations</i>\" headline_size=\"huge\" dash=\"bottom\" subheadline=\"Enjoying the sun and sea has never been so easy. At the beach of hotel California, you\'ll find our most complete service, great seaside and easy going staff.\r\nHotel California. Everything. Right where you need it.\" el_class=\"\" el_style=\"max-width: 660px;\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_button text=\"Check our OFFERS & DEALS\" icon=\"fa_f061\" url=\"#special-offers\" target=\"no_target\" style=\"Outline\" icon_position=\"Left\" color=\"Accent\" size=\"Small\" width=\"Normal\" el_class=\"\" el_style=\"\"][/bt_button][bt_button text=\"BOOK NOW\" icon=\"no_icon\" url=\"rooms\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Normal\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topSpaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"1/3\"][/bt_column_inner][/bt_row_inner][/bt_slider_item][bt_slider_item image=\"1035\" el_class=\"btLightSkin\" el_style=\"\"][bt_row_inner][bt_column_inner width=\"1/2\"][/bt_column_inner][bt_column_inner width=\"1/2\" align=\"left\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"animate animate-fadein animate-moveleft\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_hr top_spaced=\"topExtraSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Unique <i>location,</i>\r\nservice and stay\" headline_size=\"huge\" dash=\"bottom\" subheadline=\"At the heart of San Diego, on one of the most colorful beaches, right next to the Pacific ocean, lies the Hotel California, most famous for it’s easy going staff and vacation you’ll never forget...\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_button text=\"Check our OFFERS & DEALS\" icon=\"fa_f061\" url=\"#special-offers\" target=\"no_target\" style=\"Outline\" icon_position=\"Left\" color=\"Accent\" size=\"Small\" width=\"Normal\" el_class=\"\" el_style=\"\"][/bt_button][bt_button text=\"BOOK NOW\" icon=\"no_icon\" url=\"rooms\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Normal\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topSpaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][/bt_slider_item][/bt_slider][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"dark\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#000080\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\"][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\r\n<h4><em>founded 1953</em></h4>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSemiSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"2/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Rooms & Suites\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"If you chose to stay with us you will enjoy modern home comforts in a traditional setting. Whether you are looking for a short weekend break or a longer holiday, we offer a range of packages that will cater for all.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/3\"][/bt_column][/bt_row][bt_row][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"44\" caption_text=\"View\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption=\"Double room\" show_titles=\"no\" caption_title=\"Room details\"][bt_header superheadline=\"Room features\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"cs_ea18\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9c2\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea2c\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1c\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"DELUXE\" headline=\"Double Room\" headline_size=\"medium\" dash=\"top\" subheadline=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer mollis viverra diam ac ornare. Donec rhoncus nisi in felis congue, at pulvinar nibh dapibus.\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/2\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"room-details\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"1/2\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"43\" caption_text=\"\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"Room features\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"cs_ea18\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9c5\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1a\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1c\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"EXECUTIVE\" headline=\"Junior Suite\" headline_size=\"medium\" dash=\"top\" subheadline=\"Sed sodales tortor non metus iaculis, non commodo ipsum mattis. Ut at dolor elit. Proin dignissim, lacus eget ullamcorper consectetur, mauris mi mattis elit sagittis.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/2\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"room-details\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"1/2\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"42\" caption_text=\"\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"Room features\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"cs_ea30\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea18\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea2d\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1c\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"DELUXE\" headline=\"Double Room\" headline_size=\"medium\" dash=\"top\" subheadline=\"Mauris suscipit lectus pellentesque ante efficitur, at dignissim tellus maximus. Sed leo magna, faucibus non ante non, pulvinar scelerisque magna sit elis.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/2\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"room-details\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"1/2\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"41\" caption_text=\"\" size=\"medium\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"Room features\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"cs_ea18\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1b\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea21\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1c\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"DELUXE\" headline=\"Family Room\" headline_size=\"medium\" dash=\"top\" subheadline=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer mollis viverra diam ac ornare. Donec rhoncus nisi in felis congue, at pulvinar nibh dapibus.\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/2\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"room-details\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"1/2\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"66\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"0.7\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"special-offers\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"323\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"width: 60px; margin-top: -28px;\"][/bt_image][bt_hr top_spaced=\"topSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"1/2\"][/bt_column][bt_column width=\"1/2\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"GET THE BEST RATE\" headline=\"Offers <i>&</i> Deals\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"If you chose to stay with us you will enjoy modern home comforts in a traditional setting. Whether you are looking for a short weekend break or a longer holiday, we offer a range of packages that we think cater for all.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"1/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"0.7\" inner_background_color=\"#ffffff\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"67\" caption_text=\"Get together\" size=\"\" shape=\"square\" url=\"special-offers\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"Family vacation\" show_titles=\"no\"][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"Get together\" headline=\"Family vacation\" headline_size=\"medium\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"fa_f207\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f13d\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f1eb\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f206\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f1ae\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\r\n\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Integer mollis viverra diam ac ornare. Donec rhoncus nisi in felis congue, at pulvinar nibh dapibus.\r\n\r\n[/bt_text][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/3\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"special-offers\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"2/3\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"0.7\" inner_background_color=\"#ffffff\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"68\" caption_text=\"Celebrate\" size=\"\" shape=\"square\" url=\"special-offers\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"Newlyweds weekend\" show_titles=\"no\"][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"Celebrate\" headline=\"Newlyweds weekend\" headline_size=\"medium\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"fa_f1ba\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f072\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f228\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\r\n\r\nSed ut metus eu neque commodo fringilla imperdiet sed nibh. Sed volutpat fermentum ligula, et maximus ex ultricies sit amet.\r\n\r\n[/bt_text][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/3\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"special-offers\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"2/3\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"0.7\" inner_background_color=\"#ffffff\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"725\" caption_text=\"Procrastinate\" size=\"\" shape=\"square\" url=\"special-offers\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"Lazy weekend\" show_titles=\"no\"][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"Procrastinate\" headline=\"Lazy weekend\" headline_size=\"medium\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"fa_f1ba\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f072\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f1eb\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f000\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f185\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\r\n\r\nPhasellus non bibendum augue. Duis nibh felis, volutpat vitae pulvinar at, tincidunt eget mi. Donec venenatis condimentum fermentum.\r\n\r\n[/bt_text][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/3\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"special-offers\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"2/3\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#e5e5e5\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"322\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"width: 60px; margin-top: -28px;\"][/bt_image][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"7/12\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Activities\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Phasellus blandit a massa vitae congue. Nam ex massa, mattis ut sapien sit amet, consequat sodales risus. Sed interdum, ligula et lobortis faucibus, sem sem placerat augue, eget scelerisque turpis lorem et tellus.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][/bt_column][bt_column width=\"5/12\"][/bt_column][/bt_row][/bt_section][bt_section layout=\"wide\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"dark\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#e5e5e5\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"73\" caption_title=\"Beach voleyball\" caption_text=\"Enjoy the game\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"ENJOY THE GAME\" headline=\"Beach Voleyball\" headline_size=\"medium\" dash=\"top\" subheadline=\"Beach volleyball is ouy visitors favourite sport, highly enjoyable for everyone young or old. Just gather your team on the beach and find the opponents in a matter of minutes. And show what you can do, be a winner!\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_e9ac\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e040\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e041\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"74\" el_class=\"\" el_style=\"\"][bt_image image=\"74\" caption_title=\"Horseback riding\" caption_text=\"Enjoy the beach\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Enjoy the beach\" headline=\"Horseback riding\" headline_size=\"medium\" dash=\"top\" subheadline=\"How about a lazy afternoon with your friends on a hors, while the sun goes down? If you want to chill out, our horse riding team will teach you in a matter of minutes and help you wind down after a good day on the sun.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_ea13\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1e\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e05b\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"75\" el_class=\"\" el_style=\"\"][bt_image image=\"75\" caption_title=\"Waterskiing\" caption_text=\"Enjoy the sea\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Enjoy the sea\" headline=\"Waterskiing\" headline_size=\"medium\" dash=\"top\" subheadline=\"If you are a big fan of water sports, then why not try the waterskiing or waterboarding? At hotel California you will find there\'s an amateur champoionship every year. Rated as the most fun activity by our visitors.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_e05b\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9a3\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9e5\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"76\" el_class=\"\" el_style=\"\"][bt_image image=\"76\" caption_title=\"Paragliding\" caption_text=\"Enjoy the sky\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Enjoy the sky\" headline=\"Parasailing\" headline_size=\"medium\" dash=\"top\" subheadline=\"Enjoy the thrill on the sky with our parasailing team and feel the California sun on your face. The team will help you get your adrenaline high and will be capuring your moments on a high-definition camera.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_ea2f\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"s7_e67b\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9f3\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_slider height=\"auto\" auto_play=\"\" hide_arrows=\"\" hide_paging=\"btSliderHidePaging\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/6\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"78\" caption_text=\"\" size=\"\" shape=\"circle\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][bt_header superheadline=\"June 2016\" headline=\"Alan Jones\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][/bt_column_inner][bt_column_inner width=\"5/6\"][bt_text]\r\n<blockquote>If you chose to stay with us you will enjoy modern home comforts in a traditional setting. Whether you are looking for a short weekend break or a longer holiday, we offer a range of packages that we think cater for all.</blockquote>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/6\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"447\" caption_text=\"\" size=\"\" shape=\"circle\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][/bt_image][bt_header superheadline=\"July 2016\" headline=\"Adrianne White\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][bt_column_inner width=\"5/6\"][bt_text]\r\n<blockquote>If you chose to stay with us you will enjoy modern home comforts in a traditional setting. Whether you are looking for a short weekend break or a longer holiday, we offer a range of packages that we think cater for all.</blockquote>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/1\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_text]\r\n<blockquote>Our mission: to connect our members and our diverse community to the boundless recreational opportunities and proper stewardship of the Monterey Bay and the Pacific Ocean.</blockquote>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][/bt_slider][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/3\" align=\"left\" vertical_align=\"btMiddleVertical\" border=\"no_border\" cell_padding=\"btDoublePadding\" animation=\"animate animate-fadein\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"#e5e5e5\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"IN A NUTSHELL\" headline=\"Hotel California\" headline_size=\"large\" dash=\"bottom\" subheadline=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer mollis viverra diam ac ornare. Donec rhoncus nisi in felis congue, at pulvinar nibh dapibus.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_button text=\"READ MORE\" icon=\"no_icon\" url=\"\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"ExtraSmall\" width=\"Normal\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"2/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_slider height=\"auto\" auto_play=\"\" hide_arrows=\"\" hide_paging=\"btSliderHidePaging\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"81\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"82\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"83\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"84\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"85\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][/bt_slider][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\"][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"2/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_gmaps latitude=\"36.602383\" longitude=\"-121.879245 \" zoom=\"11\" icon=\"342\" height=\"400px\" primary_color=\"\" secondary_color=\"\" water_color=\"\" custom_style=\"WwogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJhZG1pbmlzdHJhdGl2ZSIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImxhYmVscy50ZXh0LmZpbGwiLAogICAgICAgICJzdHlsZXJzIjogWwogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAiY29sb3IiOiAiIzQ0NDQ0NCIKICAgICAgICAgICAgfQogICAgICAgIF0KICAgIH0sCiAgICB7CiAgICAgICAgImZlYXR1cmVUeXBlIjogImxhbmRzY2FwZSIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJjb2xvciI6ICIjZjJmMmYyIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAicG9pIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiYWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInZpc2liaWxpdHkiOiAib2ZmIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAicm9hZCIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJzYXR1cmF0aW9uIjogLTEwMAogICAgICAgICAgICB9LAogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAibGlnaHRuZXNzIjogNDUKICAgICAgICAgICAgfQogICAgICAgIF0KICAgIH0sCiAgICB7CiAgICAgICAgImZlYXR1cmVUeXBlIjogInJvYWQuaGlnaHdheSIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogInNpbXBsaWZpZWQiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJyb2FkLmhpZ2h3YXkiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJnZW9tZXRyeSIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogInNpbXBsaWZpZWQiCiAgICAgICAgICAgIH0sCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJjb2xvciI6ICIjZDc3Mjg3IgogICAgICAgICAgICB9LAogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAibGlnaHRuZXNzIjogIjAiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJyb2FkLmhpZ2h3YXkiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJsYWJlbHMudGV4dCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogIm9uIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAicm9hZC5oaWdod2F5IiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAibGFiZWxzLmljb24iLAogICAgICAgICJzdHlsZXJzIjogWwogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAidmlzaWJpbGl0eSI6ICJvbiIKICAgICAgICAgICAgfQogICAgICAgIF0KICAgIH0sCiAgICB7CiAgICAgICAgImZlYXR1cmVUeXBlIjogInJvYWQuYXJ0ZXJpYWwiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJhbGwiLAogICAgICAgICJzdHlsZXJzIjogWwogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAidmlzaWJpbGl0eSI6ICJvbiIKICAgICAgICAgICAgfQogICAgICAgIF0KICAgIH0sCiAgICB7CiAgICAgICAgImZlYXR1cmVUeXBlIjogInJvYWQuYXJ0ZXJpYWwiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJnZW9tZXRyeS5maWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgImNvbG9yIjogIiNkNzcyODciCiAgICAgICAgICAgIH0sCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJsaWdodG5lc3MiOiAiNzUiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJyb2FkLmFydGVyaWFsIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAibGFiZWxzLmljb24iLAogICAgICAgICJzdHlsZXJzIjogWwogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAidmlzaWJpbGl0eSI6ICJvZmYiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJyb2FkLmxvY2FsIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiZ2VvbWV0cnkuZmlsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJsaWdodG5lc3MiOiAiNzUiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJ0cmFuc2l0IiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiYWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInZpc2liaWxpdHkiOiAib2ZmIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAidHJhbnNpdC5saW5lIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiYWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInZpc2liaWxpdHkiOiAib24iCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJ0cmFuc2l0LnN0YXRpb24uYnVzIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiYWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInZpc2liaWxpdHkiOiAib24iCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJ0cmFuc2l0LnN0YXRpb24ucmFpbCIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogIm9uIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAidHJhbnNpdC5zdGF0aW9uLnJhaWwiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJsYWJlbHMuaWNvbiIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ3ZWlnaHQiOiAiMC4wMSIKICAgICAgICAgICAgfSwKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgImh1ZSI6ICIjZmYwMDM1IgogICAgICAgICAgICB9LAogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAibGlnaHRuZXNzIjogIjAiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJ3YXRlciIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogIm9uIgogICAgICAgICAgICB9LAogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAiY29sb3IiOiAiIzgwZTRkOCIKICAgICAgICAgICAgfSwKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgImxpZ2h0bmVzcyI6ICIyNSIKICAgICAgICAgICAgfSwKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInNhdHVyYXRpb24iOiAiLTIzIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfQpd\" el_class=\"\" el_style=\"\" api_key=\"AIzaSyBda9LxQ-Wztqsk6aFI7SkcdiypnKTPfiI\"][/bt_gmaps][/bt_column][bt_column width=\"1/3\" align=\"left\" vertical_align=\"btMiddleVertical\" border=\"no_border\" cell_padding=\"btDoublePadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"#e5e5e5\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_service icon=\"s7_e638\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoMediumSize\" url=\"\" headline=\"Address\" dash=\"\" text=\"3216 W Highland Boulevard\r\nSan Diego, California\" el_class=\"\" el_style=\"\" superheadline=\"\"][/bt_service][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSemiSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_service icon=\"s7_e670\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoMediumSize\" url=\"\" headline=\"Phone\" dash=\"\" text=\"+555-40-220-6672\" el_class=\"\" el_style=\"\" superheadline=\"\"][/bt_service][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSemiSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_service icon=\"s7_e63a\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoMediumSize\" url=\"\" headline=\"Email\" dash=\"\" text=\"office@california.hotel\" el_class=\"\" el_style=\"\" superheadline=\"\"][/bt_service][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"yes\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"7/12\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"News <i>&</i> Blog\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Morbi pharetra faucibus purus, nec pretium enim luctus quis. Pellentesque aliquet venenatis ante, quis pretium neque tristique eget. Integer in luctus urna. Aenean rutrum sodales pharetra.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"5/12\"][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_latest_posts number=\"3\" category=\"\" format=\"horizontal\" post_type=\"blog\" show_excerpt=\"yes\" show_date=\"yes\" show_author=\"yes\" el_class=\"\" el_style=\"\"][/bt_latest_posts][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"321\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"0.3\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Follow us\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Find out what’s hot and new, and get discounts for being a loyal customer and a Hotel California fan.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_icons][bt_icon icon=\"fa_f09a\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f099\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f0d5\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_column][/bt_row][/bt_section]','Street view','\n ','inherit','closed','closed','','837-revision-v1','','','2021-04-07 04:33:50','2021-04-07 04:33:50','',837,'http://mpycdev.theomggroup.com/?p=1036',0,'revision','',0);
INSERT INTO `smrc_posts` VALUES (1037,1,'2021-04-07 04:36:10','2021-04-07 04:36:10','[bt_section layout=\"wide\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\"][bt_slider height=\"auto\" auto_play=\"5000\" hide_arrows=\"\" hide_paging=\"\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item image=\"1027\" el_class=\"btLightSkin\" el_style=\"\"][bt_row_inner][bt_column_inner width=\"1/1\"][/bt_column_inner][/bt_row_inner][/bt_slider_item][bt_slider_item image=\"1025\" el_class=\"\" el_style=\"\"][bt_row_inner][bt_column_inner width=\"2/3\" align=\"left\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"animate animate-fadein animate-moveleft\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_hr top_spaced=\"topExtraSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"The art of meeting your\r\nhighest <i>expectations</i>\" headline_size=\"huge\" dash=\"bottom\" subheadline=\"Enjoying the sun and sea has never been so easy. At the beach of hotel California, you\'ll find our most complete service, great seaside and easy going staff.\r\nHotel California. Everything. Right where you need it.\" el_class=\"\" el_style=\"max-width: 660px;\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_button text=\"Check our OFFERS & DEALS\" icon=\"fa_f061\" url=\"#special-offers\" target=\"no_target\" style=\"Outline\" icon_position=\"Left\" color=\"Accent\" size=\"Small\" width=\"Normal\" el_class=\"\" el_style=\"\"][/bt_button][bt_button text=\"BOOK NOW\" icon=\"no_icon\" url=\"rooms\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Normal\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topSpaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"1/3\"][/bt_column_inner][/bt_row_inner][/bt_slider_item][bt_slider_item image=\"1035\" el_class=\"btLightSkin\" el_style=\"\"][bt_row_inner][bt_column_inner width=\"1/2\"][/bt_column_inner][bt_column_inner width=\"1/2\" align=\"left\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"animate animate-fadein animate-moveleft\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_hr top_spaced=\"topExtraSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Unique <i>location,</i>\r\nservice and stay\" headline_size=\"huge\" dash=\"bottom\" subheadline=\"At the heart of San Diego, on one of the most colorful beaches, right next to the Pacific ocean, lies the Hotel California, most famous for it’s easy going staff and vacation you’ll never forget...\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_button text=\"Check our OFFERS & DEALS\" icon=\"fa_f061\" url=\"#special-offers\" target=\"no_target\" style=\"Outline\" icon_position=\"Left\" color=\"Accent\" size=\"Small\" width=\"Normal\" el_class=\"\" el_style=\"\"][/bt_button][bt_button text=\"BOOK NOW\" icon=\"no_icon\" url=\"rooms\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Normal\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topSpaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][/bt_slider_item][/bt_slider][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"dark\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#000080\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\"][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\r\n<h4><em>founded 1953</em></h4>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSemiSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"2/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Rooms & Suites\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"If you chose to stay with us you will enjoy modern home comforts in a traditional setting. Whether you are looking for a short weekend break or a longer holiday, we offer a range of packages that will cater for all.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/3\"][/bt_column][/bt_row][bt_row][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"44\" caption_text=\"View\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption=\"Double room\" show_titles=\"no\" caption_title=\"Room details\"][bt_header superheadline=\"Room features\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"cs_ea18\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9c2\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea2c\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1c\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"DELUXE\" headline=\"Double Room\" headline_size=\"medium\" dash=\"top\" subheadline=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer mollis viverra diam ac ornare. Donec rhoncus nisi in felis congue, at pulvinar nibh dapibus.\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/2\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"room-details\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"1/2\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"43\" caption_text=\"\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"Room features\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"cs_ea18\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9c5\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1a\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1c\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"EXECUTIVE\" headline=\"Junior Suite\" headline_size=\"medium\" dash=\"top\" subheadline=\"Sed sodales tortor non metus iaculis, non commodo ipsum mattis. Ut at dolor elit. Proin dignissim, lacus eget ullamcorper consectetur, mauris mi mattis elit sagittis.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/2\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"room-details\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"1/2\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"42\" caption_text=\"\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"Room features\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"cs_ea30\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea18\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea2d\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1c\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"DELUXE\" headline=\"Double Room\" headline_size=\"medium\" dash=\"top\" subheadline=\"Mauris suscipit lectus pellentesque ante efficitur, at dignissim tellus maximus. Sed leo magna, faucibus non ante non, pulvinar scelerisque magna sit elis.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/2\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"room-details\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"1/2\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"41\" caption_text=\"\" size=\"medium\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"Room features\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"cs_ea18\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1b\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea21\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1c\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"DELUXE\" headline=\"Family Room\" headline_size=\"medium\" dash=\"top\" subheadline=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer mollis viverra diam ac ornare. Donec rhoncus nisi in felis congue, at pulvinar nibh dapibus.\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/2\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"room-details\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"1/2\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"66\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"0.7\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"special-offers\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"323\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"width: 60px; margin-top: -28px;\"][/bt_image][bt_hr top_spaced=\"topSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"1/2\"][/bt_column][bt_column width=\"1/2\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"GET THE BEST RATE\" headline=\"Offers <i>&</i> Deals\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"If you chose to stay with us you will enjoy modern home comforts in a traditional setting. Whether you are looking for a short weekend break or a longer holiday, we offer a range of packages that we think cater for all.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"1/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"0.7\" inner_background_color=\"#ffffff\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"67\" caption_text=\"Get together\" size=\"\" shape=\"square\" url=\"special-offers\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"Family vacation\" show_titles=\"no\"][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"Get together\" headline=\"Family vacation\" headline_size=\"medium\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"fa_f207\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f13d\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f1eb\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f206\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f1ae\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\r\n\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Integer mollis viverra diam ac ornare. Donec rhoncus nisi in felis congue, at pulvinar nibh dapibus.\r\n\r\n[/bt_text][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/3\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"special-offers\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"2/3\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"0.7\" inner_background_color=\"#ffffff\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"68\" caption_text=\"Celebrate\" size=\"\" shape=\"square\" url=\"special-offers\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"Newlyweds weekend\" show_titles=\"no\"][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"Celebrate\" headline=\"Newlyweds weekend\" headline_size=\"medium\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"fa_f1ba\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f072\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f228\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\r\n\r\nSed ut metus eu neque commodo fringilla imperdiet sed nibh. Sed volutpat fermentum ligula, et maximus ex ultricies sit amet.\r\n\r\n[/bt_text][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/3\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"special-offers\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"2/3\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"0.7\" inner_background_color=\"#ffffff\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"725\" caption_text=\"Procrastinate\" size=\"\" shape=\"square\" url=\"special-offers\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"Lazy weekend\" show_titles=\"no\"][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"Procrastinate\" headline=\"Lazy weekend\" headline_size=\"medium\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"fa_f1ba\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f072\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f1eb\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f000\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f185\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\r\n\r\nPhasellus non bibendum augue. Duis nibh felis, volutpat vitae pulvinar at, tincidunt eget mi. Donec venenatis condimentum fermentum.\r\n\r\n[/bt_text][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/3\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"special-offers\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"2/3\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#e5e5e5\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"322\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"width: 60px; margin-top: -28px;\"][/bt_image][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"7/12\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Activities\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Phasellus blandit a massa vitae congue. Nam ex massa, mattis ut sapien sit amet, consequat sodales risus. Sed interdum, ligula et lobortis faucibus, sem sem placerat augue, eget scelerisque turpis lorem et tellus.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][/bt_column][bt_column width=\"5/12\"][/bt_column][/bt_row][/bt_section][bt_section layout=\"wide\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"dark\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#e5e5e5\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"73\" caption_title=\"Beach voleyball\" caption_text=\"Enjoy the game\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"ENJOY THE GAME\" headline=\"Beach Voleyball\" headline_size=\"medium\" dash=\"top\" subheadline=\"Beach volleyball is ouy visitors favourite sport, highly enjoyable for everyone young or old. Just gather your team on the beach and find the opponents in a matter of minutes. And show what you can do, be a winner!\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_e9ac\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e040\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e041\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"74\" el_class=\"\" el_style=\"\"][bt_image image=\"74\" caption_title=\"Horseback riding\" caption_text=\"Enjoy the beach\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Enjoy the beach\" headline=\"Horseback riding\" headline_size=\"medium\" dash=\"top\" subheadline=\"How about a lazy afternoon with your friends on a hors, while the sun goes down? If you want to chill out, our horse riding team will teach you in a matter of minutes and help you wind down after a good day on the sun.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_ea13\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1e\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e05b\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"75\" el_class=\"\" el_style=\"\"][bt_image image=\"75\" caption_title=\"Waterskiing\" caption_text=\"Enjoy the sea\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Enjoy the sea\" headline=\"Waterskiing\" headline_size=\"medium\" dash=\"top\" subheadline=\"If you are a big fan of water sports, then why not try the waterskiing or waterboarding? At hotel California you will find there\'s an amateur champoionship every year. Rated as the most fun activity by our visitors.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_e05b\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9a3\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9e5\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"76\" el_class=\"\" el_style=\"\"][bt_image image=\"76\" caption_title=\"Paragliding\" caption_text=\"Enjoy the sky\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Enjoy the sky\" headline=\"Parasailing\" headline_size=\"medium\" dash=\"top\" subheadline=\"Enjoy the thrill on the sky with our parasailing team and feel the California sun on your face. The team will help you get your adrenaline high and will be capuring your moments on a high-definition camera.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_ea2f\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"s7_e67b\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9f3\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_slider height=\"auto\" auto_play=\"\" hide_arrows=\"\" hide_paging=\"btSliderHidePaging\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/6\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"78\" caption_text=\"\" size=\"\" shape=\"circle\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][bt_header superheadline=\"June 2016\" headline=\"Alan Jones\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][/bt_column_inner][bt_column_inner width=\"5/6\"][bt_text]\r\n<blockquote>If you chose to stay with us you will enjoy modern home comforts in a traditional setting. Whether you are looking for a short weekend break or a longer holiday, we offer a range of packages that we think cater for all.</blockquote>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/6\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"447\" caption_text=\"\" size=\"\" shape=\"circle\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][/bt_image][bt_header superheadline=\"July 2016\" headline=\"Adrianne White\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][bt_column_inner width=\"5/6\"][bt_text]\r\n<blockquote>If you chose to stay with us you will enjoy modern home comforts in a traditional setting. Whether you are looking for a short weekend break or a longer holiday, we offer a range of packages that we think cater for all.</blockquote>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/1\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_text]\r\n<blockquote>Our mission: to connect our members and our diverse community to the boundless recreational opportunities and proper stewardship of the Monterey Bay and the Pacific Ocean.</blockquote>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][/bt_slider][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/3\" align=\"left\" vertical_align=\"btMiddleVertical\" border=\"no_border\" cell_padding=\"btDoublePadding\" animation=\"animate animate-fadein\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"#e5e5e5\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"IN A NUTSHELL\" headline=\"Hotel California\" headline_size=\"large\" dash=\"bottom\" subheadline=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer mollis viverra diam ac ornare. Donec rhoncus nisi in felis congue, at pulvinar nibh dapibus.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_button text=\"READ MORE\" icon=\"no_icon\" url=\"\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"ExtraSmall\" width=\"Normal\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"2/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_slider height=\"auto\" auto_play=\"\" hide_arrows=\"\" hide_paging=\"btSliderHidePaging\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"81\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"82\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"83\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"84\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"85\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][/bt_slider][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\"][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"2/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_gmaps latitude=\"36.602383\" longitude=\"-121.879245 \" zoom=\"11\" icon=\"342\" height=\"400px\" primary_color=\"\" secondary_color=\"\" water_color=\"\" custom_style=\"WwogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJhZG1pbmlzdHJhdGl2ZSIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImxhYmVscy50ZXh0LmZpbGwiLAogICAgICAgICJzdHlsZXJzIjogWwogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAiY29sb3IiOiAiIzQ0NDQ0NCIKICAgICAgICAgICAgfQogICAgICAgIF0KICAgIH0sCiAgICB7CiAgICAgICAgImZlYXR1cmVUeXBlIjogImxhbmRzY2FwZSIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJjb2xvciI6ICIjZjJmMmYyIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAicG9pIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiYWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInZpc2liaWxpdHkiOiAib2ZmIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAicm9hZCIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJzYXR1cmF0aW9uIjogLTEwMAogICAgICAgICAgICB9LAogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAibGlnaHRuZXNzIjogNDUKICAgICAgICAgICAgfQogICAgICAgIF0KICAgIH0sCiAgICB7CiAgICAgICAgImZlYXR1cmVUeXBlIjogInJvYWQuaGlnaHdheSIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogInNpbXBsaWZpZWQiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJyb2FkLmhpZ2h3YXkiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJnZW9tZXRyeSIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogInNpbXBsaWZpZWQiCiAgICAgICAgICAgIH0sCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJjb2xvciI6ICIjZDc3Mjg3IgogICAgICAgICAgICB9LAogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAibGlnaHRuZXNzIjogIjAiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJyb2FkLmhpZ2h3YXkiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJsYWJlbHMudGV4dCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogIm9uIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAicm9hZC5oaWdod2F5IiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAibGFiZWxzLmljb24iLAogICAgICAgICJzdHlsZXJzIjogWwogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAidmlzaWJpbGl0eSI6ICJvbiIKICAgICAgICAgICAgfQogICAgICAgIF0KICAgIH0sCiAgICB7CiAgICAgICAgImZlYXR1cmVUeXBlIjogInJvYWQuYXJ0ZXJpYWwiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJhbGwiLAogICAgICAgICJzdHlsZXJzIjogWwogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAidmlzaWJpbGl0eSI6ICJvbiIKICAgICAgICAgICAgfQogICAgICAgIF0KICAgIH0sCiAgICB7CiAgICAgICAgImZlYXR1cmVUeXBlIjogInJvYWQuYXJ0ZXJpYWwiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJnZW9tZXRyeS5maWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgImNvbG9yIjogIiNkNzcyODciCiAgICAgICAgICAgIH0sCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJsaWdodG5lc3MiOiAiNzUiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJyb2FkLmFydGVyaWFsIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAibGFiZWxzLmljb24iLAogICAgICAgICJzdHlsZXJzIjogWwogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAidmlzaWJpbGl0eSI6ICJvZmYiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJyb2FkLmxvY2FsIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiZ2VvbWV0cnkuZmlsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJsaWdodG5lc3MiOiAiNzUiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJ0cmFuc2l0IiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiYWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInZpc2liaWxpdHkiOiAib2ZmIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAidHJhbnNpdC5saW5lIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiYWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInZpc2liaWxpdHkiOiAib24iCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJ0cmFuc2l0LnN0YXRpb24uYnVzIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiYWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInZpc2liaWxpdHkiOiAib24iCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJ0cmFuc2l0LnN0YXRpb24ucmFpbCIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogIm9uIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAidHJhbnNpdC5zdGF0aW9uLnJhaWwiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJsYWJlbHMuaWNvbiIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ3ZWlnaHQiOiAiMC4wMSIKICAgICAgICAgICAgfSwKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgImh1ZSI6ICIjZmYwMDM1IgogICAgICAgICAgICB9LAogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAibGlnaHRuZXNzIjogIjAiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJ3YXRlciIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogIm9uIgogICAgICAgICAgICB9LAogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAiY29sb3IiOiAiIzgwZTRkOCIKICAgICAgICAgICAgfSwKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgImxpZ2h0bmVzcyI6ICIyNSIKICAgICAgICAgICAgfSwKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInNhdHVyYXRpb24iOiAiLTIzIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfQpd\" el_class=\"\" el_style=\"\" api_key=\"AIzaSyBda9LxQ-Wztqsk6aFI7SkcdiypnKTPfiI\"][/bt_gmaps][/bt_column][bt_column width=\"1/3\" align=\"left\" vertical_align=\"btMiddleVertical\" border=\"no_border\" cell_padding=\"btDoublePadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"#e5e5e5\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_service icon=\"s7_e638\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoMediumSize\" url=\"\" headline=\"Address\" dash=\"\" text=\"3216 W Highland Boulevard\r\nSan Diego, California\" el_class=\"\" el_style=\"\" superheadline=\"\"][/bt_service][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSemiSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_service icon=\"s7_e670\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoMediumSize\" url=\"\" headline=\"Phone\" dash=\"\" text=\"+555-40-220-6672\" el_class=\"\" el_style=\"\" superheadline=\"\"][/bt_service][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSemiSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_service icon=\"s7_e63a\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoMediumSize\" url=\"\" headline=\"Email\" dash=\"\" text=\"office@california.hotel\" el_class=\"\" el_style=\"\" superheadline=\"\"][/bt_service][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"yes\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"7/12\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"News <i>&</i> Blog\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Morbi pharetra faucibus purus, nec pretium enim luctus quis. Pellentesque aliquet venenatis ante, quis pretium neque tristique eget. Integer in luctus urna. Aenean rutrum sodales pharetra.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"5/12\"][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_latest_posts number=\"3\" category=\"\" format=\"horizontal\" post_type=\"blog\" show_excerpt=\"yes\" show_date=\"yes\" show_author=\"yes\" el_class=\"\" el_style=\"\"][/bt_latest_posts][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"321\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"0.3\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Follow us\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Find out what’s hot and new, and get discounts for being a loyal customer and a Hotel California fan.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_icons][bt_icon icon=\"fa_f09a\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f099\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f0d5\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_column][/bt_row][/bt_section]','Street view','\n ','inherit','closed','closed','','837-revision-v1','','','2021-04-07 04:36:10','2021-04-07 04:36:10','',837,'http://mpycdev.theomggroup.com/?p=1037',0,'revision','',0);
INSERT INTO `smrc_posts` VALUES (1038,1,'2021-04-07 04:36:39','2021-04-07 04:36:39','[bt_section layout=\"wide\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\"][bt_slider height=\"auto\" auto_play=\"5000\" hide_arrows=\"\" hide_paging=\"\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item image=\"1027\" el_class=\"btLightSkin\" el_style=\"\"][bt_row_inner][bt_column_inner width=\"1/2\"][/bt_column_inner][bt_column_inner width=\"1/2\" align=\"left\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"animate animate-fadein animate-moveleft\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_hr top_spaced=\"topExtraSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Welcome to the\r\n<i>Hotel California</i>\" headline_size=\"huge\" dash=\"bottom\" subheadline=\"At the heart of San Diego, on one of the most colorful beaches, right next to the Pacific ocean, lies the Hotel California, most famous for it’s easy going staff and vacation you’ll never forget...\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_button text=\"Check our OFFERS & DEALS\" icon=\"fa_f061\" url=\"#special-offers\" target=\"no_target\" style=\"Outline\" icon_position=\"Left\" color=\"Accent\" size=\"Small\" width=\"Normal\" el_class=\"\" el_style=\"\"][/bt_button][bt_button text=\"BOOK NOW\" icon=\"no_icon\" url=\"rooms\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Normal\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topSpaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][/bt_slider_item][bt_slider_item image=\"1025\" el_class=\"\" el_style=\"\"][bt_row_inner][bt_column_inner width=\"2/3\" align=\"left\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"animate animate-fadein animate-moveleft\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_hr top_spaced=\"topExtraSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"The art of meeting your\r\nhighest <i>expectations</i>\" headline_size=\"huge\" dash=\"bottom\" subheadline=\"Enjoying the sun and sea has never been so easy. At the beach of hotel California, you\'ll find our most complete service, great seaside and easy going staff.\r\nHotel California. Everything. Right where you need it.\" el_class=\"\" el_style=\"max-width: 660px;\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_button text=\"Check our OFFERS & DEALS\" icon=\"fa_f061\" url=\"#special-offers\" target=\"no_target\" style=\"Outline\" icon_position=\"Left\" color=\"Accent\" size=\"Small\" width=\"Normal\" el_class=\"\" el_style=\"\"][/bt_button][bt_button text=\"BOOK NOW\" icon=\"no_icon\" url=\"rooms\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Normal\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topSpaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"1/3\"][/bt_column_inner][/bt_row_inner][/bt_slider_item][bt_slider_item image=\"1035\" el_class=\"btLightSkin\" el_style=\"\"][bt_row_inner][bt_column_inner width=\"1/2\"][/bt_column_inner][bt_column_inner width=\"1/2\" align=\"left\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"animate animate-fadein animate-moveleft\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_hr top_spaced=\"topExtraSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Unique <i>location,</i>\r\nservice and stay\" headline_size=\"huge\" dash=\"bottom\" subheadline=\"At the heart of San Diego, on one of the most colorful beaches, right next to the Pacific ocean, lies the Hotel California, most famous for it’s easy going staff and vacation you’ll never forget...\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_button text=\"Check our OFFERS & DEALS\" icon=\"fa_f061\" url=\"#special-offers\" target=\"no_target\" style=\"Outline\" icon_position=\"Left\" color=\"Accent\" size=\"Small\" width=\"Normal\" el_class=\"\" el_style=\"\"][/bt_button][bt_button text=\"BOOK NOW\" icon=\"no_icon\" url=\"rooms\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Normal\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topSpaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][/bt_slider_item][/bt_slider][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"dark\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#000080\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\"][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\r\n<h4><em>founded 1953</em></h4>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSemiSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"2/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Rooms & Suites\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"If you chose to stay with us you will enjoy modern home comforts in a traditional setting. Whether you are looking for a short weekend break or a longer holiday, we offer a range of packages that will cater for all.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/3\"][/bt_column][/bt_row][bt_row][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"44\" caption_text=\"View\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption=\"Double room\" show_titles=\"no\" caption_title=\"Room details\"][bt_header superheadline=\"Room features\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"cs_ea18\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9c2\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea2c\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1c\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"DELUXE\" headline=\"Double Room\" headline_size=\"medium\" dash=\"top\" subheadline=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer mollis viverra diam ac ornare. Donec rhoncus nisi in felis congue, at pulvinar nibh dapibus.\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/2\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"room-details\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"1/2\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"43\" caption_text=\"\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"Room features\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"cs_ea18\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9c5\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1a\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1c\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"EXECUTIVE\" headline=\"Junior Suite\" headline_size=\"medium\" dash=\"top\" subheadline=\"Sed sodales tortor non metus iaculis, non commodo ipsum mattis. Ut at dolor elit. Proin dignissim, lacus eget ullamcorper consectetur, mauris mi mattis elit sagittis.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/2\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"room-details\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"1/2\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"42\" caption_text=\"\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"Room features\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"cs_ea30\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea18\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea2d\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1c\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"DELUXE\" headline=\"Double Room\" headline_size=\"medium\" dash=\"top\" subheadline=\"Mauris suscipit lectus pellentesque ante efficitur, at dignissim tellus maximus. Sed leo magna, faucibus non ante non, pulvinar scelerisque magna sit elis.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/2\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"room-details\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"1/2\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"41\" caption_text=\"\" size=\"medium\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"Room features\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"cs_ea18\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1b\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea21\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1c\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"DELUXE\" headline=\"Family Room\" headline_size=\"medium\" dash=\"top\" subheadline=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer mollis viverra diam ac ornare. Donec rhoncus nisi in felis congue, at pulvinar nibh dapibus.\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/2\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"room-details\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"1/2\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"66\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"0.7\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"special-offers\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"323\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"width: 60px; margin-top: -28px;\"][/bt_image][bt_hr top_spaced=\"topSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"1/2\"][/bt_column][bt_column width=\"1/2\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"GET THE BEST RATE\" headline=\"Offers <i>&</i> Deals\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"If you chose to stay with us you will enjoy modern home comforts in a traditional setting. Whether you are looking for a short weekend break or a longer holiday, we offer a range of packages that we think cater for all.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"1/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"0.7\" inner_background_color=\"#ffffff\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"67\" caption_text=\"Get together\" size=\"\" shape=\"square\" url=\"special-offers\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"Family vacation\" show_titles=\"no\"][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"Get together\" headline=\"Family vacation\" headline_size=\"medium\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"fa_f207\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f13d\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f1eb\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f206\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f1ae\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\r\n\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Integer mollis viverra diam ac ornare. Donec rhoncus nisi in felis congue, at pulvinar nibh dapibus.\r\n\r\n[/bt_text][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/3\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"special-offers\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"2/3\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"0.7\" inner_background_color=\"#ffffff\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"68\" caption_text=\"Celebrate\" size=\"\" shape=\"square\" url=\"special-offers\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"Newlyweds weekend\" show_titles=\"no\"][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"Celebrate\" headline=\"Newlyweds weekend\" headline_size=\"medium\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"fa_f1ba\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f072\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f228\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\r\n\r\nSed ut metus eu neque commodo fringilla imperdiet sed nibh. Sed volutpat fermentum ligula, et maximus ex ultricies sit amet.\r\n\r\n[/bt_text][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/3\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"special-offers\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"2/3\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"0.7\" inner_background_color=\"#ffffff\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"725\" caption_text=\"Procrastinate\" size=\"\" shape=\"square\" url=\"special-offers\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"Lazy weekend\" show_titles=\"no\"][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"Procrastinate\" headline=\"Lazy weekend\" headline_size=\"medium\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"fa_f1ba\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f072\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f1eb\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f000\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f185\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\r\n\r\nPhasellus non bibendum augue. Duis nibh felis, volutpat vitae pulvinar at, tincidunt eget mi. Donec venenatis condimentum fermentum.\r\n\r\n[/bt_text][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/3\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"special-offers\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"2/3\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#e5e5e5\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"322\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"width: 60px; margin-top: -28px;\"][/bt_image][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"7/12\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Activities\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Phasellus blandit a massa vitae congue. Nam ex massa, mattis ut sapien sit amet, consequat sodales risus. Sed interdum, ligula et lobortis faucibus, sem sem placerat augue, eget scelerisque turpis lorem et tellus.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][/bt_column][bt_column width=\"5/12\"][/bt_column][/bt_row][/bt_section][bt_section layout=\"wide\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"dark\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#e5e5e5\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"73\" caption_title=\"Beach voleyball\" caption_text=\"Enjoy the game\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"ENJOY THE GAME\" headline=\"Beach Voleyball\" headline_size=\"medium\" dash=\"top\" subheadline=\"Beach volleyball is ouy visitors favourite sport, highly enjoyable for everyone young or old. Just gather your team on the beach and find the opponents in a matter of minutes. And show what you can do, be a winner!\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_e9ac\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e040\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e041\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"74\" el_class=\"\" el_style=\"\"][bt_image image=\"74\" caption_title=\"Horseback riding\" caption_text=\"Enjoy the beach\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Enjoy the beach\" headline=\"Horseback riding\" headline_size=\"medium\" dash=\"top\" subheadline=\"How about a lazy afternoon with your friends on a hors, while the sun goes down? If you want to chill out, our horse riding team will teach you in a matter of minutes and help you wind down after a good day on the sun.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_ea13\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1e\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e05b\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"75\" el_class=\"\" el_style=\"\"][bt_image image=\"75\" caption_title=\"Waterskiing\" caption_text=\"Enjoy the sea\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Enjoy the sea\" headline=\"Waterskiing\" headline_size=\"medium\" dash=\"top\" subheadline=\"If you are a big fan of water sports, then why not try the waterskiing or waterboarding? At hotel California you will find there\'s an amateur champoionship every year. Rated as the most fun activity by our visitors.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_e05b\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9a3\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9e5\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"76\" el_class=\"\" el_style=\"\"][bt_image image=\"76\" caption_title=\"Paragliding\" caption_text=\"Enjoy the sky\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Enjoy the sky\" headline=\"Parasailing\" headline_size=\"medium\" dash=\"top\" subheadline=\"Enjoy the thrill on the sky with our parasailing team and feel the California sun on your face. The team will help you get your adrenaline high and will be capuring your moments on a high-definition camera.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_ea2f\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"s7_e67b\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9f3\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_slider height=\"auto\" auto_play=\"\" hide_arrows=\"\" hide_paging=\"btSliderHidePaging\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/6\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"78\" caption_text=\"\" size=\"\" shape=\"circle\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][bt_header superheadline=\"June 2016\" headline=\"Alan Jones\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][/bt_column_inner][bt_column_inner width=\"5/6\"][bt_text]\r\n<blockquote>If you chose to stay with us you will enjoy modern home comforts in a traditional setting. Whether you are looking for a short weekend break or a longer holiday, we offer a range of packages that we think cater for all.</blockquote>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/6\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"447\" caption_text=\"\" size=\"\" shape=\"circle\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][/bt_image][bt_header superheadline=\"July 2016\" headline=\"Adrianne White\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][bt_column_inner width=\"5/6\"][bt_text]\r\n<blockquote>If you chose to stay with us you will enjoy modern home comforts in a traditional setting. Whether you are looking for a short weekend break or a longer holiday, we offer a range of packages that we think cater for all.</blockquote>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/1\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_text]\r\n<blockquote>Our mission: to connect our members and our diverse community to the boundless recreational opportunities and proper stewardship of the Monterey Bay and the Pacific Ocean.</blockquote>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][/bt_slider][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/3\" align=\"left\" vertical_align=\"btMiddleVertical\" border=\"no_border\" cell_padding=\"btDoublePadding\" animation=\"animate animate-fadein\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"#e5e5e5\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"IN A NUTSHELL\" headline=\"Hotel California\" headline_size=\"large\" dash=\"bottom\" subheadline=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer mollis viverra diam ac ornare. Donec rhoncus nisi in felis congue, at pulvinar nibh dapibus.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_button text=\"READ MORE\" icon=\"no_icon\" url=\"\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"ExtraSmall\" width=\"Normal\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"2/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_slider height=\"auto\" auto_play=\"\" hide_arrows=\"\" hide_paging=\"btSliderHidePaging\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"81\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"82\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"83\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"84\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"85\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][/bt_slider][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\"][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"2/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_gmaps latitude=\"36.602383\" longitude=\"-121.879245 \" zoom=\"11\" icon=\"342\" height=\"400px\" primary_color=\"\" secondary_color=\"\" water_color=\"\" custom_style=\"WwogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJhZG1pbmlzdHJhdGl2ZSIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImxhYmVscy50ZXh0LmZpbGwiLAogICAgICAgICJzdHlsZXJzIjogWwogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAiY29sb3IiOiAiIzQ0NDQ0NCIKICAgICAgICAgICAgfQogICAgICAgIF0KICAgIH0sCiAgICB7CiAgICAgICAgImZlYXR1cmVUeXBlIjogImxhbmRzY2FwZSIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJjb2xvciI6ICIjZjJmMmYyIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAicG9pIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiYWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInZpc2liaWxpdHkiOiAib2ZmIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAicm9hZCIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJzYXR1cmF0aW9uIjogLTEwMAogICAgICAgICAgICB9LAogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAibGlnaHRuZXNzIjogNDUKICAgICAgICAgICAgfQogICAgICAgIF0KICAgIH0sCiAgICB7CiAgICAgICAgImZlYXR1cmVUeXBlIjogInJvYWQuaGlnaHdheSIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogInNpbXBsaWZpZWQiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJyb2FkLmhpZ2h3YXkiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJnZW9tZXRyeSIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogInNpbXBsaWZpZWQiCiAgICAgICAgICAgIH0sCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJjb2xvciI6ICIjZDc3Mjg3IgogICAgICAgICAgICB9LAogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAibGlnaHRuZXNzIjogIjAiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJyb2FkLmhpZ2h3YXkiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJsYWJlbHMudGV4dCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogIm9uIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAicm9hZC5oaWdod2F5IiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAibGFiZWxzLmljb24iLAogICAgICAgICJzdHlsZXJzIjogWwogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAidmlzaWJpbGl0eSI6ICJvbiIKICAgICAgICAgICAgfQogICAgICAgIF0KICAgIH0sCiAgICB7CiAgICAgICAgImZlYXR1cmVUeXBlIjogInJvYWQuYXJ0ZXJpYWwiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJhbGwiLAogICAgICAgICJzdHlsZXJzIjogWwogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAidmlzaWJpbGl0eSI6ICJvbiIKICAgICAgICAgICAgfQogICAgICAgIF0KICAgIH0sCiAgICB7CiAgICAgICAgImZlYXR1cmVUeXBlIjogInJvYWQuYXJ0ZXJpYWwiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJnZW9tZXRyeS5maWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgImNvbG9yIjogIiNkNzcyODciCiAgICAgICAgICAgIH0sCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJsaWdodG5lc3MiOiAiNzUiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJyb2FkLmFydGVyaWFsIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAibGFiZWxzLmljb24iLAogICAgICAgICJzdHlsZXJzIjogWwogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAidmlzaWJpbGl0eSI6ICJvZmYiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJyb2FkLmxvY2FsIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiZ2VvbWV0cnkuZmlsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJsaWdodG5lc3MiOiAiNzUiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJ0cmFuc2l0IiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiYWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInZpc2liaWxpdHkiOiAib2ZmIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAidHJhbnNpdC5saW5lIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiYWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInZpc2liaWxpdHkiOiAib24iCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJ0cmFuc2l0LnN0YXRpb24uYnVzIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiYWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInZpc2liaWxpdHkiOiAib24iCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJ0cmFuc2l0LnN0YXRpb24ucmFpbCIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogIm9uIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAidHJhbnNpdC5zdGF0aW9uLnJhaWwiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJsYWJlbHMuaWNvbiIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ3ZWlnaHQiOiAiMC4wMSIKICAgICAgICAgICAgfSwKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgImh1ZSI6ICIjZmYwMDM1IgogICAgICAgICAgICB9LAogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAibGlnaHRuZXNzIjogIjAiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJ3YXRlciIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogIm9uIgogICAgICAgICAgICB9LAogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAiY29sb3IiOiAiIzgwZTRkOCIKICAgICAgICAgICAgfSwKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgImxpZ2h0bmVzcyI6ICIyNSIKICAgICAgICAgICAgfSwKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInNhdHVyYXRpb24iOiAiLTIzIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfQpd\" el_class=\"\" el_style=\"\" api_key=\"AIzaSyBda9LxQ-Wztqsk6aFI7SkcdiypnKTPfiI\"][/bt_gmaps][/bt_column][bt_column width=\"1/3\" align=\"left\" vertical_align=\"btMiddleVertical\" border=\"no_border\" cell_padding=\"btDoublePadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"#e5e5e5\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_service icon=\"s7_e638\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoMediumSize\" url=\"\" headline=\"Address\" dash=\"\" text=\"3216 W Highland Boulevard\r\nSan Diego, California\" el_class=\"\" el_style=\"\" superheadline=\"\"][/bt_service][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSemiSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_service icon=\"s7_e670\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoMediumSize\" url=\"\" headline=\"Phone\" dash=\"\" text=\"+555-40-220-6672\" el_class=\"\" el_style=\"\" superheadline=\"\"][/bt_service][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSemiSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_service icon=\"s7_e63a\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoMediumSize\" url=\"\" headline=\"Email\" dash=\"\" text=\"office@california.hotel\" el_class=\"\" el_style=\"\" superheadline=\"\"][/bt_service][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"yes\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"7/12\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"News <i>&</i> Blog\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Morbi pharetra faucibus purus, nec pretium enim luctus quis. Pellentesque aliquet venenatis ante, quis pretium neque tristique eget. Integer in luctus urna. Aenean rutrum sodales pharetra.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"5/12\"][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_latest_posts number=\"3\" category=\"\" format=\"horizontal\" post_type=\"blog\" show_excerpt=\"yes\" show_date=\"yes\" show_author=\"yes\" el_class=\"\" el_style=\"\"][/bt_latest_posts][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"321\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"0.3\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Follow us\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Find out what’s hot and new, and get discounts for being a loyal customer and a Hotel California fan.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_icons][bt_icon icon=\"fa_f09a\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f099\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f0d5\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_column][/bt_row][/bt_section]','Street view','\n ','inherit','closed','closed','','837-revision-v1','','','2021-04-07 04:36:39','2021-04-07 04:36:39','',837,'http://mpycdev.theomggroup.com/?p=1038',0,'revision','',0);
INSERT INTO `smrc_posts` VALUES (1039,1,'2021-04-07 04:38:15','2021-04-07 04:38:15','[bt_section layout=\"wide\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\"][bt_slider height=\"auto\" auto_play=\"5000\" hide_arrows=\"\" hide_paging=\"\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item image=\"1027\" el_class=\"btLightSkin\" el_style=\"\"][bt_row_inner][bt_column_inner width=\"1/2\"][/bt_column_inner][bt_column_inner width=\"1/2\" align=\"left\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"animate animate-fadein animate-moveleft\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_hr top_spaced=\"topExtraSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"\" headline_size=\"huge\" dash=\"bottom\" subheadline=\"At the heart of San Diego, on one of the most colorful beaches, right next to the Pacific ocean, lies the Hotel California, most famous for it’s easy going staff and vacation you’ll never forget...\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_button text=\"\" icon=\"\" url=\"#special-offers\" target=\"no_target\" style=\"Borderless\" icon_position=\"Left\" color=\"Normal\" size=\"Small\" width=\"Normal\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topSpaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][/bt_slider_item][bt_slider_item image=\"1025\" el_class=\"\" el_style=\"\"][bt_row_inner][bt_column_inner width=\"2/3\" align=\"left\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"animate animate-fadein animate-moveleft\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_hr top_spaced=\"topExtraSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"The art of meeting your\r\nhighest <i>expectations</i>\" headline_size=\"huge\" dash=\"bottom\" subheadline=\"Enjoying the sun and sea has never been so easy. At the beach of hotel California, you\'ll find our most complete service, great seaside and easy going staff.\r\nHotel California. Everything. Right where you need it.\" el_class=\"\" el_style=\"max-width: 660px;\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_button text=\"Check our OFFERS & DEALS\" icon=\"fa_f061\" url=\"#special-offers\" target=\"no_target\" style=\"Outline\" icon_position=\"Left\" color=\"Accent\" size=\"Small\" width=\"Normal\" el_class=\"\" el_style=\"\"][/bt_button][bt_button text=\"BOOK NOW\" icon=\"no_icon\" url=\"rooms\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Normal\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topSpaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"1/3\"][/bt_column_inner][/bt_row_inner][/bt_slider_item][bt_slider_item image=\"1035\" el_class=\"btLightSkin\" el_style=\"\"][bt_row_inner][bt_column_inner width=\"1/2\"][/bt_column_inner][bt_column_inner width=\"1/2\" align=\"left\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"animate animate-fadein animate-moveleft\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_hr top_spaced=\"topExtraSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Unique <i>location,</i>\r\nservice and stay\" headline_size=\"huge\" dash=\"bottom\" subheadline=\"At the heart of San Diego, on one of the most colorful beaches, right next to the Pacific ocean, lies the Hotel California, most famous for it’s easy going staff and vacation you’ll never forget...\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_button text=\"Check our OFFERS & DEALS\" icon=\"fa_f061\" url=\"#special-offers\" target=\"no_target\" style=\"Outline\" icon_position=\"Left\" color=\"Accent\" size=\"Small\" width=\"Normal\" el_class=\"\" el_style=\"\"][/bt_button][bt_button text=\"BOOK NOW\" icon=\"no_icon\" url=\"rooms\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Normal\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topSpaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][/bt_slider_item][/bt_slider][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"dark\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#000080\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\"][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\r\n<h4><em>founded 1953</em></h4>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSemiSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"2/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Rooms & Suites\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"If you chose to stay with us you will enjoy modern home comforts in a traditional setting. Whether you are looking for a short weekend break or a longer holiday, we offer a range of packages that will cater for all.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/3\"][/bt_column][/bt_row][bt_row][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"44\" caption_text=\"View\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption=\"Double room\" show_titles=\"no\" caption_title=\"Room details\"][bt_header superheadline=\"Room features\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"cs_ea18\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9c2\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea2c\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1c\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"DELUXE\" headline=\"Double Room\" headline_size=\"medium\" dash=\"top\" subheadline=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer mollis viverra diam ac ornare. Donec rhoncus nisi in felis congue, at pulvinar nibh dapibus.\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/2\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"room-details\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"1/2\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"43\" caption_text=\"\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"Room features\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"cs_ea18\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9c5\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1a\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1c\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"EXECUTIVE\" headline=\"Junior Suite\" headline_size=\"medium\" dash=\"top\" subheadline=\"Sed sodales tortor non metus iaculis, non commodo ipsum mattis. Ut at dolor elit. Proin dignissim, lacus eget ullamcorper consectetur, mauris mi mattis elit sagittis.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/2\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"room-details\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"1/2\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"42\" caption_text=\"\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"Room features\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"cs_ea30\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea18\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea2d\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1c\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"DELUXE\" headline=\"Double Room\" headline_size=\"medium\" dash=\"top\" subheadline=\"Mauris suscipit lectus pellentesque ante efficitur, at dignissim tellus maximus. Sed leo magna, faucibus non ante non, pulvinar scelerisque magna sit elis.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/2\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"room-details\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"1/2\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"41\" caption_text=\"\" size=\"medium\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"Room features\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"cs_ea18\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1b\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea21\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1c\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"DELUXE\" headline=\"Family Room\" headline_size=\"medium\" dash=\"top\" subheadline=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer mollis viverra diam ac ornare. Donec rhoncus nisi in felis congue, at pulvinar nibh dapibus.\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/2\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"room-details\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"1/2\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"66\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"0.7\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"special-offers\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"323\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"width: 60px; margin-top: -28px;\"][/bt_image][bt_hr top_spaced=\"topSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"1/2\"][/bt_column][bt_column width=\"1/2\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"GET THE BEST RATE\" headline=\"Offers <i>&</i> Deals\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"If you chose to stay with us you will enjoy modern home comforts in a traditional setting. Whether you are looking for a short weekend break or a longer holiday, we offer a range of packages that we think cater for all.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"1/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"0.7\" inner_background_color=\"#ffffff\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"67\" caption_text=\"Get together\" size=\"\" shape=\"square\" url=\"special-offers\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"Family vacation\" show_titles=\"no\"][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"Get together\" headline=\"Family vacation\" headline_size=\"medium\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"fa_f207\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f13d\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f1eb\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f206\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f1ae\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\r\n\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Integer mollis viverra diam ac ornare. Donec rhoncus nisi in felis congue, at pulvinar nibh dapibus.\r\n\r\n[/bt_text][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/3\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"special-offers\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"2/3\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"0.7\" inner_background_color=\"#ffffff\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"68\" caption_text=\"Celebrate\" size=\"\" shape=\"square\" url=\"special-offers\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"Newlyweds weekend\" show_titles=\"no\"][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"Celebrate\" headline=\"Newlyweds weekend\" headline_size=\"medium\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"fa_f1ba\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f072\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f228\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\r\n\r\nSed ut metus eu neque commodo fringilla imperdiet sed nibh. Sed volutpat fermentum ligula, et maximus ex ultricies sit amet.\r\n\r\n[/bt_text][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/3\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"special-offers\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"2/3\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"0.7\" inner_background_color=\"#ffffff\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"725\" caption_text=\"Procrastinate\" size=\"\" shape=\"square\" url=\"special-offers\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"Lazy weekend\" show_titles=\"no\"][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"Procrastinate\" headline=\"Lazy weekend\" headline_size=\"medium\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"fa_f1ba\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f072\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f1eb\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f000\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f185\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\r\n\r\nPhasellus non bibendum augue. Duis nibh felis, volutpat vitae pulvinar at, tincidunt eget mi. Donec venenatis condimentum fermentum.\r\n\r\n[/bt_text][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/3\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"special-offers\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"2/3\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#e5e5e5\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"322\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"width: 60px; margin-top: -28px;\"][/bt_image][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"7/12\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Activities\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Phasellus blandit a massa vitae congue. Nam ex massa, mattis ut sapien sit amet, consequat sodales risus. Sed interdum, ligula et lobortis faucibus, sem sem placerat augue, eget scelerisque turpis lorem et tellus.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][/bt_column][bt_column width=\"5/12\"][/bt_column][/bt_row][/bt_section][bt_section layout=\"wide\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"dark\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#e5e5e5\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"73\" caption_title=\"Beach voleyball\" caption_text=\"Enjoy the game\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"ENJOY THE GAME\" headline=\"Beach Voleyball\" headline_size=\"medium\" dash=\"top\" subheadline=\"Beach volleyball is ouy visitors favourite sport, highly enjoyable for everyone young or old. Just gather your team on the beach and find the opponents in a matter of minutes. And show what you can do, be a winner!\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_e9ac\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e040\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e041\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"74\" el_class=\"\" el_style=\"\"][bt_image image=\"74\" caption_title=\"Horseback riding\" caption_text=\"Enjoy the beach\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Enjoy the beach\" headline=\"Horseback riding\" headline_size=\"medium\" dash=\"top\" subheadline=\"How about a lazy afternoon with your friends on a hors, while the sun goes down? If you want to chill out, our horse riding team will teach you in a matter of minutes and help you wind down after a good day on the sun.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_ea13\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1e\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e05b\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"75\" el_class=\"\" el_style=\"\"][bt_image image=\"75\" caption_title=\"Waterskiing\" caption_text=\"Enjoy the sea\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Enjoy the sea\" headline=\"Waterskiing\" headline_size=\"medium\" dash=\"top\" subheadline=\"If you are a big fan of water sports, then why not try the waterskiing or waterboarding? At hotel California you will find there\'s an amateur champoionship every year. Rated as the most fun activity by our visitors.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_e05b\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9a3\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9e5\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"76\" el_class=\"\" el_style=\"\"][bt_image image=\"76\" caption_title=\"Paragliding\" caption_text=\"Enjoy the sky\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Enjoy the sky\" headline=\"Parasailing\" headline_size=\"medium\" dash=\"top\" subheadline=\"Enjoy the thrill on the sky with our parasailing team and feel the California sun on your face. The team will help you get your adrenaline high and will be capuring your moments on a high-definition camera.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_ea2f\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"s7_e67b\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9f3\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_slider height=\"auto\" auto_play=\"\" hide_arrows=\"\" hide_paging=\"btSliderHidePaging\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/6\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"78\" caption_text=\"\" size=\"\" shape=\"circle\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][bt_header superheadline=\"June 2016\" headline=\"Alan Jones\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][/bt_column_inner][bt_column_inner width=\"5/6\"][bt_text]\r\n<blockquote>If you chose to stay with us you will enjoy modern home comforts in a traditional setting. Whether you are looking for a short weekend break or a longer holiday, we offer a range of packages that we think cater for all.</blockquote>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/6\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"447\" caption_text=\"\" size=\"\" shape=\"circle\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][/bt_image][bt_header superheadline=\"July 2016\" headline=\"Adrianne White\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][bt_column_inner width=\"5/6\"][bt_text]\r\n<blockquote>If you chose to stay with us you will enjoy modern home comforts in a traditional setting. Whether you are looking for a short weekend break or a longer holiday, we offer a range of packages that we think cater for all.</blockquote>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/1\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_text]\r\n<blockquote>Our mission: to connect our members and our diverse community to the boundless recreational opportunities and proper stewardship of the Monterey Bay and the Pacific Ocean.</blockquote>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][/bt_slider][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/3\" align=\"left\" vertical_align=\"btMiddleVertical\" border=\"no_border\" cell_padding=\"btDoublePadding\" animation=\"animate animate-fadein\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"#e5e5e5\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"IN A NUTSHELL\" headline=\"Hotel California\" headline_size=\"large\" dash=\"bottom\" subheadline=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer mollis viverra diam ac ornare. Donec rhoncus nisi in felis congue, at pulvinar nibh dapibus.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_button text=\"READ MORE\" icon=\"no_icon\" url=\"\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"ExtraSmall\" width=\"Normal\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"2/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_slider height=\"auto\" auto_play=\"\" hide_arrows=\"\" hide_paging=\"btSliderHidePaging\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"81\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"82\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"83\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"84\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"85\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][/bt_slider][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\"][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"2/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_gmaps latitude=\"36.602383\" longitude=\"-121.879245 \" zoom=\"11\" icon=\"342\" height=\"400px\" primary_color=\"\" secondary_color=\"\" water_color=\"\" custom_style=\"WwogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJhZG1pbmlzdHJhdGl2ZSIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImxhYmVscy50ZXh0LmZpbGwiLAogICAgICAgICJzdHlsZXJzIjogWwogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAiY29sb3IiOiAiIzQ0NDQ0NCIKICAgICAgICAgICAgfQogICAgICAgIF0KICAgIH0sCiAgICB7CiAgICAgICAgImZlYXR1cmVUeXBlIjogImxhbmRzY2FwZSIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJjb2xvciI6ICIjZjJmMmYyIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAicG9pIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiYWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInZpc2liaWxpdHkiOiAib2ZmIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAicm9hZCIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJzYXR1cmF0aW9uIjogLTEwMAogICAgICAgICAgICB9LAogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAibGlnaHRuZXNzIjogNDUKICAgICAgICAgICAgfQogICAgICAgIF0KICAgIH0sCiAgICB7CiAgICAgICAgImZlYXR1cmVUeXBlIjogInJvYWQuaGlnaHdheSIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogInNpbXBsaWZpZWQiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJyb2FkLmhpZ2h3YXkiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJnZW9tZXRyeSIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogInNpbXBsaWZpZWQiCiAgICAgICAgICAgIH0sCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJjb2xvciI6ICIjZDc3Mjg3IgogICAgICAgICAgICB9LAogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAibGlnaHRuZXNzIjogIjAiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJyb2FkLmhpZ2h3YXkiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJsYWJlbHMudGV4dCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogIm9uIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAicm9hZC5oaWdod2F5IiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAibGFiZWxzLmljb24iLAogICAgICAgICJzdHlsZXJzIjogWwogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAidmlzaWJpbGl0eSI6ICJvbiIKICAgICAgICAgICAgfQogICAgICAgIF0KICAgIH0sCiAgICB7CiAgICAgICAgImZlYXR1cmVUeXBlIjogInJvYWQuYXJ0ZXJpYWwiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJhbGwiLAogICAgICAgICJzdHlsZXJzIjogWwogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAidmlzaWJpbGl0eSI6ICJvbiIKICAgICAgICAgICAgfQogICAgICAgIF0KICAgIH0sCiAgICB7CiAgICAgICAgImZlYXR1cmVUeXBlIjogInJvYWQuYXJ0ZXJpYWwiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJnZW9tZXRyeS5maWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgImNvbG9yIjogIiNkNzcyODciCiAgICAgICAgICAgIH0sCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJsaWdodG5lc3MiOiAiNzUiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJyb2FkLmFydGVyaWFsIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAibGFiZWxzLmljb24iLAogICAgICAgICJzdHlsZXJzIjogWwogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAidmlzaWJpbGl0eSI6ICJvZmYiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJyb2FkLmxvY2FsIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiZ2VvbWV0cnkuZmlsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJsaWdodG5lc3MiOiAiNzUiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJ0cmFuc2l0IiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiYWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInZpc2liaWxpdHkiOiAib2ZmIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAidHJhbnNpdC5saW5lIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiYWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInZpc2liaWxpdHkiOiAib24iCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJ0cmFuc2l0LnN0YXRpb24uYnVzIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiYWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInZpc2liaWxpdHkiOiAib24iCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJ0cmFuc2l0LnN0YXRpb24ucmFpbCIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogIm9uIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAidHJhbnNpdC5zdGF0aW9uLnJhaWwiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJsYWJlbHMuaWNvbiIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ3ZWlnaHQiOiAiMC4wMSIKICAgICAgICAgICAgfSwKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgImh1ZSI6ICIjZmYwMDM1IgogICAgICAgICAgICB9LAogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAibGlnaHRuZXNzIjogIjAiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJ3YXRlciIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogIm9uIgogICAgICAgICAgICB9LAogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAiY29sb3IiOiAiIzgwZTRkOCIKICAgICAgICAgICAgfSwKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgImxpZ2h0bmVzcyI6ICIyNSIKICAgICAgICAgICAgfSwKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInNhdHVyYXRpb24iOiAiLTIzIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfQpd\" el_class=\"\" el_style=\"\" api_key=\"AIzaSyBda9LxQ-Wztqsk6aFI7SkcdiypnKTPfiI\"][/bt_gmaps][/bt_column][bt_column width=\"1/3\" align=\"left\" vertical_align=\"btMiddleVertical\" border=\"no_border\" cell_padding=\"btDoublePadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"#e5e5e5\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_service icon=\"s7_e638\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoMediumSize\" url=\"\" headline=\"Address\" dash=\"\" text=\"3216 W Highland Boulevard\r\nSan Diego, California\" el_class=\"\" el_style=\"\" superheadline=\"\"][/bt_service][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSemiSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_service icon=\"s7_e670\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoMediumSize\" url=\"\" headline=\"Phone\" dash=\"\" text=\"+555-40-220-6672\" el_class=\"\" el_style=\"\" superheadline=\"\"][/bt_service][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSemiSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_service icon=\"s7_e63a\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoMediumSize\" url=\"\" headline=\"Email\" dash=\"\" text=\"office@california.hotel\" el_class=\"\" el_style=\"\" superheadline=\"\"][/bt_service][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"yes\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"7/12\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"News <i>&</i> Blog\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Morbi pharetra faucibus purus, nec pretium enim luctus quis. Pellentesque aliquet venenatis ante, quis pretium neque tristique eget. Integer in luctus urna. Aenean rutrum sodales pharetra.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"5/12\"][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_latest_posts number=\"3\" category=\"\" format=\"horizontal\" post_type=\"blog\" show_excerpt=\"yes\" show_date=\"yes\" show_author=\"yes\" el_class=\"\" el_style=\"\"][/bt_latest_posts][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"321\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"0.3\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Follow us\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Find out what’s hot and new, and get discounts for being a loyal customer and a Hotel California fan.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_icons][bt_icon icon=\"fa_f09a\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f099\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f0d5\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_column][/bt_row][/bt_section]','Street view','\n ','inherit','closed','closed','','837-revision-v1','','','2021-04-07 04:38:15','2021-04-07 04:38:15','',837,'http://mpycdev.theomggroup.com/?p=1039',0,'revision','',0);
INSERT INTO `smrc_posts` VALUES (1040,1,'2021-04-07 04:38:41','2021-04-07 04:38:41','[bt_section layout=\"wide\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\"][bt_slider height=\"auto\" auto_play=\"5000\" hide_arrows=\"\" hide_paging=\"\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item image=\"1027\" el_class=\"btLightSkin\" el_style=\"\"][bt_row_inner][bt_column_inner width=\"1/2\"][/bt_column_inner][bt_column_inner width=\"1/2\" align=\"left\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"animate animate-fadein animate-moveleft\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_hr top_spaced=\"topExtraSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Welcome to the\r\n<i>Hotel California</i>\" headline_size=\"huge\" dash=\"bottom\" subheadline=\"At the heart of San Diego, on one of the most colorful beaches, right next to the Pacific ocean, lies the Hotel California, most famous for it’s easy going staff and vacation you’ll never forget...\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_button text=\"Check our OFFERS & DEALS\" icon=\"fa_f061\" url=\"#special-offers\" target=\"no_target\" style=\"Outline\" icon_position=\"Left\" color=\"Accent\" size=\"Small\" width=\"Normal\" el_class=\"\" el_style=\"\"][/bt_button][bt_button text=\"BOOK NOW\" icon=\"no_icon\" url=\"rooms\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Normal\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topSpaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][/bt_slider_item][bt_slider_item image=\"1025\" el_class=\"\" el_style=\"\"][bt_row_inner][bt_column_inner width=\"2/3\" align=\"left\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"animate animate-fadein animate-moveleft\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_hr top_spaced=\"topExtraSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"The art of meeting your\r\nhighest <i>expectations</i>\" headline_size=\"huge\" dash=\"bottom\" subheadline=\"Enjoying the sun and sea has never been so easy. At the beach of hotel California, you\'ll find our most complete service, great seaside and easy going staff.\r\nHotel California. Everything. Right where you need it.\" el_class=\"\" el_style=\"max-width: 660px;\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_button text=\"Check our OFFERS & DEALS\" icon=\"fa_f061\" url=\"#special-offers\" target=\"no_target\" style=\"Outline\" icon_position=\"Left\" color=\"Accent\" size=\"Small\" width=\"Normal\" el_class=\"\" el_style=\"\"][/bt_button][bt_button text=\"BOOK NOW\" icon=\"no_icon\" url=\"rooms\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Normal\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topSpaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"1/3\"][/bt_column_inner][/bt_row_inner][/bt_slider_item][bt_slider_item image=\"1035\" el_class=\"btLightSkin\" el_style=\"\"][bt_row_inner][bt_column_inner width=\"1/2\"][/bt_column_inner][bt_column_inner width=\"1/2\" align=\"left\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"animate animate-fadein animate-moveleft\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_hr top_spaced=\"topExtraSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Unique <i>location,</i>\r\nservice and stay\" headline_size=\"huge\" dash=\"bottom\" subheadline=\"At the heart of San Diego, on one of the most colorful beaches, right next to the Pacific ocean, lies the Hotel California, most famous for it’s easy going staff and vacation you’ll never forget...\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_button text=\"Check our OFFERS & DEALS\" icon=\"fa_f061\" url=\"#special-offers\" target=\"no_target\" style=\"Outline\" icon_position=\"Left\" color=\"Accent\" size=\"Small\" width=\"Normal\" el_class=\"\" el_style=\"\"][/bt_button][bt_button text=\"BOOK NOW\" icon=\"no_icon\" url=\"rooms\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Normal\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topSpaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][/bt_slider_item][/bt_slider][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"dark\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#000080\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\"][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\r\n<h4><em>founded 1953</em></h4>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSemiSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"2/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Rooms & Suites\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"If you chose to stay with us you will enjoy modern home comforts in a traditional setting. Whether you are looking for a short weekend break or a longer holiday, we offer a range of packages that will cater for all.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/3\"][/bt_column][/bt_row][bt_row][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"44\" caption_text=\"View\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption=\"Double room\" show_titles=\"no\" caption_title=\"Room details\"][bt_header superheadline=\"Room features\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"cs_ea18\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9c2\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea2c\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1c\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"DELUXE\" headline=\"Double Room\" headline_size=\"medium\" dash=\"top\" subheadline=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer mollis viverra diam ac ornare. Donec rhoncus nisi in felis congue, at pulvinar nibh dapibus.\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/2\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"room-details\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"1/2\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"43\" caption_text=\"\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"Room features\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"cs_ea18\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9c5\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1a\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1c\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"EXECUTIVE\" headline=\"Junior Suite\" headline_size=\"medium\" dash=\"top\" subheadline=\"Sed sodales tortor non metus iaculis, non commodo ipsum mattis. Ut at dolor elit. Proin dignissim, lacus eget ullamcorper consectetur, mauris mi mattis elit sagittis.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/2\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"room-details\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"1/2\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"42\" caption_text=\"\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"Room features\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"cs_ea30\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea18\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea2d\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1c\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"DELUXE\" headline=\"Double Room\" headline_size=\"medium\" dash=\"top\" subheadline=\"Mauris suscipit lectus pellentesque ante efficitur, at dignissim tellus maximus. Sed leo magna, faucibus non ante non, pulvinar scelerisque magna sit elis.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/2\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"room-details\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"1/2\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"41\" caption_text=\"\" size=\"medium\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"Room features\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"cs_ea18\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1b\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea21\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1c\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"DELUXE\" headline=\"Family Room\" headline_size=\"medium\" dash=\"top\" subheadline=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer mollis viverra diam ac ornare. Donec rhoncus nisi in felis congue, at pulvinar nibh dapibus.\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/2\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"room-details\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"1/2\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"66\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"0.7\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"special-offers\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"323\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"width: 60px; margin-top: -28px;\"][/bt_image][bt_hr top_spaced=\"topSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"1/2\"][/bt_column][bt_column width=\"1/2\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"GET THE BEST RATE\" headline=\"Offers <i>&</i> Deals\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"If you chose to stay with us you will enjoy modern home comforts in a traditional setting. Whether you are looking for a short weekend break or a longer holiday, we offer a range of packages that we think cater for all.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"1/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"0.7\" inner_background_color=\"#ffffff\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"67\" caption_text=\"Get together\" size=\"\" shape=\"square\" url=\"special-offers\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"Family vacation\" show_titles=\"no\"][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"Get together\" headline=\"Family vacation\" headline_size=\"medium\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"fa_f207\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f13d\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f1eb\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f206\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f1ae\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\r\n\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Integer mollis viverra diam ac ornare. Donec rhoncus nisi in felis congue, at pulvinar nibh dapibus.\r\n\r\n[/bt_text][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/3\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"special-offers\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"2/3\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"0.7\" inner_background_color=\"#ffffff\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"68\" caption_text=\"Celebrate\" size=\"\" shape=\"square\" url=\"special-offers\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"Newlyweds weekend\" show_titles=\"no\"][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"Celebrate\" headline=\"Newlyweds weekend\" headline_size=\"medium\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"fa_f1ba\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f072\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f228\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\r\n\r\nSed ut metus eu neque commodo fringilla imperdiet sed nibh. Sed volutpat fermentum ligula, et maximus ex ultricies sit amet.\r\n\r\n[/bt_text][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/3\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"special-offers\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"2/3\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"0.7\" inner_background_color=\"#ffffff\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"725\" caption_text=\"Procrastinate\" size=\"\" shape=\"square\" url=\"special-offers\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"Lazy weekend\" show_titles=\"no\"][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"Procrastinate\" headline=\"Lazy weekend\" headline_size=\"medium\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"fa_f1ba\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f072\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f1eb\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f000\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f185\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\r\n\r\nPhasellus non bibendum augue. Duis nibh felis, volutpat vitae pulvinar at, tincidunt eget mi. Donec venenatis condimentum fermentum.\r\n\r\n[/bt_text][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/3\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"special-offers\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"2/3\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#e5e5e5\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"322\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"width: 60px; margin-top: -28px;\"][/bt_image][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"7/12\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Activities\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Phasellus blandit a massa vitae congue. Nam ex massa, mattis ut sapien sit amet, consequat sodales risus. Sed interdum, ligula et lobortis faucibus, sem sem placerat augue, eget scelerisque turpis lorem et tellus.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][/bt_column][bt_column width=\"5/12\"][/bt_column][/bt_row][/bt_section][bt_section layout=\"wide\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"dark\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#e5e5e5\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"73\" caption_title=\"Beach voleyball\" caption_text=\"Enjoy the game\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"ENJOY THE GAME\" headline=\"Beach Voleyball\" headline_size=\"medium\" dash=\"top\" subheadline=\"Beach volleyball is ouy visitors favourite sport, highly enjoyable for everyone young or old. Just gather your team on the beach and find the opponents in a matter of minutes. And show what you can do, be a winner!\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_e9ac\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e040\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e041\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"74\" el_class=\"\" el_style=\"\"][bt_image image=\"74\" caption_title=\"Horseback riding\" caption_text=\"Enjoy the beach\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Enjoy the beach\" headline=\"Horseback riding\" headline_size=\"medium\" dash=\"top\" subheadline=\"How about a lazy afternoon with your friends on a hors, while the sun goes down? If you want to chill out, our horse riding team will teach you in a matter of minutes and help you wind down after a good day on the sun.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_ea13\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1e\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e05b\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"75\" el_class=\"\" el_style=\"\"][bt_image image=\"75\" caption_title=\"Waterskiing\" caption_text=\"Enjoy the sea\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Enjoy the sea\" headline=\"Waterskiing\" headline_size=\"medium\" dash=\"top\" subheadline=\"If you are a big fan of water sports, then why not try the waterskiing or waterboarding? At hotel California you will find there\'s an amateur champoionship every year. Rated as the most fun activity by our visitors.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_e05b\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9a3\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9e5\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"76\" el_class=\"\" el_style=\"\"][bt_image image=\"76\" caption_title=\"Paragliding\" caption_text=\"Enjoy the sky\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Enjoy the sky\" headline=\"Parasailing\" headline_size=\"medium\" dash=\"top\" subheadline=\"Enjoy the thrill on the sky with our parasailing team and feel the California sun on your face. The team will help you get your adrenaline high and will be capuring your moments on a high-definition camera.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_ea2f\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"s7_e67b\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9f3\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_slider height=\"auto\" auto_play=\"\" hide_arrows=\"\" hide_paging=\"btSliderHidePaging\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/6\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"78\" caption_text=\"\" size=\"\" shape=\"circle\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][bt_header superheadline=\"June 2016\" headline=\"Alan Jones\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][/bt_column_inner][bt_column_inner width=\"5/6\"][bt_text]\r\n<blockquote>If you chose to stay with us you will enjoy modern home comforts in a traditional setting. Whether you are looking for a short weekend break or a longer holiday, we offer a range of packages that we think cater for all.</blockquote>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/6\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"447\" caption_text=\"\" size=\"\" shape=\"circle\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][/bt_image][bt_header superheadline=\"July 2016\" headline=\"Adrianne White\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][bt_column_inner width=\"5/6\"][bt_text]\r\n<blockquote>If you chose to stay with us you will enjoy modern home comforts in a traditional setting. Whether you are looking for a short weekend break or a longer holiday, we offer a range of packages that we think cater for all.</blockquote>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/1\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_text]\r\n<blockquote>Our mission: to connect our members and our diverse community to the boundless recreational opportunities and proper stewardship of the Monterey Bay and the Pacific Ocean.</blockquote>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][/bt_slider][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/3\" align=\"left\" vertical_align=\"btMiddleVertical\" border=\"no_border\" cell_padding=\"btDoublePadding\" animation=\"animate animate-fadein\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"#e5e5e5\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"IN A NUTSHELL\" headline=\"Hotel California\" headline_size=\"large\" dash=\"bottom\" subheadline=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer mollis viverra diam ac ornare. Donec rhoncus nisi in felis congue, at pulvinar nibh dapibus.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_button text=\"READ MORE\" icon=\"no_icon\" url=\"\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"ExtraSmall\" width=\"Normal\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"2/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_slider height=\"auto\" auto_play=\"\" hide_arrows=\"\" hide_paging=\"btSliderHidePaging\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"81\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"82\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"83\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"84\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"85\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][/bt_slider][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\"][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"2/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_gmaps latitude=\"36.602383\" longitude=\"-121.879245 \" zoom=\"11\" icon=\"342\" height=\"400px\" primary_color=\"\" secondary_color=\"\" water_color=\"\" custom_style=\"WwogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJhZG1pbmlzdHJhdGl2ZSIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImxhYmVscy50ZXh0LmZpbGwiLAogICAgICAgICJzdHlsZXJzIjogWwogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAiY29sb3IiOiAiIzQ0NDQ0NCIKICAgICAgICAgICAgfQogICAgICAgIF0KICAgIH0sCiAgICB7CiAgICAgICAgImZlYXR1cmVUeXBlIjogImxhbmRzY2FwZSIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJjb2xvciI6ICIjZjJmMmYyIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAicG9pIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiYWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInZpc2liaWxpdHkiOiAib2ZmIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAicm9hZCIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJzYXR1cmF0aW9uIjogLTEwMAogICAgICAgICAgICB9LAogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAibGlnaHRuZXNzIjogNDUKICAgICAgICAgICAgfQogICAgICAgIF0KICAgIH0sCiAgICB7CiAgICAgICAgImZlYXR1cmVUeXBlIjogInJvYWQuaGlnaHdheSIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogInNpbXBsaWZpZWQiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJyb2FkLmhpZ2h3YXkiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJnZW9tZXRyeSIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogInNpbXBsaWZpZWQiCiAgICAgICAgICAgIH0sCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJjb2xvciI6ICIjZDc3Mjg3IgogICAgICAgICAgICB9LAogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAibGlnaHRuZXNzIjogIjAiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJyb2FkLmhpZ2h3YXkiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJsYWJlbHMudGV4dCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogIm9uIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAicm9hZC5oaWdod2F5IiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAibGFiZWxzLmljb24iLAogICAgICAgICJzdHlsZXJzIjogWwogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAidmlzaWJpbGl0eSI6ICJvbiIKICAgICAgICAgICAgfQogICAgICAgIF0KICAgIH0sCiAgICB7CiAgICAgICAgImZlYXR1cmVUeXBlIjogInJvYWQuYXJ0ZXJpYWwiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJhbGwiLAogICAgICAgICJzdHlsZXJzIjogWwogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAidmlzaWJpbGl0eSI6ICJvbiIKICAgICAgICAgICAgfQogICAgICAgIF0KICAgIH0sCiAgICB7CiAgICAgICAgImZlYXR1cmVUeXBlIjogInJvYWQuYXJ0ZXJpYWwiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJnZW9tZXRyeS5maWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgImNvbG9yIjogIiNkNzcyODciCiAgICAgICAgICAgIH0sCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJsaWdodG5lc3MiOiAiNzUiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJyb2FkLmFydGVyaWFsIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAibGFiZWxzLmljb24iLAogICAgICAgICJzdHlsZXJzIjogWwogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAidmlzaWJpbGl0eSI6ICJvZmYiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJyb2FkLmxvY2FsIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiZ2VvbWV0cnkuZmlsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJsaWdodG5lc3MiOiAiNzUiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJ0cmFuc2l0IiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiYWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInZpc2liaWxpdHkiOiAib2ZmIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAidHJhbnNpdC5saW5lIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiYWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInZpc2liaWxpdHkiOiAib24iCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJ0cmFuc2l0LnN0YXRpb24uYnVzIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiYWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInZpc2liaWxpdHkiOiAib24iCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJ0cmFuc2l0LnN0YXRpb24ucmFpbCIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogIm9uIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAidHJhbnNpdC5zdGF0aW9uLnJhaWwiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJsYWJlbHMuaWNvbiIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ3ZWlnaHQiOiAiMC4wMSIKICAgICAgICAgICAgfSwKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgImh1ZSI6ICIjZmYwMDM1IgogICAgICAgICAgICB9LAogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAibGlnaHRuZXNzIjogIjAiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJ3YXRlciIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogIm9uIgogICAgICAgICAgICB9LAogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAiY29sb3IiOiAiIzgwZTRkOCIKICAgICAgICAgICAgfSwKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgImxpZ2h0bmVzcyI6ICIyNSIKICAgICAgICAgICAgfSwKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInNhdHVyYXRpb24iOiAiLTIzIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfQpd\" el_class=\"\" el_style=\"\" api_key=\"AIzaSyBda9LxQ-Wztqsk6aFI7SkcdiypnKTPfiI\"][/bt_gmaps][/bt_column][bt_column width=\"1/3\" align=\"left\" vertical_align=\"btMiddleVertical\" border=\"no_border\" cell_padding=\"btDoublePadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"#e5e5e5\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_service icon=\"s7_e638\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoMediumSize\" url=\"\" headline=\"Address\" dash=\"\" text=\"3216 W Highland Boulevard\r\nSan Diego, California\" el_class=\"\" el_style=\"\" superheadline=\"\"][/bt_service][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSemiSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_service icon=\"s7_e670\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoMediumSize\" url=\"\" headline=\"Phone\" dash=\"\" text=\"+555-40-220-6672\" el_class=\"\" el_style=\"\" superheadline=\"\"][/bt_service][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSemiSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_service icon=\"s7_e63a\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoMediumSize\" url=\"\" headline=\"Email\" dash=\"\" text=\"office@california.hotel\" el_class=\"\" el_style=\"\" superheadline=\"\"][/bt_service][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"yes\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"7/12\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"News <i>&</i> Blog\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Morbi pharetra faucibus purus, nec pretium enim luctus quis. Pellentesque aliquet venenatis ante, quis pretium neque tristique eget. Integer in luctus urna. Aenean rutrum sodales pharetra.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"5/12\"][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_latest_posts number=\"3\" category=\"\" format=\"horizontal\" post_type=\"blog\" show_excerpt=\"yes\" show_date=\"yes\" show_author=\"yes\" el_class=\"\" el_style=\"\"][/bt_latest_posts][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"321\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"0.3\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Follow us\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Find out what’s hot and new, and get discounts for being a loyal customer and a Hotel California fan.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_icons][bt_icon icon=\"fa_f09a\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f099\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f0d5\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_column][/bt_row][/bt_section]','Street view','\n ','inherit','closed','closed','','837-revision-v1','','','2021-04-07 04:38:41','2021-04-07 04:38:41','',837,'http://mpycdev.theomggroup.com/?p=1040',0,'revision','',0);
INSERT INTO `smrc_posts` VALUES (1041,1,'2021-04-07 04:41:53','2021-04-07 04:41:53','[bt_section layout=\"wide\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\"][bt_slider height=\"auto\" auto_play=\"5000\" hide_arrows=\"\" hide_paging=\"\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item image=\"1027\" el_class=\"btLightSkin\" el_style=\"\"][bt_row_inner][bt_column_inner width=\"1/2\"][/bt_column_inner][bt_column_inner width=\"1/2\" align=\"left\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"animate animate-fadein animate-moveleft\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_hr top_spaced=\"topExtraSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Welcome to the\r\n<i>Hotel California</i>\" headline_size=\"huge\" dash=\"bottom\" subheadline=\"At the heart of San Diego, on one of the most colorful beaches, right next to the Pacific ocean, lies the Hotel California, most famous for it’s easy going staff and vacation you’ll never forget...\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_button text=\"Check our OFFERS & DEALS\" icon=\"fa_f061\" url=\"#special-offers\" target=\"no_target\" style=\"Outline\" icon_position=\"Left\" color=\"Accent\" size=\"Small\" width=\"Normal\" el_class=\"\" el_style=\"\"][/bt_button][bt_button text=\"BOOK NOW\" icon=\"no_icon\" url=\"rooms\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Normal\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topSpaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][/bt_slider_item][bt_slider_item image=\"1025\" el_class=\"\" el_style=\"\"][bt_row_inner][bt_column_inner width=\"2/3\" align=\"left\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"animate animate-fadein animate-moveleft\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_hr top_spaced=\"topExtraSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"The art of meeting your\r\nhighest <i>expectations</i>\" headline_size=\"huge\" dash=\"bottom\" subheadline=\"Enjoying the sun and sea has never been so easy. At the beach of hotel California, you\'ll find our most complete service, great seaside and easy going staff.\r\nHotel California. Everything. Right where you need it.\" el_class=\"\" el_style=\"max-width: 660px;\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_button text=\"Check our OFFERS & DEALS\" icon=\"fa_f061\" url=\"#special-offers\" target=\"no_target\" style=\"Outline\" icon_position=\"Left\" color=\"Accent\" size=\"Small\" width=\"Normal\" el_class=\"\" el_style=\"\"][/bt_button][bt_button text=\"BOOK NOW\" icon=\"no_icon\" url=\"rooms\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Normal\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topSpaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"1/3\"][/bt_column_inner][/bt_row_inner][/bt_slider_item][bt_slider_item image=\"1035\" el_class=\"btLightSkin\" el_style=\"\"][bt_row_inner][bt_column_inner width=\"1/2\"][/bt_column_inner][bt_column_inner width=\"1/2\" align=\"left\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"animate animate-fadein animate-moveleft\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_hr top_spaced=\"topExtraSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Unique <i>location,</i>\r\nservice and stay\" headline_size=\"huge\" dash=\"bottom\" subheadline=\"At the heart of San Diego, on one of the most colorful beaches, right next to the Pacific ocean, lies the Hotel California, most famous for it’s easy going staff and vacation you’ll never forget...\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_button text=\"Check our OFFERS & DEALS\" icon=\"fa_f061\" url=\"#special-offers\" target=\"no_target\" style=\"Outline\" icon_position=\"Left\" color=\"Accent\" size=\"Small\" width=\"Normal\" el_class=\"\" el_style=\"\"][/bt_button][bt_button text=\"BOOK NOW\" icon=\"no_icon\" url=\"rooms\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Normal\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topSpaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][/bt_slider_item][/bt_slider][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"dark\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#000080\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\"][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\r\n<h4 style=\"text-align: center;\"><em>founded in 1953 along the historic Monterey Bay</em></h4>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSemiSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"2/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Rooms & Suites\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"If you chose to stay with us you will enjoy modern home comforts in a traditional setting. Whether you are looking for a short weekend break or a longer holiday, we offer a range of packages that will cater for all.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/3\"][/bt_column][/bt_row][bt_row][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"44\" caption_text=\"View\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption=\"Double room\" show_titles=\"no\" caption_title=\"Room details\"][bt_header superheadline=\"Room features\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"cs_ea18\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9c2\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea2c\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1c\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"DELUXE\" headline=\"Double Room\" headline_size=\"medium\" dash=\"top\" subheadline=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer mollis viverra diam ac ornare. Donec rhoncus nisi in felis congue, at pulvinar nibh dapibus.\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/2\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"room-details\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"1/2\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"43\" caption_text=\"\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"Room features\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"cs_ea18\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9c5\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1a\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1c\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"EXECUTIVE\" headline=\"Junior Suite\" headline_size=\"medium\" dash=\"top\" subheadline=\"Sed sodales tortor non metus iaculis, non commodo ipsum mattis. Ut at dolor elit. Proin dignissim, lacus eget ullamcorper consectetur, mauris mi mattis elit sagittis.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/2\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"room-details\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"1/2\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"42\" caption_text=\"\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"Room features\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"cs_ea30\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea18\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea2d\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1c\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"DELUXE\" headline=\"Double Room\" headline_size=\"medium\" dash=\"top\" subheadline=\"Mauris suscipit lectus pellentesque ante efficitur, at dignissim tellus maximus. Sed leo magna, faucibus non ante non, pulvinar scelerisque magna sit elis.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/2\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"room-details\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"1/2\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"41\" caption_text=\"\" size=\"medium\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"Room features\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"cs_ea18\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1b\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea21\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1c\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"DELUXE\" headline=\"Family Room\" headline_size=\"medium\" dash=\"top\" subheadline=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer mollis viverra diam ac ornare. Donec rhoncus nisi in felis congue, at pulvinar nibh dapibus.\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/2\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"room-details\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"1/2\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"66\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"0.7\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"special-offers\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"323\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"width: 60px; margin-top: -28px;\"][/bt_image][bt_hr top_spaced=\"topSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"1/2\"][/bt_column][bt_column width=\"1/2\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"GET THE BEST RATE\" headline=\"Offers <i>&</i> Deals\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"If you chose to stay with us you will enjoy modern home comforts in a traditional setting. Whether you are looking for a short weekend break or a longer holiday, we offer a range of packages that we think cater for all.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"1/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"0.7\" inner_background_color=\"#ffffff\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"67\" caption_text=\"Get together\" size=\"\" shape=\"square\" url=\"special-offers\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"Family vacation\" show_titles=\"no\"][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"Get together\" headline=\"Family vacation\" headline_size=\"medium\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"fa_f207\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f13d\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f1eb\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f206\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f1ae\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\r\n\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Integer mollis viverra diam ac ornare. Donec rhoncus nisi in felis congue, at pulvinar nibh dapibus.\r\n\r\n[/bt_text][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/3\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"special-offers\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"2/3\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"0.7\" inner_background_color=\"#ffffff\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"68\" caption_text=\"Celebrate\" size=\"\" shape=\"square\" url=\"special-offers\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"Newlyweds weekend\" show_titles=\"no\"][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"Celebrate\" headline=\"Newlyweds weekend\" headline_size=\"medium\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"fa_f1ba\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f072\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f228\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\r\n\r\nSed ut metus eu neque commodo fringilla imperdiet sed nibh. Sed volutpat fermentum ligula, et maximus ex ultricies sit amet.\r\n\r\n[/bt_text][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/3\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"special-offers\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"2/3\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"0.7\" inner_background_color=\"#ffffff\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"725\" caption_text=\"Procrastinate\" size=\"\" shape=\"square\" url=\"special-offers\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"Lazy weekend\" show_titles=\"no\"][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"Procrastinate\" headline=\"Lazy weekend\" headline_size=\"medium\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"fa_f1ba\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f072\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f1eb\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f000\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f185\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\r\n\r\nPhasellus non bibendum augue. Duis nibh felis, volutpat vitae pulvinar at, tincidunt eget mi. Donec venenatis condimentum fermentum.\r\n\r\n[/bt_text][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/3\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"special-offers\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"2/3\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#e5e5e5\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"322\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"width: 60px; margin-top: -28px;\"][/bt_image][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"7/12\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Activities\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Phasellus blandit a massa vitae congue. Nam ex massa, mattis ut sapien sit amet, consequat sodales risus. Sed interdum, ligula et lobortis faucibus, sem sem placerat augue, eget scelerisque turpis lorem et tellus.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][/bt_column][bt_column width=\"5/12\"][/bt_column][/bt_row][/bt_section][bt_section layout=\"wide\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"dark\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#e5e5e5\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"73\" caption_title=\"Beach voleyball\" caption_text=\"Enjoy the game\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"ENJOY THE GAME\" headline=\"Beach Voleyball\" headline_size=\"medium\" dash=\"top\" subheadline=\"Beach volleyball is ouy visitors favourite sport, highly enjoyable for everyone young or old. Just gather your team on the beach and find the opponents in a matter of minutes. And show what you can do, be a winner!\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_e9ac\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e040\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e041\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"74\" el_class=\"\" el_style=\"\"][bt_image image=\"74\" caption_title=\"Horseback riding\" caption_text=\"Enjoy the beach\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Enjoy the beach\" headline=\"Horseback riding\" headline_size=\"medium\" dash=\"top\" subheadline=\"How about a lazy afternoon with your friends on a hors, while the sun goes down? If you want to chill out, our horse riding team will teach you in a matter of minutes and help you wind down after a good day on the sun.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_ea13\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1e\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e05b\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"75\" el_class=\"\" el_style=\"\"][bt_image image=\"75\" caption_title=\"Waterskiing\" caption_text=\"Enjoy the sea\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Enjoy the sea\" headline=\"Waterskiing\" headline_size=\"medium\" dash=\"top\" subheadline=\"If you are a big fan of water sports, then why not try the waterskiing or waterboarding? At hotel California you will find there\'s an amateur champoionship every year. Rated as the most fun activity by our visitors.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_e05b\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9a3\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9e5\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"76\" el_class=\"\" el_style=\"\"][bt_image image=\"76\" caption_title=\"Paragliding\" caption_text=\"Enjoy the sky\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Enjoy the sky\" headline=\"Parasailing\" headline_size=\"medium\" dash=\"top\" subheadline=\"Enjoy the thrill on the sky with our parasailing team and feel the California sun on your face. The team will help you get your adrenaline high and will be capuring your moments on a high-definition camera.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_ea2f\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"s7_e67b\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9f3\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_slider height=\"auto\" auto_play=\"\" hide_arrows=\"\" hide_paging=\"btSliderHidePaging\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/6\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"78\" caption_text=\"\" size=\"\" shape=\"circle\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][bt_header superheadline=\"June 2016\" headline=\"Alan Jones\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][/bt_column_inner][bt_column_inner width=\"5/6\"][bt_text]\r\n<blockquote>If you chose to stay with us you will enjoy modern home comforts in a traditional setting. Whether you are looking for a short weekend break or a longer holiday, we offer a range of packages that we think cater for all.</blockquote>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/6\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"447\" caption_text=\"\" size=\"\" shape=\"circle\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][/bt_image][bt_header superheadline=\"July 2016\" headline=\"Adrianne White\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][bt_column_inner width=\"5/6\"][bt_text]\r\n<blockquote>If you chose to stay with us you will enjoy modern home comforts in a traditional setting. Whether you are looking for a short weekend break or a longer holiday, we offer a range of packages that we think cater for all.</blockquote>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/1\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_text]\r\n<blockquote>Our mission: to connect our members and our diverse community to the boundless recreational opportunities and proper stewardship of the Monterey Bay and the Pacific Ocean.</blockquote>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][/bt_slider][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/3\" align=\"left\" vertical_align=\"btMiddleVertical\" border=\"no_border\" cell_padding=\"btDoublePadding\" animation=\"animate animate-fadein\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"#e5e5e5\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"IN A NUTSHELL\" headline=\"Hotel California\" headline_size=\"large\" dash=\"bottom\" subheadline=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer mollis viverra diam ac ornare. Donec rhoncus nisi in felis congue, at pulvinar nibh dapibus.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_button text=\"READ MORE\" icon=\"no_icon\" url=\"\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"ExtraSmall\" width=\"Normal\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"2/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_slider height=\"auto\" auto_play=\"\" hide_arrows=\"\" hide_paging=\"btSliderHidePaging\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"81\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"82\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"83\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"84\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"85\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][/bt_slider][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\"][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"2/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_gmaps latitude=\"36.602383\" longitude=\"-121.879245 \" zoom=\"11\" icon=\"342\" height=\"400px\" primary_color=\"\" secondary_color=\"\" water_color=\"\" custom_style=\"WwogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJhZG1pbmlzdHJhdGl2ZSIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImxhYmVscy50ZXh0LmZpbGwiLAogICAgICAgICJzdHlsZXJzIjogWwogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAiY29sb3IiOiAiIzQ0NDQ0NCIKICAgICAgICAgICAgfQogICAgICAgIF0KICAgIH0sCiAgICB7CiAgICAgICAgImZlYXR1cmVUeXBlIjogImxhbmRzY2FwZSIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJjb2xvciI6ICIjZjJmMmYyIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAicG9pIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiYWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInZpc2liaWxpdHkiOiAib2ZmIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAicm9hZCIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJzYXR1cmF0aW9uIjogLTEwMAogICAgICAgICAgICB9LAogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAibGlnaHRuZXNzIjogNDUKICAgICAgICAgICAgfQogICAgICAgIF0KICAgIH0sCiAgICB7CiAgICAgICAgImZlYXR1cmVUeXBlIjogInJvYWQuaGlnaHdheSIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogInNpbXBsaWZpZWQiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJyb2FkLmhpZ2h3YXkiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJnZW9tZXRyeSIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogInNpbXBsaWZpZWQiCiAgICAgICAgICAgIH0sCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJjb2xvciI6ICIjZDc3Mjg3IgogICAgICAgICAgICB9LAogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAibGlnaHRuZXNzIjogIjAiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJyb2FkLmhpZ2h3YXkiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJsYWJlbHMudGV4dCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogIm9uIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAicm9hZC5oaWdod2F5IiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAibGFiZWxzLmljb24iLAogICAgICAgICJzdHlsZXJzIjogWwogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAidmlzaWJpbGl0eSI6ICJvbiIKICAgICAgICAgICAgfQogICAgICAgIF0KICAgIH0sCiAgICB7CiAgICAgICAgImZlYXR1cmVUeXBlIjogInJvYWQuYXJ0ZXJpYWwiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJhbGwiLAogICAgICAgICJzdHlsZXJzIjogWwogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAidmlzaWJpbGl0eSI6ICJvbiIKICAgICAgICAgICAgfQogICAgICAgIF0KICAgIH0sCiAgICB7CiAgICAgICAgImZlYXR1cmVUeXBlIjogInJvYWQuYXJ0ZXJpYWwiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJnZW9tZXRyeS5maWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgImNvbG9yIjogIiNkNzcyODciCiAgICAgICAgICAgIH0sCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJsaWdodG5lc3MiOiAiNzUiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJyb2FkLmFydGVyaWFsIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAibGFiZWxzLmljb24iLAogICAgICAgICJzdHlsZXJzIjogWwogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAidmlzaWJpbGl0eSI6ICJvZmYiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJyb2FkLmxvY2FsIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiZ2VvbWV0cnkuZmlsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJsaWdodG5lc3MiOiAiNzUiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJ0cmFuc2l0IiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiYWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInZpc2liaWxpdHkiOiAib2ZmIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAidHJhbnNpdC5saW5lIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiYWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInZpc2liaWxpdHkiOiAib24iCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJ0cmFuc2l0LnN0YXRpb24uYnVzIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiYWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInZpc2liaWxpdHkiOiAib24iCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJ0cmFuc2l0LnN0YXRpb24ucmFpbCIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogIm9uIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAidHJhbnNpdC5zdGF0aW9uLnJhaWwiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJsYWJlbHMuaWNvbiIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ3ZWlnaHQiOiAiMC4wMSIKICAgICAgICAgICAgfSwKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgImh1ZSI6ICIjZmYwMDM1IgogICAgICAgICAgICB9LAogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAibGlnaHRuZXNzIjogIjAiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJ3YXRlciIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogIm9uIgogICAgICAgICAgICB9LAogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAiY29sb3IiOiAiIzgwZTRkOCIKICAgICAgICAgICAgfSwKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgImxpZ2h0bmVzcyI6ICIyNSIKICAgICAgICAgICAgfSwKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInNhdHVyYXRpb24iOiAiLTIzIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfQpd\" el_class=\"\" el_style=\"\" api_key=\"AIzaSyBda9LxQ-Wztqsk6aFI7SkcdiypnKTPfiI\"][/bt_gmaps][/bt_column][bt_column width=\"1/3\" align=\"left\" vertical_align=\"btMiddleVertical\" border=\"no_border\" cell_padding=\"btDoublePadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"#e5e5e5\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_service icon=\"s7_e638\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoMediumSize\" url=\"\" headline=\"Address\" dash=\"\" text=\"3216 W Highland Boulevard\r\nSan Diego, California\" el_class=\"\" el_style=\"\" superheadline=\"\"][/bt_service][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSemiSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_service icon=\"s7_e670\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoMediumSize\" url=\"\" headline=\"Phone\" dash=\"\" text=\"+555-40-220-6672\" el_class=\"\" el_style=\"\" superheadline=\"\"][/bt_service][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSemiSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_service icon=\"s7_e63a\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoMediumSize\" url=\"\" headline=\"Email\" dash=\"\" text=\"office@california.hotel\" el_class=\"\" el_style=\"\" superheadline=\"\"][/bt_service][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"yes\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"7/12\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"News <i>&</i> Blog\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Morbi pharetra faucibus purus, nec pretium enim luctus quis. Pellentesque aliquet venenatis ante, quis pretium neque tristique eget. Integer in luctus urna. Aenean rutrum sodales pharetra.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"5/12\"][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_latest_posts number=\"3\" category=\"\" format=\"horizontal\" post_type=\"blog\" show_excerpt=\"yes\" show_date=\"yes\" show_author=\"yes\" el_class=\"\" el_style=\"\"][/bt_latest_posts][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"321\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"0.3\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Follow us\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Find out what’s hot and new, and get discounts for being a loyal customer and a Hotel California fan.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_icons][bt_icon icon=\"fa_f09a\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f099\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f0d5\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_column][/bt_row][/bt_section]','Street view','\n ','inherit','closed','closed','','837-revision-v1','','','2021-04-07 04:41:53','2021-04-07 04:41:53','',837,'http://mpycdev.theomggroup.com/?p=1041',0,'revision','',0);
INSERT INTO `smrc_posts` VALUES (1042,1,'2021-04-07 04:43:00','2021-04-07 04:43:00','[bt_section layout=\"wide\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\"][bt_slider height=\"auto\" auto_play=\"5000\" hide_arrows=\"\" hide_paging=\"\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item image=\"1027\" el_class=\"btLightSkin\" el_style=\"\"][bt_row_inner][bt_column_inner width=\"1/2\"][/bt_column_inner][bt_column_inner width=\"1/2\" align=\"left\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"animate animate-fadein animate-moveleft\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_hr top_spaced=\"topExtraSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Welcome to the\r\n<i>Hotel California</i>\" headline_size=\"huge\" dash=\"bottom\" subheadline=\"At the heart of San Diego, on one of the most colorful beaches, right next to the Pacific ocean, lies the Hotel California, most famous for it’s easy going staff and vacation you’ll never forget...\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_button text=\"Check our OFFERS & DEALS\" icon=\"fa_f061\" url=\"#special-offers\" target=\"no_target\" style=\"Outline\" icon_position=\"Left\" color=\"Accent\" size=\"Small\" width=\"Normal\" el_class=\"\" el_style=\"\"][/bt_button][bt_button text=\"BOOK NOW\" icon=\"no_icon\" url=\"rooms\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Normal\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topSpaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][/bt_slider_item][bt_slider_item image=\"1025\" el_class=\"\" el_style=\"\"][bt_row_inner][bt_column_inner width=\"2/3\" align=\"left\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"animate animate-fadein animate-moveleft\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_hr top_spaced=\"topExtraSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"The art of meeting your\r\nhighest <i>expectations</i>\" headline_size=\"huge\" dash=\"bottom\" subheadline=\"Enjoying the sun and sea has never been so easy. At the beach of hotel California, you\'ll find our most complete service, great seaside and easy going staff.\r\nHotel California. Everything. Right where you need it.\" el_class=\"\" el_style=\"max-width: 660px;\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_button text=\"Check our OFFERS & DEALS\" icon=\"fa_f061\" url=\"#special-offers\" target=\"no_target\" style=\"Outline\" icon_position=\"Left\" color=\"Accent\" size=\"Small\" width=\"Normal\" el_class=\"\" el_style=\"\"][/bt_button][bt_button text=\"BOOK NOW\" icon=\"no_icon\" url=\"rooms\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Normal\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topSpaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"1/3\"][/bt_column_inner][/bt_row_inner][/bt_slider_item][bt_slider_item image=\"1035\" el_class=\"btLightSkin\" el_style=\"\"][bt_row_inner][bt_column_inner width=\"1/2\"][/bt_column_inner][bt_column_inner width=\"1/2\" align=\"left\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"animate animate-fadein animate-moveleft\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_hr top_spaced=\"topExtraSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Unique <i>location,</i>\r\nservice and stay\" headline_size=\"huge\" dash=\"bottom\" subheadline=\"At the heart of San Diego, on one of the most colorful beaches, right next to the Pacific ocean, lies the Hotel California, most famous for it’s easy going staff and vacation you’ll never forget...\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_button text=\"Check our OFFERS & DEALS\" icon=\"fa_f061\" url=\"#special-offers\" target=\"no_target\" style=\"Outline\" icon_position=\"Left\" color=\"Accent\" size=\"Small\" width=\"Normal\" el_class=\"\" el_style=\"\"][/bt_button][bt_button text=\"BOOK NOW\" icon=\"no_icon\" url=\"rooms\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Normal\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topSpaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][/bt_slider_item][/bt_slider][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"dark\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#000080\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\"][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\r\n<h4 style=\"text-align: center;\"><em>founded 1953 in historic Monterey, California</em></h4>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSemiSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"2/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Rooms & Suites\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"If you chose to stay with us you will enjoy modern home comforts in a traditional setting. Whether you are looking for a short weekend break or a longer holiday, we offer a range of packages that will cater for all.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/3\"][/bt_column][/bt_row][bt_row][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"44\" caption_text=\"View\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption=\"Double room\" show_titles=\"no\" caption_title=\"Room details\"][bt_header superheadline=\"Room features\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"cs_ea18\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9c2\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea2c\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1c\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"DELUXE\" headline=\"Double Room\" headline_size=\"medium\" dash=\"top\" subheadline=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer mollis viverra diam ac ornare. Donec rhoncus nisi in felis congue, at pulvinar nibh dapibus.\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/2\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"room-details\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"1/2\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"43\" caption_text=\"\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"Room features\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"cs_ea18\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9c5\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1a\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1c\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"EXECUTIVE\" headline=\"Junior Suite\" headline_size=\"medium\" dash=\"top\" subheadline=\"Sed sodales tortor non metus iaculis, non commodo ipsum mattis. Ut at dolor elit. Proin dignissim, lacus eget ullamcorper consectetur, mauris mi mattis elit sagittis.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/2\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"room-details\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"1/2\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"42\" caption_text=\"\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"Room features\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"cs_ea30\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea18\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea2d\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1c\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"DELUXE\" headline=\"Double Room\" headline_size=\"medium\" dash=\"top\" subheadline=\"Mauris suscipit lectus pellentesque ante efficitur, at dignissim tellus maximus. Sed leo magna, faucibus non ante non, pulvinar scelerisque magna sit elis.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/2\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"room-details\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"1/2\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"41\" caption_text=\"\" size=\"medium\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"Room features\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"cs_ea18\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1b\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea21\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1c\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"DELUXE\" headline=\"Family Room\" headline_size=\"medium\" dash=\"top\" subheadline=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer mollis viverra diam ac ornare. Donec rhoncus nisi in felis congue, at pulvinar nibh dapibus.\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/2\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"room-details\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"1/2\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"66\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"0.7\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"special-offers\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"323\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"width: 60px; margin-top: -28px;\"][/bt_image][bt_hr top_spaced=\"topSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"1/2\"][/bt_column][bt_column width=\"1/2\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"GET THE BEST RATE\" headline=\"Offers <i>&</i> Deals\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"If you chose to stay with us you will enjoy modern home comforts in a traditional setting. Whether you are looking for a short weekend break or a longer holiday, we offer a range of packages that we think cater for all.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"1/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"0.7\" inner_background_color=\"#ffffff\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"67\" caption_text=\"Get together\" size=\"\" shape=\"square\" url=\"special-offers\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"Family vacation\" show_titles=\"no\"][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"Get together\" headline=\"Family vacation\" headline_size=\"medium\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"fa_f207\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f13d\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f1eb\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f206\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f1ae\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\r\n\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Integer mollis viverra diam ac ornare. Donec rhoncus nisi in felis congue, at pulvinar nibh dapibus.\r\n\r\n[/bt_text][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/3\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"special-offers\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"2/3\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"0.7\" inner_background_color=\"#ffffff\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"68\" caption_text=\"Celebrate\" size=\"\" shape=\"square\" url=\"special-offers\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"Newlyweds weekend\" show_titles=\"no\"][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"Celebrate\" headline=\"Newlyweds weekend\" headline_size=\"medium\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"fa_f1ba\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f072\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f228\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\r\n\r\nSed ut metus eu neque commodo fringilla imperdiet sed nibh. Sed volutpat fermentum ligula, et maximus ex ultricies sit amet.\r\n\r\n[/bt_text][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/3\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"special-offers\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"2/3\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"0.7\" inner_background_color=\"#ffffff\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"725\" caption_text=\"Procrastinate\" size=\"\" shape=\"square\" url=\"special-offers\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"Lazy weekend\" show_titles=\"no\"][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"Procrastinate\" headline=\"Lazy weekend\" headline_size=\"medium\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"fa_f1ba\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f072\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f1eb\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f000\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f185\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\r\n\r\nPhasellus non bibendum augue. Duis nibh felis, volutpat vitae pulvinar at, tincidunt eget mi. Donec venenatis condimentum fermentum.\r\n\r\n[/bt_text][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/3\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"special-offers\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"2/3\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#e5e5e5\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"322\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"width: 60px; margin-top: -28px;\"][/bt_image][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"7/12\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Activities\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Phasellus blandit a massa vitae congue. Nam ex massa, mattis ut sapien sit amet, consequat sodales risus. Sed interdum, ligula et lobortis faucibus, sem sem placerat augue, eget scelerisque turpis lorem et tellus.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][/bt_column][bt_column width=\"5/12\"][/bt_column][/bt_row][/bt_section][bt_section layout=\"wide\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"dark\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#e5e5e5\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"73\" caption_title=\"Beach voleyball\" caption_text=\"Enjoy the game\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"ENJOY THE GAME\" headline=\"Beach Voleyball\" headline_size=\"medium\" dash=\"top\" subheadline=\"Beach volleyball is ouy visitors favourite sport, highly enjoyable for everyone young or old. Just gather your team on the beach and find the opponents in a matter of minutes. And show what you can do, be a winner!\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_e9ac\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e040\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e041\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"74\" el_class=\"\" el_style=\"\"][bt_image image=\"74\" caption_title=\"Horseback riding\" caption_text=\"Enjoy the beach\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Enjoy the beach\" headline=\"Horseback riding\" headline_size=\"medium\" dash=\"top\" subheadline=\"How about a lazy afternoon with your friends on a hors, while the sun goes down? If you want to chill out, our horse riding team will teach you in a matter of minutes and help you wind down after a good day on the sun.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_ea13\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1e\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e05b\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"75\" el_class=\"\" el_style=\"\"][bt_image image=\"75\" caption_title=\"Waterskiing\" caption_text=\"Enjoy the sea\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Enjoy the sea\" headline=\"Waterskiing\" headline_size=\"medium\" dash=\"top\" subheadline=\"If you are a big fan of water sports, then why not try the waterskiing or waterboarding? At hotel California you will find there\'s an amateur champoionship every year. Rated as the most fun activity by our visitors.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_e05b\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9a3\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9e5\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"76\" el_class=\"\" el_style=\"\"][bt_image image=\"76\" caption_title=\"Paragliding\" caption_text=\"Enjoy the sky\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Enjoy the sky\" headline=\"Parasailing\" headline_size=\"medium\" dash=\"top\" subheadline=\"Enjoy the thrill on the sky with our parasailing team and feel the California sun on your face. The team will help you get your adrenaline high and will be capuring your moments on a high-definition camera.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_ea2f\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"s7_e67b\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9f3\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_slider height=\"auto\" auto_play=\"\" hide_arrows=\"\" hide_paging=\"btSliderHidePaging\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/6\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"78\" caption_text=\"\" size=\"\" shape=\"circle\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][bt_header superheadline=\"June 2016\" headline=\"Alan Jones\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][/bt_column_inner][bt_column_inner width=\"5/6\"][bt_text]\r\n<blockquote>If you chose to stay with us you will enjoy modern home comforts in a traditional setting. Whether you are looking for a short weekend break or a longer holiday, we offer a range of packages that we think cater for all.</blockquote>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/6\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"447\" caption_text=\"\" size=\"\" shape=\"circle\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][/bt_image][bt_header superheadline=\"July 2016\" headline=\"Adrianne White\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][bt_column_inner width=\"5/6\"][bt_text]\r\n<blockquote>If you chose to stay with us you will enjoy modern home comforts in a traditional setting. Whether you are looking for a short weekend break or a longer holiday, we offer a range of packages that we think cater for all.</blockquote>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/1\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_text]\r\n<blockquote>Our mission: to connect our members and our diverse community to the boundless recreational opportunities and proper stewardship of the Monterey Bay and the Pacific Ocean.</blockquote>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][/bt_slider][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/3\" align=\"left\" vertical_align=\"btMiddleVertical\" border=\"no_border\" cell_padding=\"btDoublePadding\" animation=\"animate animate-fadein\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"#e5e5e5\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"IN A NUTSHELL\" headline=\"Hotel California\" headline_size=\"large\" dash=\"bottom\" subheadline=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer mollis viverra diam ac ornare. Donec rhoncus nisi in felis congue, at pulvinar nibh dapibus.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_button text=\"READ MORE\" icon=\"no_icon\" url=\"\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"ExtraSmall\" width=\"Normal\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"2/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_slider height=\"auto\" auto_play=\"\" hide_arrows=\"\" hide_paging=\"btSliderHidePaging\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"81\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"82\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"83\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"84\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"85\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][/bt_slider][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\"][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"2/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_gmaps latitude=\"36.602383\" longitude=\"-121.879245 \" zoom=\"11\" icon=\"342\" height=\"400px\" primary_color=\"\" secondary_color=\"\" water_color=\"\" custom_style=\"WwogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJhZG1pbmlzdHJhdGl2ZSIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImxhYmVscy50ZXh0LmZpbGwiLAogICAgICAgICJzdHlsZXJzIjogWwogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAiY29sb3IiOiAiIzQ0NDQ0NCIKICAgICAgICAgICAgfQogICAgICAgIF0KICAgIH0sCiAgICB7CiAgICAgICAgImZlYXR1cmVUeXBlIjogImxhbmRzY2FwZSIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJjb2xvciI6ICIjZjJmMmYyIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAicG9pIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiYWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInZpc2liaWxpdHkiOiAib2ZmIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAicm9hZCIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJzYXR1cmF0aW9uIjogLTEwMAogICAgICAgICAgICB9LAogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAibGlnaHRuZXNzIjogNDUKICAgICAgICAgICAgfQogICAgICAgIF0KICAgIH0sCiAgICB7CiAgICAgICAgImZlYXR1cmVUeXBlIjogInJvYWQuaGlnaHdheSIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogInNpbXBsaWZpZWQiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJyb2FkLmhpZ2h3YXkiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJnZW9tZXRyeSIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogInNpbXBsaWZpZWQiCiAgICAgICAgICAgIH0sCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJjb2xvciI6ICIjZDc3Mjg3IgogICAgICAgICAgICB9LAogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAibGlnaHRuZXNzIjogIjAiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJyb2FkLmhpZ2h3YXkiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJsYWJlbHMudGV4dCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogIm9uIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAicm9hZC5oaWdod2F5IiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAibGFiZWxzLmljb24iLAogICAgICAgICJzdHlsZXJzIjogWwogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAidmlzaWJpbGl0eSI6ICJvbiIKICAgICAgICAgICAgfQogICAgICAgIF0KICAgIH0sCiAgICB7CiAgICAgICAgImZlYXR1cmVUeXBlIjogInJvYWQuYXJ0ZXJpYWwiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJhbGwiLAogICAgICAgICJzdHlsZXJzIjogWwogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAidmlzaWJpbGl0eSI6ICJvbiIKICAgICAgICAgICAgfQogICAgICAgIF0KICAgIH0sCiAgICB7CiAgICAgICAgImZlYXR1cmVUeXBlIjogInJvYWQuYXJ0ZXJpYWwiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJnZW9tZXRyeS5maWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgImNvbG9yIjogIiNkNzcyODciCiAgICAgICAgICAgIH0sCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJsaWdodG5lc3MiOiAiNzUiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJyb2FkLmFydGVyaWFsIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAibGFiZWxzLmljb24iLAogICAgICAgICJzdHlsZXJzIjogWwogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAidmlzaWJpbGl0eSI6ICJvZmYiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJyb2FkLmxvY2FsIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiZ2VvbWV0cnkuZmlsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJsaWdodG5lc3MiOiAiNzUiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJ0cmFuc2l0IiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiYWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInZpc2liaWxpdHkiOiAib2ZmIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAidHJhbnNpdC5saW5lIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiYWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInZpc2liaWxpdHkiOiAib24iCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJ0cmFuc2l0LnN0YXRpb24uYnVzIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiYWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInZpc2liaWxpdHkiOiAib24iCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJ0cmFuc2l0LnN0YXRpb24ucmFpbCIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogIm9uIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAidHJhbnNpdC5zdGF0aW9uLnJhaWwiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJsYWJlbHMuaWNvbiIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ3ZWlnaHQiOiAiMC4wMSIKICAgICAgICAgICAgfSwKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgImh1ZSI6ICIjZmYwMDM1IgogICAgICAgICAgICB9LAogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAibGlnaHRuZXNzIjogIjAiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJ3YXRlciIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogIm9uIgogICAgICAgICAgICB9LAogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAiY29sb3IiOiAiIzgwZTRkOCIKICAgICAgICAgICAgfSwKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgImxpZ2h0bmVzcyI6ICIyNSIKICAgICAgICAgICAgfSwKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInNhdHVyYXRpb24iOiAiLTIzIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfQpd\" el_class=\"\" el_style=\"\" api_key=\"AIzaSyBda9LxQ-Wztqsk6aFI7SkcdiypnKTPfiI\"][/bt_gmaps][/bt_column][bt_column width=\"1/3\" align=\"left\" vertical_align=\"btMiddleVertical\" border=\"no_border\" cell_padding=\"btDoublePadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"#e5e5e5\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_service icon=\"s7_e638\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoMediumSize\" url=\"\" headline=\"Address\" dash=\"\" text=\"3216 W Highland Boulevard\r\nSan Diego, California\" el_class=\"\" el_style=\"\" superheadline=\"\"][/bt_service][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSemiSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_service icon=\"s7_e670\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoMediumSize\" url=\"\" headline=\"Phone\" dash=\"\" text=\"+555-40-220-6672\" el_class=\"\" el_style=\"\" superheadline=\"\"][/bt_service][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSemiSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_service icon=\"s7_e63a\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoMediumSize\" url=\"\" headline=\"Email\" dash=\"\" text=\"office@california.hotel\" el_class=\"\" el_style=\"\" superheadline=\"\"][/bt_service][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"yes\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"7/12\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"News <i>&</i> Blog\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Morbi pharetra faucibus purus, nec pretium enim luctus quis. Pellentesque aliquet venenatis ante, quis pretium neque tristique eget. Integer in luctus urna. Aenean rutrum sodales pharetra.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"5/12\"][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_latest_posts number=\"3\" category=\"\" format=\"horizontal\" post_type=\"blog\" show_excerpt=\"yes\" show_date=\"yes\" show_author=\"yes\" el_class=\"\" el_style=\"\"][/bt_latest_posts][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"321\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"0.3\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Follow us\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Find out what’s hot and new, and get discounts for being a loyal customer and a Hotel California fan.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_icons][bt_icon icon=\"fa_f09a\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f099\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f0d5\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_column][/bt_row][/bt_section]','Street view','\n ','inherit','closed','closed','','837-revision-v1','','','2021-04-07 04:43:00','2021-04-07 04:43:00','',837,'http://mpycdev.theomggroup.com/?p=1042',0,'revision','',0);
INSERT INTO `smrc_posts` VALUES (1043,1,'2021-04-07 04:46:57','2021-04-07 04:46:57','[bt_section layout=\"wide\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\"][bt_slider height=\"large\" auto_play=\"5000\" hide_arrows=\"\" hide_paging=\"\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item image=\"1027\" el_class=\"btLightSkin\" el_style=\"\"][bt_row_inner][bt_column_inner width=\"1/2\"][/bt_column_inner][bt_column_inner width=\"1/2\" align=\"left\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"animate animate-fadein animate-moveleft\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_hr top_spaced=\"topExtraSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Welcome to the\r\n<i>Hotel California</i>\" headline_size=\"huge\" dash=\"bottom\" subheadline=\"At the heart of San Diego, on one of the most colorful beaches, right next to the Pacific ocean, lies the Hotel California, most famous for it’s easy going staff and vacation you’ll never forget...\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_button text=\"Check our OFFERS & DEALS\" icon=\"fa_f061\" url=\"#special-offers\" target=\"no_target\" style=\"Outline\" icon_position=\"Left\" color=\"Accent\" size=\"Small\" width=\"Normal\" el_class=\"\" el_style=\"\"][/bt_button][bt_button text=\"BOOK NOW\" icon=\"no_icon\" url=\"rooms\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Normal\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topSpaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][/bt_slider_item][bt_slider_item image=\"1025\" el_class=\"\" el_style=\"\"][bt_row_inner][bt_column_inner width=\"2/3\" align=\"left\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"animate animate-fadein animate-moveleft\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_hr top_spaced=\"topExtraSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"The art of meeting your\r\nhighest <i>expectations</i>\" headline_size=\"huge\" dash=\"bottom\" subheadline=\"Enjoying the sun and sea has never been so easy. At the beach of hotel California, you\'ll find our most complete service, great seaside and easy going staff.\r\nHotel California. Everything. Right where you need it.\" el_class=\"\" el_style=\"max-width: 660px;\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_button text=\"Check our OFFERS & DEALS\" icon=\"fa_f061\" url=\"#special-offers\" target=\"no_target\" style=\"Outline\" icon_position=\"Left\" color=\"Accent\" size=\"Small\" width=\"Normal\" el_class=\"\" el_style=\"\"][/bt_button][bt_button text=\"BOOK NOW\" icon=\"no_icon\" url=\"rooms\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Normal\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topSpaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"1/3\"][/bt_column_inner][/bt_row_inner][/bt_slider_item][bt_slider_item image=\"1035\" el_class=\"btLightSkin\" el_style=\"\"][bt_row_inner][bt_column_inner width=\"1/2\"][/bt_column_inner][bt_column_inner width=\"1/2\" align=\"left\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"animate animate-fadein animate-moveleft\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_hr top_spaced=\"topExtraSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Unique <i>location,</i>\r\nservice and stay\" headline_size=\"huge\" dash=\"bottom\" subheadline=\"At the heart of San Diego, on one of the most colorful beaches, right next to the Pacific ocean, lies the Hotel California, most famous for it’s easy going staff and vacation you’ll never forget...\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_button text=\"Check our OFFERS & DEALS\" icon=\"fa_f061\" url=\"#special-offers\" target=\"no_target\" style=\"Outline\" icon_position=\"Left\" color=\"Accent\" size=\"Small\" width=\"Normal\" el_class=\"\" el_style=\"\"][/bt_button][bt_button text=\"BOOK NOW\" icon=\"no_icon\" url=\"rooms\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Normal\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topSpaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][/bt_slider_item][/bt_slider][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"dark\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#000080\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\"][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\r\n<h4 style=\"text-align: center;\"><em>founded 1953 in historic Monterey, California</em></h4>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSemiSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"2/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Rooms & Suites\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"If you chose to stay with us you will enjoy modern home comforts in a traditional setting. Whether you are looking for a short weekend break or a longer holiday, we offer a range of packages that will cater for all.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/3\"][/bt_column][/bt_row][bt_row][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"44\" caption_text=\"View\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption=\"Double room\" show_titles=\"no\" caption_title=\"Room details\"][bt_header superheadline=\"Room features\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"cs_ea18\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9c2\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea2c\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1c\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"DELUXE\" headline=\"Double Room\" headline_size=\"medium\" dash=\"top\" subheadline=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer mollis viverra diam ac ornare. Donec rhoncus nisi in felis congue, at pulvinar nibh dapibus.\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/2\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"room-details\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"1/2\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"43\" caption_text=\"\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"Room features\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"cs_ea18\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9c5\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1a\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1c\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"EXECUTIVE\" headline=\"Junior Suite\" headline_size=\"medium\" dash=\"top\" subheadline=\"Sed sodales tortor non metus iaculis, non commodo ipsum mattis. Ut at dolor elit. Proin dignissim, lacus eget ullamcorper consectetur, mauris mi mattis elit sagittis.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/2\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"room-details\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"1/2\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"42\" caption_text=\"\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"Room features\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"cs_ea30\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea18\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea2d\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1c\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"DELUXE\" headline=\"Double Room\" headline_size=\"medium\" dash=\"top\" subheadline=\"Mauris suscipit lectus pellentesque ante efficitur, at dignissim tellus maximus. Sed leo magna, faucibus non ante non, pulvinar scelerisque magna sit elis.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/2\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"room-details\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"1/2\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"41\" caption_text=\"\" size=\"medium\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"Room features\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"cs_ea18\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1b\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea21\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1c\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"DELUXE\" headline=\"Family Room\" headline_size=\"medium\" dash=\"top\" subheadline=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer mollis viverra diam ac ornare. Donec rhoncus nisi in felis congue, at pulvinar nibh dapibus.\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/2\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"room-details\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"1/2\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"66\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"0.7\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"special-offers\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"323\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"width: 60px; margin-top: -28px;\"][/bt_image][bt_hr top_spaced=\"topSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"1/2\"][/bt_column][bt_column width=\"1/2\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"GET THE BEST RATE\" headline=\"Offers <i>&</i> Deals\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"If you chose to stay with us you will enjoy modern home comforts in a traditional setting. Whether you are looking for a short weekend break or a longer holiday, we offer a range of packages that we think cater for all.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"1/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"0.7\" inner_background_color=\"#ffffff\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"67\" caption_text=\"Get together\" size=\"\" shape=\"square\" url=\"special-offers\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"Family vacation\" show_titles=\"no\"][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"Get together\" headline=\"Family vacation\" headline_size=\"medium\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"fa_f207\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f13d\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f1eb\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f206\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f1ae\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\r\n\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Integer mollis viverra diam ac ornare. Donec rhoncus nisi in felis congue, at pulvinar nibh dapibus.\r\n\r\n[/bt_text][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/3\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"special-offers\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"2/3\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"0.7\" inner_background_color=\"#ffffff\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"68\" caption_text=\"Celebrate\" size=\"\" shape=\"square\" url=\"special-offers\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"Newlyweds weekend\" show_titles=\"no\"][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"Celebrate\" headline=\"Newlyweds weekend\" headline_size=\"medium\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"fa_f1ba\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f072\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f228\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\r\n\r\nSed ut metus eu neque commodo fringilla imperdiet sed nibh. Sed volutpat fermentum ligula, et maximus ex ultricies sit amet.\r\n\r\n[/bt_text][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/3\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"special-offers\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"2/3\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"0.7\" inner_background_color=\"#ffffff\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"725\" caption_text=\"Procrastinate\" size=\"\" shape=\"square\" url=\"special-offers\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"Lazy weekend\" show_titles=\"no\"][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"Procrastinate\" headline=\"Lazy weekend\" headline_size=\"medium\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"fa_f1ba\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f072\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f1eb\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f000\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f185\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\r\n\r\nPhasellus non bibendum augue. Duis nibh felis, volutpat vitae pulvinar at, tincidunt eget mi. Donec venenatis condimentum fermentum.\r\n\r\n[/bt_text][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/3\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"special-offers\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"2/3\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#e5e5e5\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"322\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"width: 60px; margin-top: -28px;\"][/bt_image][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"7/12\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Activities\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Phasellus blandit a massa vitae congue. Nam ex massa, mattis ut sapien sit amet, consequat sodales risus. Sed interdum, ligula et lobortis faucibus, sem sem placerat augue, eget scelerisque turpis lorem et tellus.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][/bt_column][bt_column width=\"5/12\"][/bt_column][/bt_row][/bt_section][bt_section layout=\"wide\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"dark\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#e5e5e5\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"73\" caption_title=\"Beach voleyball\" caption_text=\"Enjoy the game\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"ENJOY THE GAME\" headline=\"Beach Voleyball\" headline_size=\"medium\" dash=\"top\" subheadline=\"Beach volleyball is ouy visitors favourite sport, highly enjoyable for everyone young or old. Just gather your team on the beach and find the opponents in a matter of minutes. And show what you can do, be a winner!\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_e9ac\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e040\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e041\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"74\" el_class=\"\" el_style=\"\"][bt_image image=\"74\" caption_title=\"Horseback riding\" caption_text=\"Enjoy the beach\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Enjoy the beach\" headline=\"Horseback riding\" headline_size=\"medium\" dash=\"top\" subheadline=\"How about a lazy afternoon with your friends on a hors, while the sun goes down? If you want to chill out, our horse riding team will teach you in a matter of minutes and help you wind down after a good day on the sun.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_ea13\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1e\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e05b\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"75\" el_class=\"\" el_style=\"\"][bt_image image=\"75\" caption_title=\"Waterskiing\" caption_text=\"Enjoy the sea\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Enjoy the sea\" headline=\"Waterskiing\" headline_size=\"medium\" dash=\"top\" subheadline=\"If you are a big fan of water sports, then why not try the waterskiing or waterboarding? At hotel California you will find there\'s an amateur champoionship every year. Rated as the most fun activity by our visitors.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_e05b\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9a3\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9e5\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"76\" el_class=\"\" el_style=\"\"][bt_image image=\"76\" caption_title=\"Paragliding\" caption_text=\"Enjoy the sky\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Enjoy the sky\" headline=\"Parasailing\" headline_size=\"medium\" dash=\"top\" subheadline=\"Enjoy the thrill on the sky with our parasailing team and feel the California sun on your face. The team will help you get your adrenaline high and will be capuring your moments on a high-definition camera.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_ea2f\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"s7_e67b\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9f3\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_slider height=\"auto\" auto_play=\"\" hide_arrows=\"\" hide_paging=\"btSliderHidePaging\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/6\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"78\" caption_text=\"\" size=\"\" shape=\"circle\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][bt_header superheadline=\"June 2016\" headline=\"Alan Jones\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][/bt_column_inner][bt_column_inner width=\"5/6\"][bt_text]\r\n<blockquote>If you chose to stay with us you will enjoy modern home comforts in a traditional setting. Whether you are looking for a short weekend break or a longer holiday, we offer a range of packages that we think cater for all.</blockquote>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/6\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"447\" caption_text=\"\" size=\"\" shape=\"circle\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][/bt_image][bt_header superheadline=\"July 2016\" headline=\"Adrianne White\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][bt_column_inner width=\"5/6\"][bt_text]\r\n<blockquote>If you chose to stay with us you will enjoy modern home comforts in a traditional setting. Whether you are looking for a short weekend break or a longer holiday, we offer a range of packages that we think cater for all.</blockquote>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/1\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_text]\r\n<blockquote>Our mission: to connect our members and our diverse community to the boundless recreational opportunities and proper stewardship of the Monterey Bay and the Pacific Ocean.</blockquote>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][/bt_slider][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/3\" align=\"left\" vertical_align=\"btMiddleVertical\" border=\"no_border\" cell_padding=\"btDoublePadding\" animation=\"animate animate-fadein\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"#e5e5e5\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"IN A NUTSHELL\" headline=\"Hotel California\" headline_size=\"large\" dash=\"bottom\" subheadline=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer mollis viverra diam ac ornare. Donec rhoncus nisi in felis congue, at pulvinar nibh dapibus.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_button text=\"READ MORE\" icon=\"no_icon\" url=\"\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"ExtraSmall\" width=\"Normal\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"2/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_slider height=\"auto\" auto_play=\"\" hide_arrows=\"\" hide_paging=\"btSliderHidePaging\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"81\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"82\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"83\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"84\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"85\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][/bt_slider][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\"][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"2/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_gmaps latitude=\"36.602383\" longitude=\"-121.879245 \" zoom=\"11\" icon=\"342\" height=\"400px\" primary_color=\"\" secondary_color=\"\" water_color=\"\" custom_style=\"WwogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJhZG1pbmlzdHJhdGl2ZSIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImxhYmVscy50ZXh0LmZpbGwiLAogICAgICAgICJzdHlsZXJzIjogWwogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAiY29sb3IiOiAiIzQ0NDQ0NCIKICAgICAgICAgICAgfQogICAgICAgIF0KICAgIH0sCiAgICB7CiAgICAgICAgImZlYXR1cmVUeXBlIjogImxhbmRzY2FwZSIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJjb2xvciI6ICIjZjJmMmYyIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAicG9pIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiYWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInZpc2liaWxpdHkiOiAib2ZmIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAicm9hZCIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJzYXR1cmF0aW9uIjogLTEwMAogICAgICAgICAgICB9LAogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAibGlnaHRuZXNzIjogNDUKICAgICAgICAgICAgfQogICAgICAgIF0KICAgIH0sCiAgICB7CiAgICAgICAgImZlYXR1cmVUeXBlIjogInJvYWQuaGlnaHdheSIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogInNpbXBsaWZpZWQiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJyb2FkLmhpZ2h3YXkiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJnZW9tZXRyeSIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogInNpbXBsaWZpZWQiCiAgICAgICAgICAgIH0sCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJjb2xvciI6ICIjZDc3Mjg3IgogICAgICAgICAgICB9LAogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAibGlnaHRuZXNzIjogIjAiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJyb2FkLmhpZ2h3YXkiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJsYWJlbHMudGV4dCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogIm9uIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAicm9hZC5oaWdod2F5IiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAibGFiZWxzLmljb24iLAogICAgICAgICJzdHlsZXJzIjogWwogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAidmlzaWJpbGl0eSI6ICJvbiIKICAgICAgICAgICAgfQogICAgICAgIF0KICAgIH0sCiAgICB7CiAgICAgICAgImZlYXR1cmVUeXBlIjogInJvYWQuYXJ0ZXJpYWwiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJhbGwiLAogICAgICAgICJzdHlsZXJzIjogWwogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAidmlzaWJpbGl0eSI6ICJvbiIKICAgICAgICAgICAgfQogICAgICAgIF0KICAgIH0sCiAgICB7CiAgICAgICAgImZlYXR1cmVUeXBlIjogInJvYWQuYXJ0ZXJpYWwiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJnZW9tZXRyeS5maWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgImNvbG9yIjogIiNkNzcyODciCiAgICAgICAgICAgIH0sCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJsaWdodG5lc3MiOiAiNzUiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJyb2FkLmFydGVyaWFsIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAibGFiZWxzLmljb24iLAogICAgICAgICJzdHlsZXJzIjogWwogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAidmlzaWJpbGl0eSI6ICJvZmYiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJyb2FkLmxvY2FsIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiZ2VvbWV0cnkuZmlsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJsaWdodG5lc3MiOiAiNzUiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJ0cmFuc2l0IiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiYWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInZpc2liaWxpdHkiOiAib2ZmIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAidHJhbnNpdC5saW5lIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiYWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInZpc2liaWxpdHkiOiAib24iCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJ0cmFuc2l0LnN0YXRpb24uYnVzIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiYWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInZpc2liaWxpdHkiOiAib24iCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJ0cmFuc2l0LnN0YXRpb24ucmFpbCIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogIm9uIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAidHJhbnNpdC5zdGF0aW9uLnJhaWwiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJsYWJlbHMuaWNvbiIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ3ZWlnaHQiOiAiMC4wMSIKICAgICAgICAgICAgfSwKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgImh1ZSI6ICIjZmYwMDM1IgogICAgICAgICAgICB9LAogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAibGlnaHRuZXNzIjogIjAiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJ3YXRlciIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogIm9uIgogICAgICAgICAgICB9LAogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAiY29sb3IiOiAiIzgwZTRkOCIKICAgICAgICAgICAgfSwKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgImxpZ2h0bmVzcyI6ICIyNSIKICAgICAgICAgICAgfSwKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInNhdHVyYXRpb24iOiAiLTIzIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfQpd\" el_class=\"\" el_style=\"\" api_key=\"AIzaSyBda9LxQ-Wztqsk6aFI7SkcdiypnKTPfiI\"][/bt_gmaps][/bt_column][bt_column width=\"1/3\" align=\"left\" vertical_align=\"btMiddleVertical\" border=\"no_border\" cell_padding=\"btDoublePadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"#e5e5e5\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_service icon=\"s7_e638\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoMediumSize\" url=\"\" headline=\"Address\" dash=\"\" text=\"3216 W Highland Boulevard\r\nSan Diego, California\" el_class=\"\" el_style=\"\" superheadline=\"\"][/bt_service][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSemiSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_service icon=\"s7_e670\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoMediumSize\" url=\"\" headline=\"Phone\" dash=\"\" text=\"+555-40-220-6672\" el_class=\"\" el_style=\"\" superheadline=\"\"][/bt_service][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSemiSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_service icon=\"s7_e63a\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoMediumSize\" url=\"\" headline=\"Email\" dash=\"\" text=\"office@california.hotel\" el_class=\"\" el_style=\"\" superheadline=\"\"][/bt_service][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"yes\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"7/12\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"News <i>&</i> Blog\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Morbi pharetra faucibus purus, nec pretium enim luctus quis. Pellentesque aliquet venenatis ante, quis pretium neque tristique eget. Integer in luctus urna. Aenean rutrum sodales pharetra.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"5/12\"][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_latest_posts number=\"3\" category=\"\" format=\"horizontal\" post_type=\"blog\" show_excerpt=\"yes\" show_date=\"yes\" show_author=\"yes\" el_class=\"\" el_style=\"\"][/bt_latest_posts][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"321\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"0.3\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Follow us\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Find out what’s hot and new, and get discounts for being a loyal customer and a Hotel California fan.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_icons][bt_icon icon=\"fa_f09a\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f099\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f0d5\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_column][/bt_row][/bt_section]','Street view','\n ','inherit','closed','closed','','837-revision-v1','','','2021-04-07 04:46:57','2021-04-07 04:46:57','',837,'http://mpycdev.theomggroup.com/?p=1043',0,'revision','',0);
INSERT INTO `smrc_posts` VALUES (1044,1,'2021-04-07 04:47:29','2021-04-07 04:47:29','[bt_section layout=\"wide\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\"][bt_slider height=\"large\" auto_play=\"5000\" hide_arrows=\"\" hide_paging=\"\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item image=\"1027\" el_class=\"btLightSkin\" el_style=\"\"][bt_row_inner][/bt_row_inner][/bt_slider_item][bt_slider_item image=\"1025\" el_class=\"\" el_style=\"\"][bt_row_inner][bt_column_inner width=\"2/3\" align=\"left\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"animate animate-fadein animate-moveleft\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_hr top_spaced=\"topExtraSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"The art of meeting your\r\nhighest <i>expectations</i>\" headline_size=\"huge\" dash=\"bottom\" subheadline=\"Enjoying the sun and sea has never been so easy. At the beach of hotel California, you\'ll find our most complete service, great seaside and easy going staff.\r\nHotel California. Everything. Right where you need it.\" el_class=\"\" el_style=\"max-width: 660px;\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_button text=\"Check our OFFERS & DEALS\" icon=\"fa_f061\" url=\"#special-offers\" target=\"no_target\" style=\"Outline\" icon_position=\"Left\" color=\"Accent\" size=\"Small\" width=\"Normal\" el_class=\"\" el_style=\"\"][/bt_button][bt_button text=\"BOOK NOW\" icon=\"no_icon\" url=\"rooms\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Normal\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topSpaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"1/3\"][/bt_column_inner][/bt_row_inner][/bt_slider_item][bt_slider_item image=\"1035\" el_class=\"btLightSkin\" el_style=\"\"][bt_row_inner][bt_column_inner width=\"1/2\"][/bt_column_inner][bt_column_inner width=\"1/2\" align=\"left\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"animate animate-fadein animate-moveleft\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_hr top_spaced=\"topExtraSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Unique <i>location,</i>\r\nservice and stay\" headline_size=\"huge\" dash=\"bottom\" subheadline=\"At the heart of San Diego, on one of the most colorful beaches, right next to the Pacific ocean, lies the Hotel California, most famous for it’s easy going staff and vacation you’ll never forget...\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_button text=\"Check our OFFERS & DEALS\" icon=\"fa_f061\" url=\"#special-offers\" target=\"no_target\" style=\"Outline\" icon_position=\"Left\" color=\"Accent\" size=\"Small\" width=\"Normal\" el_class=\"\" el_style=\"\"][/bt_button][bt_button text=\"BOOK NOW\" icon=\"no_icon\" url=\"rooms\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Normal\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topSpaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][/bt_slider_item][/bt_slider][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"dark\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#000080\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\"][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\r\n<h4 style=\"text-align: center;\"><em>founded 1953 in historic Monterey, California</em></h4>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSemiSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"2/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Rooms & Suites\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"If you chose to stay with us you will enjoy modern home comforts in a traditional setting. Whether you are looking for a short weekend break or a longer holiday, we offer a range of packages that will cater for all.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/3\"][/bt_column][/bt_row][bt_row][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"44\" caption_text=\"View\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption=\"Double room\" show_titles=\"no\" caption_title=\"Room details\"][bt_header superheadline=\"Room features\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"cs_ea18\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9c2\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea2c\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1c\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"DELUXE\" headline=\"Double Room\" headline_size=\"medium\" dash=\"top\" subheadline=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer mollis viverra diam ac ornare. Donec rhoncus nisi in felis congue, at pulvinar nibh dapibus.\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/2\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"room-details\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"1/2\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"43\" caption_text=\"\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"Room features\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"cs_ea18\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9c5\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1a\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1c\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"EXECUTIVE\" headline=\"Junior Suite\" headline_size=\"medium\" dash=\"top\" subheadline=\"Sed sodales tortor non metus iaculis, non commodo ipsum mattis. Ut at dolor elit. Proin dignissim, lacus eget ullamcorper consectetur, mauris mi mattis elit sagittis.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/2\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"room-details\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"1/2\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"42\" caption_text=\"\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"Room features\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"cs_ea30\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea18\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea2d\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1c\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"DELUXE\" headline=\"Double Room\" headline_size=\"medium\" dash=\"top\" subheadline=\"Mauris suscipit lectus pellentesque ante efficitur, at dignissim tellus maximus. Sed leo magna, faucibus non ante non, pulvinar scelerisque magna sit elis.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/2\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"room-details\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"1/2\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"41\" caption_text=\"\" size=\"medium\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"Room features\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"cs_ea18\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1b\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea21\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1c\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"DELUXE\" headline=\"Family Room\" headline_size=\"medium\" dash=\"top\" subheadline=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer mollis viverra diam ac ornare. Donec rhoncus nisi in felis congue, at pulvinar nibh dapibus.\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/2\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"room-details\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"1/2\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"66\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"0.7\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"special-offers\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"323\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"width: 60px; margin-top: -28px;\"][/bt_image][bt_hr top_spaced=\"topSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"1/2\"][/bt_column][bt_column width=\"1/2\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"GET THE BEST RATE\" headline=\"Offers <i>&</i> Deals\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"If you chose to stay with us you will enjoy modern home comforts in a traditional setting. Whether you are looking for a short weekend break or a longer holiday, we offer a range of packages that we think cater for all.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"1/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"0.7\" inner_background_color=\"#ffffff\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"67\" caption_text=\"Get together\" size=\"\" shape=\"square\" url=\"special-offers\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"Family vacation\" show_titles=\"no\"][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"Get together\" headline=\"Family vacation\" headline_size=\"medium\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"fa_f207\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f13d\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f1eb\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f206\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f1ae\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\r\n\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Integer mollis viverra diam ac ornare. Donec rhoncus nisi in felis congue, at pulvinar nibh dapibus.\r\n\r\n[/bt_text][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/3\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"special-offers\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"2/3\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"0.7\" inner_background_color=\"#ffffff\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"68\" caption_text=\"Celebrate\" size=\"\" shape=\"square\" url=\"special-offers\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"Newlyweds weekend\" show_titles=\"no\"][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"Celebrate\" headline=\"Newlyweds weekend\" headline_size=\"medium\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"fa_f1ba\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f072\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f228\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\r\n\r\nSed ut metus eu neque commodo fringilla imperdiet sed nibh. Sed volutpat fermentum ligula, et maximus ex ultricies sit amet.\r\n\r\n[/bt_text][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/3\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"special-offers\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"2/3\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"0.7\" inner_background_color=\"#ffffff\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"725\" caption_text=\"Procrastinate\" size=\"\" shape=\"square\" url=\"special-offers\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"Lazy weekend\" show_titles=\"no\"][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"Procrastinate\" headline=\"Lazy weekend\" headline_size=\"medium\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"fa_f1ba\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f072\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f1eb\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f000\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f185\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\r\n\r\nPhasellus non bibendum augue. Duis nibh felis, volutpat vitae pulvinar at, tincidunt eget mi. Donec venenatis condimentum fermentum.\r\n\r\n[/bt_text][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/3\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"special-offers\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"2/3\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#e5e5e5\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"322\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"width: 60px; margin-top: -28px;\"][/bt_image][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"7/12\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Activities\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Phasellus blandit a massa vitae congue. Nam ex massa, mattis ut sapien sit amet, consequat sodales risus. Sed interdum, ligula et lobortis faucibus, sem sem placerat augue, eget scelerisque turpis lorem et tellus.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][/bt_column][bt_column width=\"5/12\"][/bt_column][/bt_row][/bt_section][bt_section layout=\"wide\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"dark\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#e5e5e5\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"73\" caption_title=\"Beach voleyball\" caption_text=\"Enjoy the game\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"ENJOY THE GAME\" headline=\"Beach Voleyball\" headline_size=\"medium\" dash=\"top\" subheadline=\"Beach volleyball is ouy visitors favourite sport, highly enjoyable for everyone young or old. Just gather your team on the beach and find the opponents in a matter of minutes. And show what you can do, be a winner!\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_e9ac\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e040\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e041\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"74\" el_class=\"\" el_style=\"\"][bt_image image=\"74\" caption_title=\"Horseback riding\" caption_text=\"Enjoy the beach\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Enjoy the beach\" headline=\"Horseback riding\" headline_size=\"medium\" dash=\"top\" subheadline=\"How about a lazy afternoon with your friends on a hors, while the sun goes down? If you want to chill out, our horse riding team will teach you in a matter of minutes and help you wind down after a good day on the sun.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_ea13\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1e\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e05b\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"75\" el_class=\"\" el_style=\"\"][bt_image image=\"75\" caption_title=\"Waterskiing\" caption_text=\"Enjoy the sea\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Enjoy the sea\" headline=\"Waterskiing\" headline_size=\"medium\" dash=\"top\" subheadline=\"If you are a big fan of water sports, then why not try the waterskiing or waterboarding? At hotel California you will find there\'s an amateur champoionship every year. Rated as the most fun activity by our visitors.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_e05b\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9a3\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9e5\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"76\" el_class=\"\" el_style=\"\"][bt_image image=\"76\" caption_title=\"Paragliding\" caption_text=\"Enjoy the sky\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Enjoy the sky\" headline=\"Parasailing\" headline_size=\"medium\" dash=\"top\" subheadline=\"Enjoy the thrill on the sky with our parasailing team and feel the California sun on your face. The team will help you get your adrenaline high and will be capuring your moments on a high-definition camera.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_ea2f\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"s7_e67b\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9f3\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_slider height=\"auto\" auto_play=\"\" hide_arrows=\"\" hide_paging=\"btSliderHidePaging\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/6\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"78\" caption_text=\"\" size=\"\" shape=\"circle\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][bt_header superheadline=\"June 2016\" headline=\"Alan Jones\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][/bt_column_inner][bt_column_inner width=\"5/6\"][bt_text]\r\n<blockquote>If you chose to stay with us you will enjoy modern home comforts in a traditional setting. Whether you are looking for a short weekend break or a longer holiday, we offer a range of packages that we think cater for all.</blockquote>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/6\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"447\" caption_text=\"\" size=\"\" shape=\"circle\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][/bt_image][bt_header superheadline=\"July 2016\" headline=\"Adrianne White\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][bt_column_inner width=\"5/6\"][bt_text]\r\n<blockquote>If you chose to stay with us you will enjoy modern home comforts in a traditional setting. Whether you are looking for a short weekend break or a longer holiday, we offer a range of packages that we think cater for all.</blockquote>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/1\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_text]\r\n<blockquote>Our mission: to connect our members and our diverse community to the boundless recreational opportunities and proper stewardship of the Monterey Bay and the Pacific Ocean.</blockquote>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][/bt_slider][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/3\" align=\"left\" vertical_align=\"btMiddleVertical\" border=\"no_border\" cell_padding=\"btDoublePadding\" animation=\"animate animate-fadein\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"#e5e5e5\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"IN A NUTSHELL\" headline=\"Hotel California\" headline_size=\"large\" dash=\"bottom\" subheadline=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer mollis viverra diam ac ornare. Donec rhoncus nisi in felis congue, at pulvinar nibh dapibus.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_button text=\"READ MORE\" icon=\"no_icon\" url=\"\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"ExtraSmall\" width=\"Normal\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"2/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_slider height=\"auto\" auto_play=\"\" hide_arrows=\"\" hide_paging=\"btSliderHidePaging\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"81\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"82\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"83\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"84\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"85\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][/bt_slider][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\"][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"2/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_gmaps latitude=\"36.602383\" longitude=\"-121.879245 \" zoom=\"11\" icon=\"342\" height=\"400px\" primary_color=\"\" secondary_color=\"\" water_color=\"\" custom_style=\"WwogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJhZG1pbmlzdHJhdGl2ZSIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImxhYmVscy50ZXh0LmZpbGwiLAogICAgICAgICJzdHlsZXJzIjogWwogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAiY29sb3IiOiAiIzQ0NDQ0NCIKICAgICAgICAgICAgfQogICAgICAgIF0KICAgIH0sCiAgICB7CiAgICAgICAgImZlYXR1cmVUeXBlIjogImxhbmRzY2FwZSIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJjb2xvciI6ICIjZjJmMmYyIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAicG9pIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiYWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInZpc2liaWxpdHkiOiAib2ZmIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAicm9hZCIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJzYXR1cmF0aW9uIjogLTEwMAogICAgICAgICAgICB9LAogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAibGlnaHRuZXNzIjogNDUKICAgICAgICAgICAgfQogICAgICAgIF0KICAgIH0sCiAgICB7CiAgICAgICAgImZlYXR1cmVUeXBlIjogInJvYWQuaGlnaHdheSIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogInNpbXBsaWZpZWQiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJyb2FkLmhpZ2h3YXkiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJnZW9tZXRyeSIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogInNpbXBsaWZpZWQiCiAgICAgICAgICAgIH0sCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJjb2xvciI6ICIjZDc3Mjg3IgogICAgICAgICAgICB9LAogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAibGlnaHRuZXNzIjogIjAiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJyb2FkLmhpZ2h3YXkiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJsYWJlbHMudGV4dCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogIm9uIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAicm9hZC5oaWdod2F5IiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAibGFiZWxzLmljb24iLAogICAgICAgICJzdHlsZXJzIjogWwogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAidmlzaWJpbGl0eSI6ICJvbiIKICAgICAgICAgICAgfQogICAgICAgIF0KICAgIH0sCiAgICB7CiAgICAgICAgImZlYXR1cmVUeXBlIjogInJvYWQuYXJ0ZXJpYWwiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJhbGwiLAogICAgICAgICJzdHlsZXJzIjogWwogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAidmlzaWJpbGl0eSI6ICJvbiIKICAgICAgICAgICAgfQogICAgICAgIF0KICAgIH0sCiAgICB7CiAgICAgICAgImZlYXR1cmVUeXBlIjogInJvYWQuYXJ0ZXJpYWwiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJnZW9tZXRyeS5maWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgImNvbG9yIjogIiNkNzcyODciCiAgICAgICAgICAgIH0sCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJsaWdodG5lc3MiOiAiNzUiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJyb2FkLmFydGVyaWFsIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAibGFiZWxzLmljb24iLAogICAgICAgICJzdHlsZXJzIjogWwogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAidmlzaWJpbGl0eSI6ICJvZmYiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJyb2FkLmxvY2FsIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiZ2VvbWV0cnkuZmlsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJsaWdodG5lc3MiOiAiNzUiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJ0cmFuc2l0IiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiYWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInZpc2liaWxpdHkiOiAib2ZmIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAidHJhbnNpdC5saW5lIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiYWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInZpc2liaWxpdHkiOiAib24iCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJ0cmFuc2l0LnN0YXRpb24uYnVzIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiYWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInZpc2liaWxpdHkiOiAib24iCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJ0cmFuc2l0LnN0YXRpb24ucmFpbCIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogIm9uIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAidHJhbnNpdC5zdGF0aW9uLnJhaWwiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJsYWJlbHMuaWNvbiIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ3ZWlnaHQiOiAiMC4wMSIKICAgICAgICAgICAgfSwKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgImh1ZSI6ICIjZmYwMDM1IgogICAgICAgICAgICB9LAogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAibGlnaHRuZXNzIjogIjAiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJ3YXRlciIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogIm9uIgogICAgICAgICAgICB9LAogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAiY29sb3IiOiAiIzgwZTRkOCIKICAgICAgICAgICAgfSwKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgImxpZ2h0bmVzcyI6ICIyNSIKICAgICAgICAgICAgfSwKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInNhdHVyYXRpb24iOiAiLTIzIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfQpd\" el_class=\"\" el_style=\"\" api_key=\"AIzaSyBda9LxQ-Wztqsk6aFI7SkcdiypnKTPfiI\"][/bt_gmaps][/bt_column][bt_column width=\"1/3\" align=\"left\" vertical_align=\"btMiddleVertical\" border=\"no_border\" cell_padding=\"btDoublePadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"#e5e5e5\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_service icon=\"s7_e638\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoMediumSize\" url=\"\" headline=\"Address\" dash=\"\" text=\"3216 W Highland Boulevard\r\nSan Diego, California\" el_class=\"\" el_style=\"\" superheadline=\"\"][/bt_service][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSemiSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_service icon=\"s7_e670\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoMediumSize\" url=\"\" headline=\"Phone\" dash=\"\" text=\"+555-40-220-6672\" el_class=\"\" el_style=\"\" superheadline=\"\"][/bt_service][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSemiSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_service icon=\"s7_e63a\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoMediumSize\" url=\"\" headline=\"Email\" dash=\"\" text=\"office@california.hotel\" el_class=\"\" el_style=\"\" superheadline=\"\"][/bt_service][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"yes\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"7/12\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"News <i>&</i> Blog\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Morbi pharetra faucibus purus, nec pretium enim luctus quis. Pellentesque aliquet venenatis ante, quis pretium neque tristique eget. Integer in luctus urna. Aenean rutrum sodales pharetra.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"5/12\"][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_latest_posts number=\"3\" category=\"\" format=\"horizontal\" post_type=\"blog\" show_excerpt=\"yes\" show_date=\"yes\" show_author=\"yes\" el_class=\"\" el_style=\"\"][/bt_latest_posts][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"321\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"0.3\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Follow us\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Find out what’s hot and new, and get discounts for being a loyal customer and a Hotel California fan.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_icons][bt_icon icon=\"fa_f09a\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f099\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f0d5\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_column][/bt_row][/bt_section]','Street view','\n ','inherit','closed','closed','','837-revision-v1','','','2021-04-07 04:47:29','2021-04-07 04:47:29','',837,'http://mpycdev.theomggroup.com/?p=1044',0,'revision','',0);
INSERT INTO `smrc_posts` VALUES (1045,1,'2021-04-07 04:48:27','2021-04-07 04:48:27','[bt_section layout=\"wide\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\"][bt_slider height=\"large\" auto_play=\"5000\" hide_arrows=\"\" hide_paging=\"\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item image=\"1027\" el_class=\"btLightSkin\" el_style=\"\"][bt_row_inner][/bt_row_inner][/bt_slider_item][bt_slider_item image=\"1025\" el_class=\"\" el_style=\"\"][bt_row_inner][bt_column_inner width=\"2/3\" align=\"left\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"animate animate-fadein animate-moveleft\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_hr top_spaced=\"topExtraSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"The art of meeting your\r\nhighest <i>expectations</i>\" headline_size=\"huge\" dash=\"bottom\" subheadline=\"Enjoying the sun and sea has never been so easy. At the beach of hotel California, you\'ll find our most complete service, great seaside and easy going staff.\r\nHotel California. Everything. Right where you need it.\" el_class=\"\" el_style=\"max-width: 660px;\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_button text=\"Check our OFFERS & DEALS\" icon=\"fa_f061\" url=\"#special-offers\" target=\"no_target\" style=\"Outline\" icon_position=\"Left\" color=\"Accent\" size=\"Small\" width=\"Normal\" el_class=\"\" el_style=\"\"][/bt_button][bt_button text=\"BOOK NOW\" icon=\"no_icon\" url=\"rooms\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Normal\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topSpaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"1/3\"][/bt_column_inner][/bt_row_inner][/bt_slider_item][bt_slider_item image=\"1035\" el_class=\"btLightSkin\" el_style=\"\"][bt_row_inner][/bt_row_inner][/bt_slider_item][/bt_slider][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"dark\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#000080\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\"][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\r\n<h4 style=\"text-align: center;\"><em>founded 1953 in historic Monterey, California</em></h4>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSemiSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"2/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Rooms & Suites\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"If you chose to stay with us you will enjoy modern home comforts in a traditional setting. Whether you are looking for a short weekend break or a longer holiday, we offer a range of packages that will cater for all.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/3\"][/bt_column][/bt_row][bt_row][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"44\" caption_text=\"View\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption=\"Double room\" show_titles=\"no\" caption_title=\"Room details\"][bt_header superheadline=\"Room features\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"cs_ea18\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9c2\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea2c\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1c\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"DELUXE\" headline=\"Double Room\" headline_size=\"medium\" dash=\"top\" subheadline=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer mollis viverra diam ac ornare. Donec rhoncus nisi in felis congue, at pulvinar nibh dapibus.\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/2\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"room-details\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"1/2\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"43\" caption_text=\"\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"Room features\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"cs_ea18\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9c5\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1a\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1c\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"EXECUTIVE\" headline=\"Junior Suite\" headline_size=\"medium\" dash=\"top\" subheadline=\"Sed sodales tortor non metus iaculis, non commodo ipsum mattis. Ut at dolor elit. Proin dignissim, lacus eget ullamcorper consectetur, mauris mi mattis elit sagittis.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/2\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"room-details\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"1/2\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"42\" caption_text=\"\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"Room features\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"cs_ea30\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea18\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea2d\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1c\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"DELUXE\" headline=\"Double Room\" headline_size=\"medium\" dash=\"top\" subheadline=\"Mauris suscipit lectus pellentesque ante efficitur, at dignissim tellus maximus. Sed leo magna, faucibus non ante non, pulvinar scelerisque magna sit elis.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/2\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"room-details\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"1/2\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"41\" caption_text=\"\" size=\"medium\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"Room features\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"cs_ea18\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1b\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea21\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1c\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"DELUXE\" headline=\"Family Room\" headline_size=\"medium\" dash=\"top\" subheadline=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer mollis viverra diam ac ornare. Donec rhoncus nisi in felis congue, at pulvinar nibh dapibus.\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/2\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"room-details\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"1/2\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"66\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"0.7\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"special-offers\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"323\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"width: 60px; margin-top: -28px;\"][/bt_image][bt_hr top_spaced=\"topSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"1/2\"][/bt_column][bt_column width=\"1/2\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"GET THE BEST RATE\" headline=\"Offers <i>&</i> Deals\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"If you chose to stay with us you will enjoy modern home comforts in a traditional setting. Whether you are looking for a short weekend break or a longer holiday, we offer a range of packages that we think cater for all.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"1/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"0.7\" inner_background_color=\"#ffffff\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"67\" caption_text=\"Get together\" size=\"\" shape=\"square\" url=\"special-offers\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"Family vacation\" show_titles=\"no\"][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"Get together\" headline=\"Family vacation\" headline_size=\"medium\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"fa_f207\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f13d\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f1eb\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f206\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f1ae\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\r\n\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Integer mollis viverra diam ac ornare. Donec rhoncus nisi in felis congue, at pulvinar nibh dapibus.\r\n\r\n[/bt_text][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/3\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"special-offers\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"2/3\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"0.7\" inner_background_color=\"#ffffff\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"68\" caption_text=\"Celebrate\" size=\"\" shape=\"square\" url=\"special-offers\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"Newlyweds weekend\" show_titles=\"no\"][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"Celebrate\" headline=\"Newlyweds weekend\" headline_size=\"medium\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"fa_f1ba\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f072\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f228\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\r\n\r\nSed ut metus eu neque commodo fringilla imperdiet sed nibh. Sed volutpat fermentum ligula, et maximus ex ultricies sit amet.\r\n\r\n[/bt_text][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/3\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"special-offers\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"2/3\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"0.7\" inner_background_color=\"#ffffff\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"725\" caption_text=\"Procrastinate\" size=\"\" shape=\"square\" url=\"special-offers\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"Lazy weekend\" show_titles=\"no\"][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"Procrastinate\" headline=\"Lazy weekend\" headline_size=\"medium\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"fa_f1ba\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f072\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f1eb\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f000\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f185\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\r\n\r\nPhasellus non bibendum augue. Duis nibh felis, volutpat vitae pulvinar at, tincidunt eget mi. Donec venenatis condimentum fermentum.\r\n\r\n[/bt_text][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/3\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"special-offers\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"2/3\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#e5e5e5\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"322\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"width: 60px; margin-top: -28px;\"][/bt_image][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"7/12\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Activities\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Phasellus blandit a massa vitae congue. Nam ex massa, mattis ut sapien sit amet, consequat sodales risus. Sed interdum, ligula et lobortis faucibus, sem sem placerat augue, eget scelerisque turpis lorem et tellus.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][/bt_column][bt_column width=\"5/12\"][/bt_column][/bt_row][/bt_section][bt_section layout=\"wide\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"dark\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#e5e5e5\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"73\" caption_title=\"Beach voleyball\" caption_text=\"Enjoy the game\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"ENJOY THE GAME\" headline=\"Beach Voleyball\" headline_size=\"medium\" dash=\"top\" subheadline=\"Beach volleyball is ouy visitors favourite sport, highly enjoyable for everyone young or old. Just gather your team on the beach and find the opponents in a matter of minutes. And show what you can do, be a winner!\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_e9ac\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e040\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e041\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"74\" el_class=\"\" el_style=\"\"][bt_image image=\"74\" caption_title=\"Horseback riding\" caption_text=\"Enjoy the beach\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Enjoy the beach\" headline=\"Horseback riding\" headline_size=\"medium\" dash=\"top\" subheadline=\"How about a lazy afternoon with your friends on a hors, while the sun goes down? If you want to chill out, our horse riding team will teach you in a matter of minutes and help you wind down after a good day on the sun.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_ea13\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1e\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e05b\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"75\" el_class=\"\" el_style=\"\"][bt_image image=\"75\" caption_title=\"Waterskiing\" caption_text=\"Enjoy the sea\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Enjoy the sea\" headline=\"Waterskiing\" headline_size=\"medium\" dash=\"top\" subheadline=\"If you are a big fan of water sports, then why not try the waterskiing or waterboarding? At hotel California you will find there\'s an amateur champoionship every year. Rated as the most fun activity by our visitors.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_e05b\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9a3\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9e5\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"76\" el_class=\"\" el_style=\"\"][bt_image image=\"76\" caption_title=\"Paragliding\" caption_text=\"Enjoy the sky\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Enjoy the sky\" headline=\"Parasailing\" headline_size=\"medium\" dash=\"top\" subheadline=\"Enjoy the thrill on the sky with our parasailing team and feel the California sun on your face. The team will help you get your adrenaline high and will be capuring your moments on a high-definition camera.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_ea2f\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"s7_e67b\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9f3\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_slider height=\"auto\" auto_play=\"\" hide_arrows=\"\" hide_paging=\"btSliderHidePaging\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/6\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"78\" caption_text=\"\" size=\"\" shape=\"circle\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][bt_header superheadline=\"June 2016\" headline=\"Alan Jones\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][/bt_column_inner][bt_column_inner width=\"5/6\"][bt_text]\r\n<blockquote>If you chose to stay with us you will enjoy modern home comforts in a traditional setting. Whether you are looking for a short weekend break or a longer holiday, we offer a range of packages that we think cater for all.</blockquote>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/6\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"447\" caption_text=\"\" size=\"\" shape=\"circle\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][/bt_image][bt_header superheadline=\"July 2016\" headline=\"Adrianne White\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][bt_column_inner width=\"5/6\"][bt_text]\r\n<blockquote>If you chose to stay with us you will enjoy modern home comforts in a traditional setting. Whether you are looking for a short weekend break or a longer holiday, we offer a range of packages that we think cater for all.</blockquote>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/1\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_text]\r\n<blockquote>Our mission: to connect our members and our diverse community to the boundless recreational opportunities and proper stewardship of the Monterey Bay and the Pacific Ocean.</blockquote>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][/bt_slider][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/3\" align=\"left\" vertical_align=\"btMiddleVertical\" border=\"no_border\" cell_padding=\"btDoublePadding\" animation=\"animate animate-fadein\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"#e5e5e5\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"IN A NUTSHELL\" headline=\"Hotel California\" headline_size=\"large\" dash=\"bottom\" subheadline=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer mollis viverra diam ac ornare. Donec rhoncus nisi in felis congue, at pulvinar nibh dapibus.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_button text=\"READ MORE\" icon=\"no_icon\" url=\"\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"ExtraSmall\" width=\"Normal\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"2/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_slider height=\"auto\" auto_play=\"\" hide_arrows=\"\" hide_paging=\"btSliderHidePaging\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"81\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"82\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"83\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"84\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"85\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][/bt_slider][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\"][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"2/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_gmaps latitude=\"36.602383\" longitude=\"-121.879245 \" zoom=\"11\" icon=\"342\" height=\"400px\" primary_color=\"\" secondary_color=\"\" water_color=\"\" custom_style=\"WwogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJhZG1pbmlzdHJhdGl2ZSIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImxhYmVscy50ZXh0LmZpbGwiLAogICAgICAgICJzdHlsZXJzIjogWwogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAiY29sb3IiOiAiIzQ0NDQ0NCIKICAgICAgICAgICAgfQogICAgICAgIF0KICAgIH0sCiAgICB7CiAgICAgICAgImZlYXR1cmVUeXBlIjogImxhbmRzY2FwZSIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJjb2xvciI6ICIjZjJmMmYyIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAicG9pIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiYWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInZpc2liaWxpdHkiOiAib2ZmIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAicm9hZCIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJzYXR1cmF0aW9uIjogLTEwMAogICAgICAgICAgICB9LAogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAibGlnaHRuZXNzIjogNDUKICAgICAgICAgICAgfQogICAgICAgIF0KICAgIH0sCiAgICB7CiAgICAgICAgImZlYXR1cmVUeXBlIjogInJvYWQuaGlnaHdheSIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogInNpbXBsaWZpZWQiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJyb2FkLmhpZ2h3YXkiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJnZW9tZXRyeSIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogInNpbXBsaWZpZWQiCiAgICAgICAgICAgIH0sCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJjb2xvciI6ICIjZDc3Mjg3IgogICAgICAgICAgICB9LAogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAibGlnaHRuZXNzIjogIjAiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJyb2FkLmhpZ2h3YXkiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJsYWJlbHMudGV4dCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogIm9uIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAicm9hZC5oaWdod2F5IiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAibGFiZWxzLmljb24iLAogICAgICAgICJzdHlsZXJzIjogWwogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAidmlzaWJpbGl0eSI6ICJvbiIKICAgICAgICAgICAgfQogICAgICAgIF0KICAgIH0sCiAgICB7CiAgICAgICAgImZlYXR1cmVUeXBlIjogInJvYWQuYXJ0ZXJpYWwiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJhbGwiLAogICAgICAgICJzdHlsZXJzIjogWwogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAidmlzaWJpbGl0eSI6ICJvbiIKICAgICAgICAgICAgfQogICAgICAgIF0KICAgIH0sCiAgICB7CiAgICAgICAgImZlYXR1cmVUeXBlIjogInJvYWQuYXJ0ZXJpYWwiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJnZW9tZXRyeS5maWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgImNvbG9yIjogIiNkNzcyODciCiAgICAgICAgICAgIH0sCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJsaWdodG5lc3MiOiAiNzUiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJyb2FkLmFydGVyaWFsIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAibGFiZWxzLmljb24iLAogICAgICAgICJzdHlsZXJzIjogWwogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAidmlzaWJpbGl0eSI6ICJvZmYiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJyb2FkLmxvY2FsIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiZ2VvbWV0cnkuZmlsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJsaWdodG5lc3MiOiAiNzUiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJ0cmFuc2l0IiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiYWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInZpc2liaWxpdHkiOiAib2ZmIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAidHJhbnNpdC5saW5lIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiYWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInZpc2liaWxpdHkiOiAib24iCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJ0cmFuc2l0LnN0YXRpb24uYnVzIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiYWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInZpc2liaWxpdHkiOiAib24iCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJ0cmFuc2l0LnN0YXRpb24ucmFpbCIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogIm9uIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAidHJhbnNpdC5zdGF0aW9uLnJhaWwiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJsYWJlbHMuaWNvbiIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ3ZWlnaHQiOiAiMC4wMSIKICAgICAgICAgICAgfSwKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgImh1ZSI6ICIjZmYwMDM1IgogICAgICAgICAgICB9LAogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAibGlnaHRuZXNzIjogIjAiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJ3YXRlciIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogIm9uIgogICAgICAgICAgICB9LAogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAiY29sb3IiOiAiIzgwZTRkOCIKICAgICAgICAgICAgfSwKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgImxpZ2h0bmVzcyI6ICIyNSIKICAgICAgICAgICAgfSwKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInNhdHVyYXRpb24iOiAiLTIzIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfQpd\" el_class=\"\" el_style=\"\" api_key=\"AIzaSyBda9LxQ-Wztqsk6aFI7SkcdiypnKTPfiI\"][/bt_gmaps][/bt_column][bt_column width=\"1/3\" align=\"left\" vertical_align=\"btMiddleVertical\" border=\"no_border\" cell_padding=\"btDoublePadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"#e5e5e5\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_service icon=\"s7_e638\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoMediumSize\" url=\"\" headline=\"Address\" dash=\"\" text=\"3216 W Highland Boulevard\r\nSan Diego, California\" el_class=\"\" el_style=\"\" superheadline=\"\"][/bt_service][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSemiSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_service icon=\"s7_e670\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoMediumSize\" url=\"\" headline=\"Phone\" dash=\"\" text=\"+555-40-220-6672\" el_class=\"\" el_style=\"\" superheadline=\"\"][/bt_service][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSemiSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_service icon=\"s7_e63a\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoMediumSize\" url=\"\" headline=\"Email\" dash=\"\" text=\"office@california.hotel\" el_class=\"\" el_style=\"\" superheadline=\"\"][/bt_service][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"yes\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"7/12\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"News <i>&</i> Blog\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Morbi pharetra faucibus purus, nec pretium enim luctus quis. Pellentesque aliquet venenatis ante, quis pretium neque tristique eget. Integer in luctus urna. Aenean rutrum sodales pharetra.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"5/12\"][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_latest_posts number=\"3\" category=\"\" format=\"horizontal\" post_type=\"blog\" show_excerpt=\"yes\" show_date=\"yes\" show_author=\"yes\" el_class=\"\" el_style=\"\"][/bt_latest_posts][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"321\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"0.3\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Follow us\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Find out what’s hot and new, and get discounts for being a loyal customer and a Hotel California fan.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_icons][bt_icon icon=\"fa_f09a\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f099\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f0d5\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_column][/bt_row][/bt_section]','Street view','\n ','inherit','closed','closed','','837-revision-v1','','','2021-04-07 04:48:27','2021-04-07 04:48:27','',837,'http://mpycdev.theomggroup.com/?p=1045',0,'revision','',0);
INSERT INTO `smrc_posts` VALUES (1046,1,'2021-04-07 04:49:57','2021-04-07 04:49:57','[bt_section layout=\"wide\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\"][bt_slider height=\"medium\" auto_play=\"5000\" hide_arrows=\"\" hide_paging=\"\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item image=\"1027\" el_class=\"btLightSkin\" el_style=\"\"][bt_row_inner][/bt_row_inner][/bt_slider_item][bt_slider_item image=\"1025\" el_class=\"\" el_style=\"\"][bt_row_inner][bt_column_inner width=\"2/3\" align=\"left\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"animate animate-fadein animate-moveleft\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_hr top_spaced=\"topExtraSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"The art of meeting your\r\nhighest <i>expectations</i>\" headline_size=\"huge\" dash=\"bottom\" subheadline=\"Enjoying the sun and sea has never been so easy. At the beach of hotel California, you\'ll find our most complete service, great seaside and easy going staff.\r\nHotel California. Everything. Right where you need it.\" el_class=\"\" el_style=\"max-width: 660px;\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_button text=\"Check our OFFERS & DEALS\" icon=\"fa_f061\" url=\"#special-offers\" target=\"no_target\" style=\"Outline\" icon_position=\"Left\" color=\"Accent\" size=\"Small\" width=\"Normal\" el_class=\"\" el_style=\"\"][/bt_button][bt_button text=\"BOOK NOW\" icon=\"no_icon\" url=\"rooms\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Normal\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topSpaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"1/3\"][/bt_column_inner][/bt_row_inner][/bt_slider_item][bt_slider_item image=\"1035\" el_class=\"btLightSkin\" el_style=\"\"][bt_row_inner][/bt_row_inner][/bt_slider_item][/bt_slider][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"dark\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#000080\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\"][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\r\n<h4 style=\"text-align: center;\"><em>founded 1953 in historic Monterey, California</em></h4>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSemiSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"2/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Rooms & Suites\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"If you chose to stay with us you will enjoy modern home comforts in a traditional setting. Whether you are looking for a short weekend break or a longer holiday, we offer a range of packages that will cater for all.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/3\"][/bt_column][/bt_row][bt_row][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"44\" caption_text=\"View\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption=\"Double room\" show_titles=\"no\" caption_title=\"Room details\"][bt_header superheadline=\"Room features\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"cs_ea18\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9c2\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea2c\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1c\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"DELUXE\" headline=\"Double Room\" headline_size=\"medium\" dash=\"top\" subheadline=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer mollis viverra diam ac ornare. Donec rhoncus nisi in felis congue, at pulvinar nibh dapibus.\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/2\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"room-details\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"1/2\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"43\" caption_text=\"\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"Room features\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"cs_ea18\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9c5\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1a\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1c\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"EXECUTIVE\" headline=\"Junior Suite\" headline_size=\"medium\" dash=\"top\" subheadline=\"Sed sodales tortor non metus iaculis, non commodo ipsum mattis. Ut at dolor elit. Proin dignissim, lacus eget ullamcorper consectetur, mauris mi mattis elit sagittis.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/2\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"room-details\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"1/2\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"42\" caption_text=\"\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"Room features\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"cs_ea30\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea18\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea2d\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1c\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"DELUXE\" headline=\"Double Room\" headline_size=\"medium\" dash=\"top\" subheadline=\"Mauris suscipit lectus pellentesque ante efficitur, at dignissim tellus maximus. Sed leo magna, faucibus non ante non, pulvinar scelerisque magna sit elis.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/2\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"room-details\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"1/2\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"41\" caption_text=\"\" size=\"medium\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"Room features\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"cs_ea18\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1b\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea21\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1c\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"DELUXE\" headline=\"Family Room\" headline_size=\"medium\" dash=\"top\" subheadline=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer mollis viverra diam ac ornare. Donec rhoncus nisi in felis congue, at pulvinar nibh dapibus.\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/2\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"room-details\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"1/2\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"66\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"0.7\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"special-offers\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"323\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"width: 60px; margin-top: -28px;\"][/bt_image][bt_hr top_spaced=\"topSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"1/2\"][/bt_column][bt_column width=\"1/2\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"GET THE BEST RATE\" headline=\"Offers <i>&</i> Deals\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"If you chose to stay with us you will enjoy modern home comforts in a traditional setting. Whether you are looking for a short weekend break or a longer holiday, we offer a range of packages that we think cater for all.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"1/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"0.7\" inner_background_color=\"#ffffff\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"67\" caption_text=\"Get together\" size=\"\" shape=\"square\" url=\"special-offers\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"Family vacation\" show_titles=\"no\"][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"Get together\" headline=\"Family vacation\" headline_size=\"medium\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"fa_f207\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f13d\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f1eb\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f206\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f1ae\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\r\n\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Integer mollis viverra diam ac ornare. Donec rhoncus nisi in felis congue, at pulvinar nibh dapibus.\r\n\r\n[/bt_text][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/3\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"special-offers\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"2/3\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"0.7\" inner_background_color=\"#ffffff\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"68\" caption_text=\"Celebrate\" size=\"\" shape=\"square\" url=\"special-offers\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"Newlyweds weekend\" show_titles=\"no\"][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"Celebrate\" headline=\"Newlyweds weekend\" headline_size=\"medium\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"fa_f1ba\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f072\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f228\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\r\n\r\nSed ut metus eu neque commodo fringilla imperdiet sed nibh. Sed volutpat fermentum ligula, et maximus ex ultricies sit amet.\r\n\r\n[/bt_text][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/3\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"special-offers\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"2/3\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"0.7\" inner_background_color=\"#ffffff\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"725\" caption_text=\"Procrastinate\" size=\"\" shape=\"square\" url=\"special-offers\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"Lazy weekend\" show_titles=\"no\"][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"Procrastinate\" headline=\"Lazy weekend\" headline_size=\"medium\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"fa_f1ba\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f072\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f1eb\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f000\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f185\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\r\n\r\nPhasellus non bibendum augue. Duis nibh felis, volutpat vitae pulvinar at, tincidunt eget mi. Donec venenatis condimentum fermentum.\r\n\r\n[/bt_text][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/3\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"special-offers\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"2/3\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#e5e5e5\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"322\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"width: 60px; margin-top: -28px;\"][/bt_image][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"7/12\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Activities\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Phasellus blandit a massa vitae congue. Nam ex massa, mattis ut sapien sit amet, consequat sodales risus. Sed interdum, ligula et lobortis faucibus, sem sem placerat augue, eget scelerisque turpis lorem et tellus.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][/bt_column][bt_column width=\"5/12\"][/bt_column][/bt_row][/bt_section][bt_section layout=\"wide\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"dark\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#e5e5e5\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"73\" caption_title=\"Beach voleyball\" caption_text=\"Enjoy the game\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"ENJOY THE GAME\" headline=\"Beach Voleyball\" headline_size=\"medium\" dash=\"top\" subheadline=\"Beach volleyball is ouy visitors favourite sport, highly enjoyable for everyone young or old. Just gather your team on the beach and find the opponents in a matter of minutes. And show what you can do, be a winner!\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_e9ac\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e040\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e041\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"74\" el_class=\"\" el_style=\"\"][bt_image image=\"74\" caption_title=\"Horseback riding\" caption_text=\"Enjoy the beach\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Enjoy the beach\" headline=\"Horseback riding\" headline_size=\"medium\" dash=\"top\" subheadline=\"How about a lazy afternoon with your friends on a hors, while the sun goes down? If you want to chill out, our horse riding team will teach you in a matter of minutes and help you wind down after a good day on the sun.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_ea13\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1e\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e05b\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"75\" el_class=\"\" el_style=\"\"][bt_image image=\"75\" caption_title=\"Waterskiing\" caption_text=\"Enjoy the sea\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Enjoy the sea\" headline=\"Waterskiing\" headline_size=\"medium\" dash=\"top\" subheadline=\"If you are a big fan of water sports, then why not try the waterskiing or waterboarding? At hotel California you will find there\'s an amateur champoionship every year. Rated as the most fun activity by our visitors.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_e05b\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9a3\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9e5\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"76\" el_class=\"\" el_style=\"\"][bt_image image=\"76\" caption_title=\"Paragliding\" caption_text=\"Enjoy the sky\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Enjoy the sky\" headline=\"Parasailing\" headline_size=\"medium\" dash=\"top\" subheadline=\"Enjoy the thrill on the sky with our parasailing team and feel the California sun on your face. The team will help you get your adrenaline high and will be capuring your moments on a high-definition camera.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_ea2f\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"s7_e67b\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9f3\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_slider height=\"auto\" auto_play=\"\" hide_arrows=\"\" hide_paging=\"btSliderHidePaging\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/6\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"78\" caption_text=\"\" size=\"\" shape=\"circle\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][bt_header superheadline=\"June 2016\" headline=\"Alan Jones\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][/bt_column_inner][bt_column_inner width=\"5/6\"][bt_text]\r\n<blockquote>If you chose to stay with us you will enjoy modern home comforts in a traditional setting. Whether you are looking for a short weekend break or a longer holiday, we offer a range of packages that we think cater for all.</blockquote>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/6\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"447\" caption_text=\"\" size=\"\" shape=\"circle\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][/bt_image][bt_header superheadline=\"July 2016\" headline=\"Adrianne White\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][bt_column_inner width=\"5/6\"][bt_text]\r\n<blockquote>If you chose to stay with us you will enjoy modern home comforts in a traditional setting. Whether you are looking for a short weekend break or a longer holiday, we offer a range of packages that we think cater for all.</blockquote>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/1\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_text]\r\n<blockquote>Our mission: to connect our members and our diverse community to the boundless recreational opportunities and proper stewardship of the Monterey Bay and the Pacific Ocean.</blockquote>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][/bt_slider][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/3\" align=\"left\" vertical_align=\"btMiddleVertical\" border=\"no_border\" cell_padding=\"btDoublePadding\" animation=\"animate animate-fadein\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"#e5e5e5\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"IN A NUTSHELL\" headline=\"Hotel California\" headline_size=\"large\" dash=\"bottom\" subheadline=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer mollis viverra diam ac ornare. Donec rhoncus nisi in felis congue, at pulvinar nibh dapibus.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_button text=\"READ MORE\" icon=\"no_icon\" url=\"\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"ExtraSmall\" width=\"Normal\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"2/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_slider height=\"auto\" auto_play=\"\" hide_arrows=\"\" hide_paging=\"btSliderHidePaging\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"81\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"82\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"83\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"84\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"85\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][/bt_slider][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\"][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"2/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_gmaps latitude=\"36.602383\" longitude=\"-121.879245 \" zoom=\"11\" icon=\"342\" height=\"400px\" primary_color=\"\" secondary_color=\"\" water_color=\"\" custom_style=\"WwogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJhZG1pbmlzdHJhdGl2ZSIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImxhYmVscy50ZXh0LmZpbGwiLAogICAgICAgICJzdHlsZXJzIjogWwogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAiY29sb3IiOiAiIzQ0NDQ0NCIKICAgICAgICAgICAgfQogICAgICAgIF0KICAgIH0sCiAgICB7CiAgICAgICAgImZlYXR1cmVUeXBlIjogImxhbmRzY2FwZSIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJjb2xvciI6ICIjZjJmMmYyIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAicG9pIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiYWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInZpc2liaWxpdHkiOiAib2ZmIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAicm9hZCIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJzYXR1cmF0aW9uIjogLTEwMAogICAgICAgICAgICB9LAogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAibGlnaHRuZXNzIjogNDUKICAgICAgICAgICAgfQogICAgICAgIF0KICAgIH0sCiAgICB7CiAgICAgICAgImZlYXR1cmVUeXBlIjogInJvYWQuaGlnaHdheSIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogInNpbXBsaWZpZWQiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJyb2FkLmhpZ2h3YXkiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJnZW9tZXRyeSIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogInNpbXBsaWZpZWQiCiAgICAgICAgICAgIH0sCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJjb2xvciI6ICIjZDc3Mjg3IgogICAgICAgICAgICB9LAogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAibGlnaHRuZXNzIjogIjAiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJyb2FkLmhpZ2h3YXkiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJsYWJlbHMudGV4dCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogIm9uIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAicm9hZC5oaWdod2F5IiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAibGFiZWxzLmljb24iLAogICAgICAgICJzdHlsZXJzIjogWwogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAidmlzaWJpbGl0eSI6ICJvbiIKICAgICAgICAgICAgfQogICAgICAgIF0KICAgIH0sCiAgICB7CiAgICAgICAgImZlYXR1cmVUeXBlIjogInJvYWQuYXJ0ZXJpYWwiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJhbGwiLAogICAgICAgICJzdHlsZXJzIjogWwogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAidmlzaWJpbGl0eSI6ICJvbiIKICAgICAgICAgICAgfQogICAgICAgIF0KICAgIH0sCiAgICB7CiAgICAgICAgImZlYXR1cmVUeXBlIjogInJvYWQuYXJ0ZXJpYWwiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJnZW9tZXRyeS5maWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgImNvbG9yIjogIiNkNzcyODciCiAgICAgICAgICAgIH0sCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJsaWdodG5lc3MiOiAiNzUiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJyb2FkLmFydGVyaWFsIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAibGFiZWxzLmljb24iLAogICAgICAgICJzdHlsZXJzIjogWwogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAidmlzaWJpbGl0eSI6ICJvZmYiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJyb2FkLmxvY2FsIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiZ2VvbWV0cnkuZmlsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJsaWdodG5lc3MiOiAiNzUiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJ0cmFuc2l0IiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiYWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInZpc2liaWxpdHkiOiAib2ZmIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAidHJhbnNpdC5saW5lIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiYWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInZpc2liaWxpdHkiOiAib24iCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJ0cmFuc2l0LnN0YXRpb24uYnVzIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiYWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInZpc2liaWxpdHkiOiAib24iCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJ0cmFuc2l0LnN0YXRpb24ucmFpbCIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogIm9uIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAidHJhbnNpdC5zdGF0aW9uLnJhaWwiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJsYWJlbHMuaWNvbiIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ3ZWlnaHQiOiAiMC4wMSIKICAgICAgICAgICAgfSwKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgImh1ZSI6ICIjZmYwMDM1IgogICAgICAgICAgICB9LAogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAibGlnaHRuZXNzIjogIjAiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJ3YXRlciIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogIm9uIgogICAgICAgICAgICB9LAogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAiY29sb3IiOiAiIzgwZTRkOCIKICAgICAgICAgICAgfSwKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgImxpZ2h0bmVzcyI6ICIyNSIKICAgICAgICAgICAgfSwKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInNhdHVyYXRpb24iOiAiLTIzIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfQpd\" el_class=\"\" el_style=\"\" api_key=\"AIzaSyBda9LxQ-Wztqsk6aFI7SkcdiypnKTPfiI\"][/bt_gmaps][/bt_column][bt_column width=\"1/3\" align=\"left\" vertical_align=\"btMiddleVertical\" border=\"no_border\" cell_padding=\"btDoublePadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"#e5e5e5\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_service icon=\"s7_e638\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoMediumSize\" url=\"\" headline=\"Address\" dash=\"\" text=\"3216 W Highland Boulevard\r\nSan Diego, California\" el_class=\"\" el_style=\"\" superheadline=\"\"][/bt_service][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSemiSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_service icon=\"s7_e670\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoMediumSize\" url=\"\" headline=\"Phone\" dash=\"\" text=\"+555-40-220-6672\" el_class=\"\" el_style=\"\" superheadline=\"\"][/bt_service][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSemiSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_service icon=\"s7_e63a\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoMediumSize\" url=\"\" headline=\"Email\" dash=\"\" text=\"office@california.hotel\" el_class=\"\" el_style=\"\" superheadline=\"\"][/bt_service][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"yes\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"7/12\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"News <i>&</i> Blog\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Morbi pharetra faucibus purus, nec pretium enim luctus quis. Pellentesque aliquet venenatis ante, quis pretium neque tristique eget. Integer in luctus urna. Aenean rutrum sodales pharetra.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"5/12\"][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_latest_posts number=\"3\" category=\"\" format=\"horizontal\" post_type=\"blog\" show_excerpt=\"yes\" show_date=\"yes\" show_author=\"yes\" el_class=\"\" el_style=\"\"][/bt_latest_posts][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"321\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"0.3\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Follow us\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Find out what’s hot and new, and get discounts for being a loyal customer and a Hotel California fan.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_icons][bt_icon icon=\"fa_f09a\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f099\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f0d5\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_column][/bt_row][/bt_section]','Street view','\n ','inherit','closed','closed','','837-revision-v1','','','2021-04-07 04:49:57','2021-04-07 04:49:57','',837,'http://mpycdev.theomggroup.com/?p=1046',0,'revision','',0);
INSERT INTO `smrc_posts` VALUES (1047,1,'2021-04-07 04:50:49','2021-04-07 04:50:49','[bt_section layout=\"wide\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\"][bt_slider height=\"medium\" auto_play=\"5000\" hide_arrows=\"\" hide_paging=\"\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item image=\"1027\" el_class=\"btLightSkin\" el_style=\"\"][bt_row_inner][/bt_row_inner][/bt_slider_item][bt_slider_item image=\"1025\" el_class=\"\" el_style=\"\"][bt_row_inner][/bt_row_inner][/bt_slider_item][bt_slider_item image=\"1035\" el_class=\"btLightSkin\" el_style=\"\"][bt_row_inner][/bt_row_inner][/bt_slider_item][/bt_slider][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"dark\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#000080\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\"][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\r\n<h4 style=\"text-align: center;\"><em>founded 1953 in historic Monterey, California</em></h4>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSemiSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"2/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Rooms & Suites\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"If you chose to stay with us you will enjoy modern home comforts in a traditional setting. Whether you are looking for a short weekend break or a longer holiday, we offer a range of packages that will cater for all.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/3\"][/bt_column][/bt_row][bt_row][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"44\" caption_text=\"View\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption=\"Double room\" show_titles=\"no\" caption_title=\"Room details\"][bt_header superheadline=\"Room features\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"cs_ea18\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9c2\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea2c\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1c\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"DELUXE\" headline=\"Double Room\" headline_size=\"medium\" dash=\"top\" subheadline=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer mollis viverra diam ac ornare. Donec rhoncus nisi in felis congue, at pulvinar nibh dapibus.\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/2\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"room-details\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"1/2\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"43\" caption_text=\"\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"Room features\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"cs_ea18\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9c5\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1a\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1c\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"EXECUTIVE\" headline=\"Junior Suite\" headline_size=\"medium\" dash=\"top\" subheadline=\"Sed sodales tortor non metus iaculis, non commodo ipsum mattis. Ut at dolor elit. Proin dignissim, lacus eget ullamcorper consectetur, mauris mi mattis elit sagittis.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/2\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"room-details\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"1/2\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"42\" caption_text=\"\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"Room features\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"cs_ea30\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea18\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea2d\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1c\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"DELUXE\" headline=\"Double Room\" headline_size=\"medium\" dash=\"top\" subheadline=\"Mauris suscipit lectus pellentesque ante efficitur, at dignissim tellus maximus. Sed leo magna, faucibus non ante non, pulvinar scelerisque magna sit elis.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/2\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"room-details\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"1/2\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"41\" caption_text=\"\" size=\"medium\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"Room features\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"cs_ea18\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1b\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea21\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1c\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"DELUXE\" headline=\"Family Room\" headline_size=\"medium\" dash=\"top\" subheadline=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer mollis viverra diam ac ornare. Donec rhoncus nisi in felis congue, at pulvinar nibh dapibus.\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/2\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"room-details\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"1/2\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"66\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"0.7\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"special-offers\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"323\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"width: 60px; margin-top: -28px;\"][/bt_image][bt_hr top_spaced=\"topSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"1/2\"][/bt_column][bt_column width=\"1/2\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"GET THE BEST RATE\" headline=\"Offers <i>&</i> Deals\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"If you chose to stay with us you will enjoy modern home comforts in a traditional setting. Whether you are looking for a short weekend break or a longer holiday, we offer a range of packages that we think cater for all.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"1/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"0.7\" inner_background_color=\"#ffffff\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"67\" caption_text=\"Get together\" size=\"\" shape=\"square\" url=\"special-offers\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"Family vacation\" show_titles=\"no\"][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"Get together\" headline=\"Family vacation\" headline_size=\"medium\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"fa_f207\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f13d\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f1eb\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f206\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f1ae\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\r\n\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Integer mollis viverra diam ac ornare. Donec rhoncus nisi in felis congue, at pulvinar nibh dapibus.\r\n\r\n[/bt_text][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/3\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"special-offers\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"2/3\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"0.7\" inner_background_color=\"#ffffff\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"68\" caption_text=\"Celebrate\" size=\"\" shape=\"square\" url=\"special-offers\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"Newlyweds weekend\" show_titles=\"no\"][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"Celebrate\" headline=\"Newlyweds weekend\" headline_size=\"medium\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"fa_f1ba\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f072\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f228\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\r\n\r\nSed ut metus eu neque commodo fringilla imperdiet sed nibh. Sed volutpat fermentum ligula, et maximus ex ultricies sit amet.\r\n\r\n[/bt_text][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/3\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"special-offers\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"2/3\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"0.7\" inner_background_color=\"#ffffff\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"725\" caption_text=\"Procrastinate\" size=\"\" shape=\"square\" url=\"special-offers\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"Lazy weekend\" show_titles=\"no\"][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"Procrastinate\" headline=\"Lazy weekend\" headline_size=\"medium\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"fa_f1ba\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f072\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f1eb\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f000\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f185\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\r\n\r\nPhasellus non bibendum augue. Duis nibh felis, volutpat vitae pulvinar at, tincidunt eget mi. Donec venenatis condimentum fermentum.\r\n\r\n[/bt_text][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/3\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"special-offers\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"2/3\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#e5e5e5\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"322\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"width: 60px; margin-top: -28px;\"][/bt_image][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"7/12\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Activities\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Phasellus blandit a massa vitae congue. Nam ex massa, mattis ut sapien sit amet, consequat sodales risus. Sed interdum, ligula et lobortis faucibus, sem sem placerat augue, eget scelerisque turpis lorem et tellus.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][/bt_column][bt_column width=\"5/12\"][/bt_column][/bt_row][/bt_section][bt_section layout=\"wide\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"dark\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#e5e5e5\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"73\" caption_title=\"Beach voleyball\" caption_text=\"Enjoy the game\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"ENJOY THE GAME\" headline=\"Beach Voleyball\" headline_size=\"medium\" dash=\"top\" subheadline=\"Beach volleyball is ouy visitors favourite sport, highly enjoyable for everyone young or old. Just gather your team on the beach and find the opponents in a matter of minutes. And show what you can do, be a winner!\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_e9ac\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e040\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e041\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"74\" el_class=\"\" el_style=\"\"][bt_image image=\"74\" caption_title=\"Horseback riding\" caption_text=\"Enjoy the beach\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Enjoy the beach\" headline=\"Horseback riding\" headline_size=\"medium\" dash=\"top\" subheadline=\"How about a lazy afternoon with your friends on a hors, while the sun goes down? If you want to chill out, our horse riding team will teach you in a matter of minutes and help you wind down after a good day on the sun.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_ea13\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1e\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e05b\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"75\" el_class=\"\" el_style=\"\"][bt_image image=\"75\" caption_title=\"Waterskiing\" caption_text=\"Enjoy the sea\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Enjoy the sea\" headline=\"Waterskiing\" headline_size=\"medium\" dash=\"top\" subheadline=\"If you are a big fan of water sports, then why not try the waterskiing or waterboarding? At hotel California you will find there\'s an amateur champoionship every year. Rated as the most fun activity by our visitors.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_e05b\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9a3\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9e5\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"76\" el_class=\"\" el_style=\"\"][bt_image image=\"76\" caption_title=\"Paragliding\" caption_text=\"Enjoy the sky\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Enjoy the sky\" headline=\"Parasailing\" headline_size=\"medium\" dash=\"top\" subheadline=\"Enjoy the thrill on the sky with our parasailing team and feel the California sun on your face. The team will help you get your adrenaline high and will be capuring your moments on a high-definition camera.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_ea2f\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"s7_e67b\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9f3\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_slider height=\"auto\" auto_play=\"\" hide_arrows=\"\" hide_paging=\"btSliderHidePaging\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/6\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"78\" caption_text=\"\" size=\"\" shape=\"circle\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][bt_header superheadline=\"June 2016\" headline=\"Alan Jones\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][/bt_column_inner][bt_column_inner width=\"5/6\"][bt_text]\r\n<blockquote>If you chose to stay with us you will enjoy modern home comforts in a traditional setting. Whether you are looking for a short weekend break or a longer holiday, we offer a range of packages that we think cater for all.</blockquote>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/6\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"447\" caption_text=\"\" size=\"\" shape=\"circle\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][/bt_image][bt_header superheadline=\"July 2016\" headline=\"Adrianne White\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][bt_column_inner width=\"5/6\"][bt_text]\r\n<blockquote>If you chose to stay with us you will enjoy modern home comforts in a traditional setting. Whether you are looking for a short weekend break or a longer holiday, we offer a range of packages that we think cater for all.</blockquote>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/1\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_text]\r\n<blockquote>Our mission: to connect our members and our diverse community to the boundless recreational opportunities and proper stewardship of the Monterey Bay and the Pacific Ocean.</blockquote>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][/bt_slider][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/3\" align=\"left\" vertical_align=\"btMiddleVertical\" border=\"no_border\" cell_padding=\"btDoublePadding\" animation=\"animate animate-fadein\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"#e5e5e5\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"IN A NUTSHELL\" headline=\"Hotel California\" headline_size=\"large\" dash=\"bottom\" subheadline=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer mollis viverra diam ac ornare. Donec rhoncus nisi in felis congue, at pulvinar nibh dapibus.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_button text=\"READ MORE\" icon=\"no_icon\" url=\"\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"ExtraSmall\" width=\"Normal\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"2/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_slider height=\"auto\" auto_play=\"\" hide_arrows=\"\" hide_paging=\"btSliderHidePaging\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"81\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"82\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"83\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"84\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"85\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][/bt_slider][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\"][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"2/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_gmaps latitude=\"36.602383\" longitude=\"-121.879245 \" zoom=\"11\" icon=\"342\" height=\"400px\" primary_color=\"\" secondary_color=\"\" water_color=\"\" custom_style=\"WwogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJhZG1pbmlzdHJhdGl2ZSIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImxhYmVscy50ZXh0LmZpbGwiLAogICAgICAgICJzdHlsZXJzIjogWwogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAiY29sb3IiOiAiIzQ0NDQ0NCIKICAgICAgICAgICAgfQogICAgICAgIF0KICAgIH0sCiAgICB7CiAgICAgICAgImZlYXR1cmVUeXBlIjogImxhbmRzY2FwZSIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJjb2xvciI6ICIjZjJmMmYyIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAicG9pIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiYWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInZpc2liaWxpdHkiOiAib2ZmIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAicm9hZCIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJzYXR1cmF0aW9uIjogLTEwMAogICAgICAgICAgICB9LAogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAibGlnaHRuZXNzIjogNDUKICAgICAgICAgICAgfQogICAgICAgIF0KICAgIH0sCiAgICB7CiAgICAgICAgImZlYXR1cmVUeXBlIjogInJvYWQuaGlnaHdheSIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogInNpbXBsaWZpZWQiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJyb2FkLmhpZ2h3YXkiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJnZW9tZXRyeSIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogInNpbXBsaWZpZWQiCiAgICAgICAgICAgIH0sCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJjb2xvciI6ICIjZDc3Mjg3IgogICAgICAgICAgICB9LAogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAibGlnaHRuZXNzIjogIjAiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJyb2FkLmhpZ2h3YXkiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJsYWJlbHMudGV4dCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogIm9uIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAicm9hZC5oaWdod2F5IiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAibGFiZWxzLmljb24iLAogICAgICAgICJzdHlsZXJzIjogWwogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAidmlzaWJpbGl0eSI6ICJvbiIKICAgICAgICAgICAgfQogICAgICAgIF0KICAgIH0sCiAgICB7CiAgICAgICAgImZlYXR1cmVUeXBlIjogInJvYWQuYXJ0ZXJpYWwiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJhbGwiLAogICAgICAgICJzdHlsZXJzIjogWwogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAidmlzaWJpbGl0eSI6ICJvbiIKICAgICAgICAgICAgfQogICAgICAgIF0KICAgIH0sCiAgICB7CiAgICAgICAgImZlYXR1cmVUeXBlIjogInJvYWQuYXJ0ZXJpYWwiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJnZW9tZXRyeS5maWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgImNvbG9yIjogIiNkNzcyODciCiAgICAgICAgICAgIH0sCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJsaWdodG5lc3MiOiAiNzUiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJyb2FkLmFydGVyaWFsIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAibGFiZWxzLmljb24iLAogICAgICAgICJzdHlsZXJzIjogWwogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAidmlzaWJpbGl0eSI6ICJvZmYiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJyb2FkLmxvY2FsIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiZ2VvbWV0cnkuZmlsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJsaWdodG5lc3MiOiAiNzUiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJ0cmFuc2l0IiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiYWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInZpc2liaWxpdHkiOiAib2ZmIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAidHJhbnNpdC5saW5lIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiYWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInZpc2liaWxpdHkiOiAib24iCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJ0cmFuc2l0LnN0YXRpb24uYnVzIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiYWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInZpc2liaWxpdHkiOiAib24iCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJ0cmFuc2l0LnN0YXRpb24ucmFpbCIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogIm9uIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAidHJhbnNpdC5zdGF0aW9uLnJhaWwiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJsYWJlbHMuaWNvbiIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ3ZWlnaHQiOiAiMC4wMSIKICAgICAgICAgICAgfSwKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgImh1ZSI6ICIjZmYwMDM1IgogICAgICAgICAgICB9LAogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAibGlnaHRuZXNzIjogIjAiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJ3YXRlciIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogIm9uIgogICAgICAgICAgICB9LAogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAiY29sb3IiOiAiIzgwZTRkOCIKICAgICAgICAgICAgfSwKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgImxpZ2h0bmVzcyI6ICIyNSIKICAgICAgICAgICAgfSwKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInNhdHVyYXRpb24iOiAiLTIzIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfQpd\" el_class=\"\" el_style=\"\" api_key=\"AIzaSyBda9LxQ-Wztqsk6aFI7SkcdiypnKTPfiI\"][/bt_gmaps][/bt_column][bt_column width=\"1/3\" align=\"left\" vertical_align=\"btMiddleVertical\" border=\"no_border\" cell_padding=\"btDoublePadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"#e5e5e5\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_service icon=\"s7_e638\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoMediumSize\" url=\"\" headline=\"Address\" dash=\"\" text=\"3216 W Highland Boulevard\r\nSan Diego, California\" el_class=\"\" el_style=\"\" superheadline=\"\"][/bt_service][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSemiSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_service icon=\"s7_e670\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoMediumSize\" url=\"\" headline=\"Phone\" dash=\"\" text=\"+555-40-220-6672\" el_class=\"\" el_style=\"\" superheadline=\"\"][/bt_service][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSemiSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_service icon=\"s7_e63a\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoMediumSize\" url=\"\" headline=\"Email\" dash=\"\" text=\"office@california.hotel\" el_class=\"\" el_style=\"\" superheadline=\"\"][/bt_service][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"yes\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"7/12\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"News <i>&</i> Blog\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Morbi pharetra faucibus purus, nec pretium enim luctus quis. Pellentesque aliquet venenatis ante, quis pretium neque tristique eget. Integer in luctus urna. Aenean rutrum sodales pharetra.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"5/12\"][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_latest_posts number=\"3\" category=\"\" format=\"horizontal\" post_type=\"blog\" show_excerpt=\"yes\" show_date=\"yes\" show_author=\"yes\" el_class=\"\" el_style=\"\"][/bt_latest_posts][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"321\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"0.3\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Follow us\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Find out what’s hot and new, and get discounts for being a loyal customer and a Hotel California fan.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_icons][bt_icon icon=\"fa_f09a\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f099\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f0d5\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_column][/bt_row][/bt_section]','Street view','\n ','inherit','closed','closed','','837-revision-v1','','','2021-04-07 04:50:49','2021-04-07 04:50:49','',837,'http://mpycdev.theomggroup.com/?p=1047',0,'revision','',0);
INSERT INTO `smrc_posts` VALUES (1048,1,'2021-04-07 04:54:02','2021-04-07 04:54:02','','mpyc-slider06','','inherit','open','closed','','mpyc-slider06','','','2021-04-07 04:54:02','2021-04-07 04:54:02','',837,'http://mpycdev.theomggroup.com/wp-content/uploads/2021/04/mpyc-slider06.jpg',0,'attachment','image/jpeg',0);
INSERT INTO `smrc_posts` VALUES (1049,1,'2021-04-07 04:56:29','2021-04-07 04:56:29','','mpyc-slider07','','inherit','open','closed','','mpyc-slider07','','','2021-04-07 04:56:29','2021-04-07 04:56:29','',837,'http://mpycdev.theomggroup.com/wp-content/uploads/2021/04/mpyc-slider07.jpg',0,'attachment','image/jpeg',0);
INSERT INTO `smrc_posts` VALUES (1050,1,'2021-04-07 04:56:33','2021-04-07 04:56:33','','mpyc-slider08','','inherit','open','closed','','mpyc-slider08','','','2021-04-07 04:56:33','2021-04-07 04:56:33','',837,'http://mpycdev.theomggroup.com/wp-content/uploads/2021/04/mpyc-slider08.jpg',0,'attachment','image/jpeg',0);
INSERT INTO `smrc_posts` VALUES (1051,1,'2021-04-07 04:58:15','2021-04-07 04:58:15','[bt_section layout=\"wide\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\"][bt_slider height=\"medium\" auto_play=\"5000\" hide_arrows=\"\" hide_paging=\"\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item image=\"1048\" el_class=\"\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1025\" el_class=\"\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1026\" el_class=\"btLightSkin\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1035\" el_class=\"btLightSkin\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1050\" el_class=\"btLightSkin\" el_style=\"\"][/bt_slider_item][/bt_slider][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"dark\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#000080\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\"][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\r\n<h4 style=\"text-align: center;\"><em>founded 1953 in historic Monterey, California</em></h4>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSemiSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"2/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Rooms & Suites\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"If you chose to stay with us you will enjoy modern home comforts in a traditional setting. Whether you are looking for a short weekend break or a longer holiday, we offer a range of packages that will cater for all.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/3\"][/bt_column][/bt_row][bt_row][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"44\" caption_text=\"View\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption=\"Double room\" show_titles=\"no\" caption_title=\"Room details\"][bt_header superheadline=\"Room features\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"cs_ea18\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9c2\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea2c\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1c\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"DELUXE\" headline=\"Double Room\" headline_size=\"medium\" dash=\"top\" subheadline=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer mollis viverra diam ac ornare. Donec rhoncus nisi in felis congue, at pulvinar nibh dapibus.\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/2\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"room-details\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"1/2\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"43\" caption_text=\"\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"Room features\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"cs_ea18\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9c5\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1a\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1c\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"EXECUTIVE\" headline=\"Junior Suite\" headline_size=\"medium\" dash=\"top\" subheadline=\"Sed sodales tortor non metus iaculis, non commodo ipsum mattis. Ut at dolor elit. Proin dignissim, lacus eget ullamcorper consectetur, mauris mi mattis elit sagittis.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/2\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"room-details\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"1/2\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"42\" caption_text=\"\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"Room features\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"cs_ea30\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea18\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea2d\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1c\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"DELUXE\" headline=\"Double Room\" headline_size=\"medium\" dash=\"top\" subheadline=\"Mauris suscipit lectus pellentesque ante efficitur, at dignissim tellus maximus. Sed leo magna, faucibus non ante non, pulvinar scelerisque magna sit elis.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/2\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"room-details\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"1/2\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"41\" caption_text=\"\" size=\"medium\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"Room features\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"cs_ea18\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1b\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea21\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1c\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"DELUXE\" headline=\"Family Room\" headline_size=\"medium\" dash=\"top\" subheadline=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer mollis viverra diam ac ornare. Donec rhoncus nisi in felis congue, at pulvinar nibh dapibus.\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/2\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"room-details\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"1/2\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"66\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"0.7\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"special-offers\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"323\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"width: 60px; margin-top: -28px;\"][/bt_image][bt_hr top_spaced=\"topSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"1/2\"][/bt_column][bt_column width=\"1/2\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"GET THE BEST RATE\" headline=\"Offers <i>&</i> Deals\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"If you chose to stay with us you will enjoy modern home comforts in a traditional setting. Whether you are looking for a short weekend break or a longer holiday, we offer a range of packages that we think cater for all.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"1/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"0.7\" inner_background_color=\"#ffffff\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"67\" caption_text=\"Get together\" size=\"\" shape=\"square\" url=\"special-offers\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"Family vacation\" show_titles=\"no\"][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"Get together\" headline=\"Family vacation\" headline_size=\"medium\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"fa_f207\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f13d\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f1eb\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f206\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f1ae\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\r\n\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Integer mollis viverra diam ac ornare. Donec rhoncus nisi in felis congue, at pulvinar nibh dapibus.\r\n\r\n[/bt_text][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/3\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"special-offers\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"2/3\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"0.7\" inner_background_color=\"#ffffff\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"68\" caption_text=\"Celebrate\" size=\"\" shape=\"square\" url=\"special-offers\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"Newlyweds weekend\" show_titles=\"no\"][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"Celebrate\" headline=\"Newlyweds weekend\" headline_size=\"medium\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"fa_f1ba\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f072\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f228\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\r\n\r\nSed ut metus eu neque commodo fringilla imperdiet sed nibh. Sed volutpat fermentum ligula, et maximus ex ultricies sit amet.\r\n\r\n[/bt_text][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/3\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"special-offers\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"2/3\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"0.7\" inner_background_color=\"#ffffff\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"725\" caption_text=\"Procrastinate\" size=\"\" shape=\"square\" url=\"special-offers\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"Lazy weekend\" show_titles=\"no\"][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"Procrastinate\" headline=\"Lazy weekend\" headline_size=\"medium\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"fa_f1ba\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f072\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f1eb\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f000\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f185\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\r\n\r\nPhasellus non bibendum augue. Duis nibh felis, volutpat vitae pulvinar at, tincidunt eget mi. Donec venenatis condimentum fermentum.\r\n\r\n[/bt_text][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/3\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"special-offers\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"2/3\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#e5e5e5\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"322\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"width: 60px; margin-top: -28px;\"][/bt_image][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"7/12\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Activities\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Phasellus blandit a massa vitae congue. Nam ex massa, mattis ut sapien sit amet, consequat sodales risus. Sed interdum, ligula et lobortis faucibus, sem sem placerat augue, eget scelerisque turpis lorem et tellus.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][/bt_column][bt_column width=\"5/12\"][/bt_column][/bt_row][/bt_section][bt_section layout=\"wide\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"dark\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#e5e5e5\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"73\" caption_title=\"Beach voleyball\" caption_text=\"Enjoy the game\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"ENJOY THE GAME\" headline=\"Beach Voleyball\" headline_size=\"medium\" dash=\"top\" subheadline=\"Beach volleyball is ouy visitors favourite sport, highly enjoyable for everyone young or old. Just gather your team on the beach and find the opponents in a matter of minutes. And show what you can do, be a winner!\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_e9ac\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e040\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e041\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"74\" el_class=\"\" el_style=\"\"][bt_image image=\"74\" caption_title=\"Horseback riding\" caption_text=\"Enjoy the beach\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Enjoy the beach\" headline=\"Horseback riding\" headline_size=\"medium\" dash=\"top\" subheadline=\"How about a lazy afternoon with your friends on a hors, while the sun goes down? If you want to chill out, our horse riding team will teach you in a matter of minutes and help you wind down after a good day on the sun.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_ea13\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1e\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e05b\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"75\" el_class=\"\" el_style=\"\"][bt_image image=\"75\" caption_title=\"Waterskiing\" caption_text=\"Enjoy the sea\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Enjoy the sea\" headline=\"Waterskiing\" headline_size=\"medium\" dash=\"top\" subheadline=\"If you are a big fan of water sports, then why not try the waterskiing or waterboarding? At hotel California you will find there\'s an amateur champoionship every year. Rated as the most fun activity by our visitors.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_e05b\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9a3\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9e5\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"76\" el_class=\"\" el_style=\"\"][bt_image image=\"76\" caption_title=\"Paragliding\" caption_text=\"Enjoy the sky\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Enjoy the sky\" headline=\"Parasailing\" headline_size=\"medium\" dash=\"top\" subheadline=\"Enjoy the thrill on the sky with our parasailing team and feel the California sun on your face. The team will help you get your adrenaline high and will be capuring your moments on a high-definition camera.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_ea2f\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"s7_e67b\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9f3\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_slider height=\"auto\" auto_play=\"\" hide_arrows=\"\" hide_paging=\"btSliderHidePaging\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/6\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"78\" caption_text=\"\" size=\"\" shape=\"circle\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][bt_header superheadline=\"June 2016\" headline=\"Alan Jones\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][/bt_column_inner][bt_column_inner width=\"5/6\"][bt_text]\r\n<blockquote>If you chose to stay with us you will enjoy modern home comforts in a traditional setting. Whether you are looking for a short weekend break or a longer holiday, we offer a range of packages that we think cater for all.</blockquote>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/6\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"447\" caption_text=\"\" size=\"\" shape=\"circle\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][/bt_image][bt_header superheadline=\"July 2016\" headline=\"Adrianne White\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][bt_column_inner width=\"5/6\"][bt_text]\r\n<blockquote>If you chose to stay with us you will enjoy modern home comforts in a traditional setting. Whether you are looking for a short weekend break or a longer holiday, we offer a range of packages that we think cater for all.</blockquote>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/1\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_text]\r\n<blockquote>Our mission: to connect our members and our diverse community to the boundless recreational opportunities and proper stewardship of the Monterey Bay and the Pacific Ocean.</blockquote>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][/bt_slider][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/3\" align=\"left\" vertical_align=\"btMiddleVertical\" border=\"no_border\" cell_padding=\"btDoublePadding\" animation=\"animate animate-fadein\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"#e5e5e5\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"IN A NUTSHELL\" headline=\"Hotel California\" headline_size=\"large\" dash=\"bottom\" subheadline=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer mollis viverra diam ac ornare. Donec rhoncus nisi in felis congue, at pulvinar nibh dapibus.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_button text=\"READ MORE\" icon=\"no_icon\" url=\"\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"ExtraSmall\" width=\"Normal\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"2/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_slider height=\"auto\" auto_play=\"\" hide_arrows=\"\" hide_paging=\"btSliderHidePaging\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"81\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"82\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"83\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"84\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"85\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][/bt_slider][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\"][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"2/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_gmaps latitude=\"36.602383\" longitude=\"-121.879245 \" zoom=\"11\" icon=\"342\" height=\"400px\" primary_color=\"\" secondary_color=\"\" water_color=\"\" custom_style=\"WwogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJhZG1pbmlzdHJhdGl2ZSIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImxhYmVscy50ZXh0LmZpbGwiLAogICAgICAgICJzdHlsZXJzIjogWwogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAiY29sb3IiOiAiIzQ0NDQ0NCIKICAgICAgICAgICAgfQogICAgICAgIF0KICAgIH0sCiAgICB7CiAgICAgICAgImZlYXR1cmVUeXBlIjogImxhbmRzY2FwZSIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJjb2xvciI6ICIjZjJmMmYyIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAicG9pIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiYWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInZpc2liaWxpdHkiOiAib2ZmIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAicm9hZCIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJzYXR1cmF0aW9uIjogLTEwMAogICAgICAgICAgICB9LAogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAibGlnaHRuZXNzIjogNDUKICAgICAgICAgICAgfQogICAgICAgIF0KICAgIH0sCiAgICB7CiAgICAgICAgImZlYXR1cmVUeXBlIjogInJvYWQuaGlnaHdheSIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogInNpbXBsaWZpZWQiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJyb2FkLmhpZ2h3YXkiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJnZW9tZXRyeSIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogInNpbXBsaWZpZWQiCiAgICAgICAgICAgIH0sCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJjb2xvciI6ICIjZDc3Mjg3IgogICAgICAgICAgICB9LAogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAibGlnaHRuZXNzIjogIjAiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJyb2FkLmhpZ2h3YXkiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJsYWJlbHMudGV4dCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogIm9uIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAicm9hZC5oaWdod2F5IiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAibGFiZWxzLmljb24iLAogICAgICAgICJzdHlsZXJzIjogWwogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAidmlzaWJpbGl0eSI6ICJvbiIKICAgICAgICAgICAgfQogICAgICAgIF0KICAgIH0sCiAgICB7CiAgICAgICAgImZlYXR1cmVUeXBlIjogInJvYWQuYXJ0ZXJpYWwiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJhbGwiLAogICAgICAgICJzdHlsZXJzIjogWwogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAidmlzaWJpbGl0eSI6ICJvbiIKICAgICAgICAgICAgfQogICAgICAgIF0KICAgIH0sCiAgICB7CiAgICAgICAgImZlYXR1cmVUeXBlIjogInJvYWQuYXJ0ZXJpYWwiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJnZW9tZXRyeS5maWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgImNvbG9yIjogIiNkNzcyODciCiAgICAgICAgICAgIH0sCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJsaWdodG5lc3MiOiAiNzUiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJyb2FkLmFydGVyaWFsIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAibGFiZWxzLmljb24iLAogICAgICAgICJzdHlsZXJzIjogWwogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAidmlzaWJpbGl0eSI6ICJvZmYiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJyb2FkLmxvY2FsIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiZ2VvbWV0cnkuZmlsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJsaWdodG5lc3MiOiAiNzUiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJ0cmFuc2l0IiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiYWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInZpc2liaWxpdHkiOiAib2ZmIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAidHJhbnNpdC5saW5lIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiYWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInZpc2liaWxpdHkiOiAib24iCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJ0cmFuc2l0LnN0YXRpb24uYnVzIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiYWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInZpc2liaWxpdHkiOiAib24iCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJ0cmFuc2l0LnN0YXRpb24ucmFpbCIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogIm9uIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAidHJhbnNpdC5zdGF0aW9uLnJhaWwiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJsYWJlbHMuaWNvbiIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ3ZWlnaHQiOiAiMC4wMSIKICAgICAgICAgICAgfSwKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgImh1ZSI6ICIjZmYwMDM1IgogICAgICAgICAgICB9LAogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAibGlnaHRuZXNzIjogIjAiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJ3YXRlciIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogIm9uIgogICAgICAgICAgICB9LAogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAiY29sb3IiOiAiIzgwZTRkOCIKICAgICAgICAgICAgfSwKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgImxpZ2h0bmVzcyI6ICIyNSIKICAgICAgICAgICAgfSwKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInNhdHVyYXRpb24iOiAiLTIzIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfQpd\" el_class=\"\" el_style=\"\" api_key=\"AIzaSyBda9LxQ-Wztqsk6aFI7SkcdiypnKTPfiI\"][/bt_gmaps][/bt_column][bt_column width=\"1/3\" align=\"left\" vertical_align=\"btMiddleVertical\" border=\"no_border\" cell_padding=\"btDoublePadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"#e5e5e5\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_service icon=\"s7_e638\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoMediumSize\" url=\"\" headline=\"Address\" dash=\"\" text=\"3216 W Highland Boulevard\r\nSan Diego, California\" el_class=\"\" el_style=\"\" superheadline=\"\"][/bt_service][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSemiSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_service icon=\"s7_e670\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoMediumSize\" url=\"\" headline=\"Phone\" dash=\"\" text=\"+555-40-220-6672\" el_class=\"\" el_style=\"\" superheadline=\"\"][/bt_service][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSemiSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_service icon=\"s7_e63a\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoMediumSize\" url=\"\" headline=\"Email\" dash=\"\" text=\"office@california.hotel\" el_class=\"\" el_style=\"\" superheadline=\"\"][/bt_service][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"yes\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"7/12\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"News <i>&</i> Blog\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Morbi pharetra faucibus purus, nec pretium enim luctus quis. Pellentesque aliquet venenatis ante, quis pretium neque tristique eget. Integer in luctus urna. Aenean rutrum sodales pharetra.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"5/12\"][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_latest_posts number=\"3\" category=\"\" format=\"horizontal\" post_type=\"blog\" show_excerpt=\"yes\" show_date=\"yes\" show_author=\"yes\" el_class=\"\" el_style=\"\"][/bt_latest_posts][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"321\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"0.3\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Follow us\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Find out what’s hot and new, and get discounts for being a loyal customer and a Hotel California fan.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_icons][bt_icon icon=\"fa_f09a\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f099\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f0d5\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_column][/bt_row][/bt_section]','Street view','\n ','inherit','closed','closed','','837-revision-v1','','','2021-04-07 04:58:15','2021-04-07 04:58:15','',837,'http://mpycdev.theomggroup.com/?p=1051',0,'revision','',0);
INSERT INTO `smrc_posts` VALUES (1052,1,'2021-04-07 04:59:50','2021-04-07 04:59:50','[bt_section layout=\"wide\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\"][bt_slider height=\"medium\" auto_play=\"5000\" hide_arrows=\"\" hide_paging=\"\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item image=\"1048\" el_class=\"\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1025\" el_class=\"\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1026\" el_class=\"btLightSkin\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1035\" el_class=\"btLightSkin\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1050\" el_class=\"btLightSkin\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1049\" el_class=\"btLightSkin\" el_style=\"\"][/bt_slider_item][/bt_slider][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"dark\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#000080\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\"][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\r\n<h4 style=\"text-align: center;\"><em>founded 1953 in historic Monterey, California</em></h4>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSemiSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"2/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Rooms & Suites\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"If you chose to stay with us you will enjoy modern home comforts in a traditional setting. Whether you are looking for a short weekend break or a longer holiday, we offer a range of packages that will cater for all.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/3\"][/bt_column][/bt_row][bt_row][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"44\" caption_text=\"View\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption=\"Double room\" show_titles=\"no\" caption_title=\"Room details\"][bt_header superheadline=\"Room features\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"cs_ea18\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9c2\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea2c\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1c\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"DELUXE\" headline=\"Double Room\" headline_size=\"medium\" dash=\"top\" subheadline=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer mollis viverra diam ac ornare. Donec rhoncus nisi in felis congue, at pulvinar nibh dapibus.\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/2\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"room-details\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"1/2\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"43\" caption_text=\"\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"Room features\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"cs_ea18\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9c5\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1a\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1c\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"EXECUTIVE\" headline=\"Junior Suite\" headline_size=\"medium\" dash=\"top\" subheadline=\"Sed sodales tortor non metus iaculis, non commodo ipsum mattis. Ut at dolor elit. Proin dignissim, lacus eget ullamcorper consectetur, mauris mi mattis elit sagittis.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/2\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"room-details\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"1/2\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"42\" caption_text=\"\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"Room features\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"cs_ea30\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea18\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea2d\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1c\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"DELUXE\" headline=\"Double Room\" headline_size=\"medium\" dash=\"top\" subheadline=\"Mauris suscipit lectus pellentesque ante efficitur, at dignissim tellus maximus. Sed leo magna, faucibus non ante non, pulvinar scelerisque magna sit elis.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/2\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"room-details\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"1/2\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"41\" caption_text=\"\" size=\"medium\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"Room features\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"cs_ea18\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1b\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea21\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1c\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"DELUXE\" headline=\"Family Room\" headline_size=\"medium\" dash=\"top\" subheadline=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer mollis viverra diam ac ornare. Donec rhoncus nisi in felis congue, at pulvinar nibh dapibus.\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/2\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"room-details\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"1/2\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"66\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"0.7\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"special-offers\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"323\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"width: 60px; margin-top: -28px;\"][/bt_image][bt_hr top_spaced=\"topSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"1/2\"][/bt_column][bt_column width=\"1/2\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"GET THE BEST RATE\" headline=\"Offers <i>&</i> Deals\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"If you chose to stay with us you will enjoy modern home comforts in a traditional setting. Whether you are looking for a short weekend break or a longer holiday, we offer a range of packages that we think cater for all.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"1/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"0.7\" inner_background_color=\"#ffffff\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"67\" caption_text=\"Get together\" size=\"\" shape=\"square\" url=\"special-offers\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"Family vacation\" show_titles=\"no\"][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"Get together\" headline=\"Family vacation\" headline_size=\"medium\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"fa_f207\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f13d\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f1eb\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f206\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f1ae\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\r\n\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Integer mollis viverra diam ac ornare. Donec rhoncus nisi in felis congue, at pulvinar nibh dapibus.\r\n\r\n[/bt_text][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/3\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"special-offers\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"2/3\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"0.7\" inner_background_color=\"#ffffff\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"68\" caption_text=\"Celebrate\" size=\"\" shape=\"square\" url=\"special-offers\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"Newlyweds weekend\" show_titles=\"no\"][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"Celebrate\" headline=\"Newlyweds weekend\" headline_size=\"medium\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"fa_f1ba\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f072\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f228\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\r\n\r\nSed ut metus eu neque commodo fringilla imperdiet sed nibh. Sed volutpat fermentum ligula, et maximus ex ultricies sit amet.\r\n\r\n[/bt_text][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/3\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"special-offers\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"2/3\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"0.7\" inner_background_color=\"#ffffff\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"725\" caption_text=\"Procrastinate\" size=\"\" shape=\"square\" url=\"special-offers\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"Lazy weekend\" show_titles=\"no\"][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"Procrastinate\" headline=\"Lazy weekend\" headline_size=\"medium\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"fa_f1ba\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f072\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f1eb\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f000\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f185\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\r\n\r\nPhasellus non bibendum augue. Duis nibh felis, volutpat vitae pulvinar at, tincidunt eget mi. Donec venenatis condimentum fermentum.\r\n\r\n[/bt_text][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/3\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"special-offers\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"2/3\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#e5e5e5\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"322\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"width: 60px; margin-top: -28px;\"][/bt_image][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"7/12\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Activities\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Phasellus blandit a massa vitae congue. Nam ex massa, mattis ut sapien sit amet, consequat sodales risus. Sed interdum, ligula et lobortis faucibus, sem sem placerat augue, eget scelerisque turpis lorem et tellus.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][/bt_column][bt_column width=\"5/12\"][/bt_column][/bt_row][/bt_section][bt_section layout=\"wide\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"dark\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#e5e5e5\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"73\" caption_title=\"Beach voleyball\" caption_text=\"Enjoy the game\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"ENJOY THE GAME\" headline=\"Beach Voleyball\" headline_size=\"medium\" dash=\"top\" subheadline=\"Beach volleyball is ouy visitors favourite sport, highly enjoyable for everyone young or old. Just gather your team on the beach and find the opponents in a matter of minutes. And show what you can do, be a winner!\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_e9ac\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e040\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e041\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"74\" el_class=\"\" el_style=\"\"][bt_image image=\"74\" caption_title=\"Horseback riding\" caption_text=\"Enjoy the beach\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Enjoy the beach\" headline=\"Horseback riding\" headline_size=\"medium\" dash=\"top\" subheadline=\"How about a lazy afternoon with your friends on a hors, while the sun goes down? If you want to chill out, our horse riding team will teach you in a matter of minutes and help you wind down after a good day on the sun.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_ea13\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1e\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e05b\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"75\" el_class=\"\" el_style=\"\"][bt_image image=\"75\" caption_title=\"Waterskiing\" caption_text=\"Enjoy the sea\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Enjoy the sea\" headline=\"Waterskiing\" headline_size=\"medium\" dash=\"top\" subheadline=\"If you are a big fan of water sports, then why not try the waterskiing or waterboarding? At hotel California you will find there\'s an amateur champoionship every year. Rated as the most fun activity by our visitors.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_e05b\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9a3\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9e5\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"76\" el_class=\"\" el_style=\"\"][bt_image image=\"76\" caption_title=\"Paragliding\" caption_text=\"Enjoy the sky\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Enjoy the sky\" headline=\"Parasailing\" headline_size=\"medium\" dash=\"top\" subheadline=\"Enjoy the thrill on the sky with our parasailing team and feel the California sun on your face. The team will help you get your adrenaline high and will be capuring your moments on a high-definition camera.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_ea2f\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"s7_e67b\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9f3\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_slider height=\"auto\" auto_play=\"\" hide_arrows=\"\" hide_paging=\"btSliderHidePaging\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/6\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"78\" caption_text=\"\" size=\"\" shape=\"circle\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][bt_header superheadline=\"June 2016\" headline=\"Alan Jones\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][/bt_column_inner][bt_column_inner width=\"5/6\"][bt_text]\r\n<blockquote>If you chose to stay with us you will enjoy modern home comforts in a traditional setting. Whether you are looking for a short weekend break or a longer holiday, we offer a range of packages that we think cater for all.</blockquote>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/6\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"447\" caption_text=\"\" size=\"\" shape=\"circle\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][/bt_image][bt_header superheadline=\"July 2016\" headline=\"Adrianne White\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][bt_column_inner width=\"5/6\"][bt_text]\r\n<blockquote>If you chose to stay with us you will enjoy modern home comforts in a traditional setting. Whether you are looking for a short weekend break or a longer holiday, we offer a range of packages that we think cater for all.</blockquote>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/1\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_text]\r\n<blockquote>Our mission: to connect our members and our diverse community to the boundless recreational opportunities and proper stewardship of the Monterey Bay and the Pacific Ocean.</blockquote>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][/bt_slider][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/3\" align=\"left\" vertical_align=\"btMiddleVertical\" border=\"no_border\" cell_padding=\"btDoublePadding\" animation=\"animate animate-fadein\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"#e5e5e5\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"IN A NUTSHELL\" headline=\"Hotel California\" headline_size=\"large\" dash=\"bottom\" subheadline=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer mollis viverra diam ac ornare. Donec rhoncus nisi in felis congue, at pulvinar nibh dapibus.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_button text=\"READ MORE\" icon=\"no_icon\" url=\"\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"ExtraSmall\" width=\"Normal\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"2/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_slider height=\"auto\" auto_play=\"\" hide_arrows=\"\" hide_paging=\"btSliderHidePaging\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"81\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"82\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"83\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"84\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"85\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][/bt_slider][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\"][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"2/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_gmaps latitude=\"36.602383\" longitude=\"-121.879245 \" zoom=\"11\" icon=\"342\" height=\"400px\" primary_color=\"\" secondary_color=\"\" water_color=\"\" custom_style=\"WwogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJhZG1pbmlzdHJhdGl2ZSIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImxhYmVscy50ZXh0LmZpbGwiLAogICAgICAgICJzdHlsZXJzIjogWwogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAiY29sb3IiOiAiIzQ0NDQ0NCIKICAgICAgICAgICAgfQogICAgICAgIF0KICAgIH0sCiAgICB7CiAgICAgICAgImZlYXR1cmVUeXBlIjogImxhbmRzY2FwZSIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJjb2xvciI6ICIjZjJmMmYyIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAicG9pIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiYWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInZpc2liaWxpdHkiOiAib2ZmIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAicm9hZCIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJzYXR1cmF0aW9uIjogLTEwMAogICAgICAgICAgICB9LAogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAibGlnaHRuZXNzIjogNDUKICAgICAgICAgICAgfQogICAgICAgIF0KICAgIH0sCiAgICB7CiAgICAgICAgImZlYXR1cmVUeXBlIjogInJvYWQuaGlnaHdheSIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogInNpbXBsaWZpZWQiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJyb2FkLmhpZ2h3YXkiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJnZW9tZXRyeSIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogInNpbXBsaWZpZWQiCiAgICAgICAgICAgIH0sCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJjb2xvciI6ICIjZDc3Mjg3IgogICAgICAgICAgICB9LAogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAibGlnaHRuZXNzIjogIjAiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJyb2FkLmhpZ2h3YXkiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJsYWJlbHMudGV4dCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogIm9uIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAicm9hZC5oaWdod2F5IiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAibGFiZWxzLmljb24iLAogICAgICAgICJzdHlsZXJzIjogWwogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAidmlzaWJpbGl0eSI6ICJvbiIKICAgICAgICAgICAgfQogICAgICAgIF0KICAgIH0sCiAgICB7CiAgICAgICAgImZlYXR1cmVUeXBlIjogInJvYWQuYXJ0ZXJpYWwiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJhbGwiLAogICAgICAgICJzdHlsZXJzIjogWwogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAidmlzaWJpbGl0eSI6ICJvbiIKICAgICAgICAgICAgfQogICAgICAgIF0KICAgIH0sCiAgICB7CiAgICAgICAgImZlYXR1cmVUeXBlIjogInJvYWQuYXJ0ZXJpYWwiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJnZW9tZXRyeS5maWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgImNvbG9yIjogIiNkNzcyODciCiAgICAgICAgICAgIH0sCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJsaWdodG5lc3MiOiAiNzUiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJyb2FkLmFydGVyaWFsIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAibGFiZWxzLmljb24iLAogICAgICAgICJzdHlsZXJzIjogWwogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAidmlzaWJpbGl0eSI6ICJvZmYiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJyb2FkLmxvY2FsIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiZ2VvbWV0cnkuZmlsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJsaWdodG5lc3MiOiAiNzUiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJ0cmFuc2l0IiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiYWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInZpc2liaWxpdHkiOiAib2ZmIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAidHJhbnNpdC5saW5lIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiYWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInZpc2liaWxpdHkiOiAib24iCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJ0cmFuc2l0LnN0YXRpb24uYnVzIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiYWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInZpc2liaWxpdHkiOiAib24iCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJ0cmFuc2l0LnN0YXRpb24ucmFpbCIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogIm9uIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAidHJhbnNpdC5zdGF0aW9uLnJhaWwiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJsYWJlbHMuaWNvbiIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ3ZWlnaHQiOiAiMC4wMSIKICAgICAgICAgICAgfSwKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgImh1ZSI6ICIjZmYwMDM1IgogICAgICAgICAgICB9LAogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAibGlnaHRuZXNzIjogIjAiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJ3YXRlciIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogIm9uIgogICAgICAgICAgICB9LAogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAiY29sb3IiOiAiIzgwZTRkOCIKICAgICAgICAgICAgfSwKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgImxpZ2h0bmVzcyI6ICIyNSIKICAgICAgICAgICAgfSwKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInNhdHVyYXRpb24iOiAiLTIzIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfQpd\" el_class=\"\" el_style=\"\" api_key=\"AIzaSyBda9LxQ-Wztqsk6aFI7SkcdiypnKTPfiI\"][/bt_gmaps][/bt_column][bt_column width=\"1/3\" align=\"left\" vertical_align=\"btMiddleVertical\" border=\"no_border\" cell_padding=\"btDoublePadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"#e5e5e5\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_service icon=\"s7_e638\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoMediumSize\" url=\"\" headline=\"Address\" dash=\"\" text=\"3216 W Highland Boulevard\r\nSan Diego, California\" el_class=\"\" el_style=\"\" superheadline=\"\"][/bt_service][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSemiSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_service icon=\"s7_e670\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoMediumSize\" url=\"\" headline=\"Phone\" dash=\"\" text=\"+555-40-220-6672\" el_class=\"\" el_style=\"\" superheadline=\"\"][/bt_service][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSemiSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_service icon=\"s7_e63a\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoMediumSize\" url=\"\" headline=\"Email\" dash=\"\" text=\"office@california.hotel\" el_class=\"\" el_style=\"\" superheadline=\"\"][/bt_service][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"yes\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"7/12\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"News <i>&</i> Blog\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Morbi pharetra faucibus purus, nec pretium enim luctus quis. Pellentesque aliquet venenatis ante, quis pretium neque tristique eget. Integer in luctus urna. Aenean rutrum sodales pharetra.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"5/12\"][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_latest_posts number=\"3\" category=\"\" format=\"horizontal\" post_type=\"blog\" show_excerpt=\"yes\" show_date=\"yes\" show_author=\"yes\" el_class=\"\" el_style=\"\"][/bt_latest_posts][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"321\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"0.3\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Follow us\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Find out what’s hot and new, and get discounts for being a loyal customer and a Hotel California fan.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_icons][bt_icon icon=\"fa_f09a\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f099\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f0d5\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_column][/bt_row][/bt_section]','Street view','\n ','inherit','closed','closed','','837-revision-v1','','','2021-04-07 04:59:50','2021-04-07 04:59:50','',837,'http://mpycdev.theomggroup.com/?p=1052',0,'revision','',0);
INSERT INTO `smrc_posts` VALUES (1053,1,'2021-04-07 05:18:34','2021-04-07 05:18:34','[bt_section layout=\"wide\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\"][bt_slider height=\"medium\" auto_play=\"5000\" hide_arrows=\"\" hide_paging=\"\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item image=\"1048\" el_class=\"\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1025\" el_class=\"\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1026\" el_class=\"btLightSkin\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1035\" el_class=\"btLightSkin\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1050\" el_class=\"btLightSkin\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1049\" el_class=\"btLightSkin\" el_style=\"\"][/bt_slider_item][/bt_slider][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"dark\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#000080\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\"][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\r\n\r\n<em>founded 1953 in historic Monterey, California</em>\r\n\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSemiSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"2/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Rooms & Suites\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"If you chose to stay with us you will enjoy modern home comforts in a traditional setting. Whether you are looking for a short weekend break or a longer holiday, we offer a range of packages that will cater for all.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/3\"][/bt_column][/bt_row][bt_row][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"44\" caption_text=\"View\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption=\"Double room\" show_titles=\"no\" caption_title=\"Room details\"][bt_header superheadline=\"Room features\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"cs_ea18\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9c2\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea2c\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1c\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"DELUXE\" headline=\"Double Room\" headline_size=\"medium\" dash=\"top\" subheadline=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer mollis viverra diam ac ornare. Donec rhoncus nisi in felis congue, at pulvinar nibh dapibus.\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"43\" caption_text=\"\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"Room features\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"cs_ea18\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9c5\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1a\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1c\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"EXECUTIVE\" headline=\"Junior Suite\" headline_size=\"medium\" dash=\"top\" subheadline=\"Sed sodales tortor non metus iaculis, non commodo ipsum mattis. Ut at dolor elit. Proin dignissim, lacus eget ullamcorper consectetur, mauris mi mattis elit sagittis.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"42\" caption_text=\"\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"Room features\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"cs_ea30\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea18\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea2d\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1c\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"DELUXE\" headline=\"Double Room\" headline_size=\"medium\" dash=\"top\" subheadline=\"Mauris suscipit lectus pellentesque ante efficitur, at dignissim tellus maximus. Sed leo magna, faucibus non ante non, pulvinar scelerisque magna sit elis.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"41\" caption_text=\"\" size=\"medium\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"Room features\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"cs_ea18\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1b\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea21\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1c\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"DELUXE\" headline=\"Family Room\" headline_size=\"medium\" dash=\"top\" subheadline=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer mollis viverra diam ac ornare. Donec rhoncus nisi in felis congue, at pulvinar nibh dapibus.\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"66\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"0.7\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"special-offers\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"323\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"width: 60px; margin-top: -28px;\"][/bt_image][bt_hr top_spaced=\"topSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"1/2\"][/bt_column][bt_column width=\"1/2\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"GET THE BEST RATE\" headline=\"Offers <i>&</i> Deals\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"If you chose to stay with us you will enjoy modern home comforts in a traditional setting. Whether you are looking for a short weekend break or a longer holiday, we offer a range of packages that we think cater for all.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"1/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"0.7\" inner_background_color=\"#ffffff\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"67\" caption_text=\"Get together\" size=\"\" shape=\"square\" url=\"special-offers\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"Family vacation\" show_titles=\"no\"][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"Get together\" headline=\"Family vacation\" headline_size=\"medium\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"fa_f207\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f13d\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f1eb\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f206\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f1ae\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\r\n\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Integer mollis viverra diam ac ornare. Donec rhoncus nisi in felis congue, at pulvinar nibh dapibus.\r\n\r\n[/bt_text][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/3\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"special-offers\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"2/3\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"0.7\" inner_background_color=\"#ffffff\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"68\" caption_text=\"Celebrate\" size=\"\" shape=\"square\" url=\"special-offers\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"Newlyweds weekend\" show_titles=\"no\"][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"Celebrate\" headline=\"Newlyweds weekend\" headline_size=\"medium\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"fa_f1ba\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f072\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f228\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\r\n\r\nSed ut metus eu neque commodo fringilla imperdiet sed nibh. Sed volutpat fermentum ligula, et maximus ex ultricies sit amet.\r\n\r\n[/bt_text][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/3\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"special-offers\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"2/3\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"0.7\" inner_background_color=\"#ffffff\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"725\" caption_text=\"Procrastinate\" size=\"\" shape=\"square\" url=\"special-offers\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"Lazy weekend\" show_titles=\"no\"][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"Procrastinate\" headline=\"Lazy weekend\" headline_size=\"medium\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"fa_f1ba\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f072\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f1eb\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f000\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f185\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\r\n\r\nPhasellus non bibendum augue. Duis nibh felis, volutpat vitae pulvinar at, tincidunt eget mi. Donec venenatis condimentum fermentum.\r\n\r\n[/bt_text][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/3\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"special-offers\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"2/3\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#e5e5e5\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"322\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"width: 60px; margin-top: -28px;\"][/bt_image][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"7/12\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Activities\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Phasellus blandit a massa vitae congue. Nam ex massa, mattis ut sapien sit amet, consequat sodales risus. Sed interdum, ligula et lobortis faucibus, sem sem placerat augue, eget scelerisque turpis lorem et tellus.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][/bt_column][bt_column width=\"5/12\"][/bt_column][/bt_row][/bt_section][bt_section layout=\"wide\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"dark\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#e5e5e5\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"73\" caption_title=\"Beach voleyball\" caption_text=\"Enjoy the game\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"ENJOY THE GAME\" headline=\"Beach Voleyball\" headline_size=\"medium\" dash=\"top\" subheadline=\"Beach volleyball is ouy visitors favourite sport, highly enjoyable for everyone young or old. Just gather your team on the beach and find the opponents in a matter of minutes. And show what you can do, be a winner!\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_e9ac\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e040\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e041\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"74\" el_class=\"\" el_style=\"\"][bt_image image=\"74\" caption_title=\"Horseback riding\" caption_text=\"Enjoy the beach\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Enjoy the beach\" headline=\"Horseback riding\" headline_size=\"medium\" dash=\"top\" subheadline=\"How about a lazy afternoon with your friends on a hors, while the sun goes down? If you want to chill out, our horse riding team will teach you in a matter of minutes and help you wind down after a good day on the sun.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_ea13\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1e\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e05b\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"75\" el_class=\"\" el_style=\"\"][bt_image image=\"75\" caption_title=\"Waterskiing\" caption_text=\"Enjoy the sea\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Enjoy the sea\" headline=\"Waterskiing\" headline_size=\"medium\" dash=\"top\" subheadline=\"If you are a big fan of water sports, then why not try the waterskiing or waterboarding? At hotel California you will find there\'s an amateur champoionship every year. Rated as the most fun activity by our visitors.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_e05b\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9a3\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9e5\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"76\" el_class=\"\" el_style=\"\"][bt_image image=\"76\" caption_title=\"Paragliding\" caption_text=\"Enjoy the sky\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Enjoy the sky\" headline=\"Parasailing\" headline_size=\"medium\" dash=\"top\" subheadline=\"Enjoy the thrill on the sky with our parasailing team and feel the California sun on your face. The team will help you get your adrenaline high and will be capuring your moments on a high-definition camera.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_ea2f\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"s7_e67b\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9f3\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_slider height=\"auto\" auto_play=\"\" hide_arrows=\"\" hide_paging=\"btSliderHidePaging\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/6\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"78\" caption_text=\"\" size=\"\" shape=\"circle\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][bt_header superheadline=\"June 2016\" headline=\"Alan Jones\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][/bt_column_inner][bt_column_inner width=\"5/6\"][bt_text]\r\n<blockquote>If you chose to stay with us you will enjoy modern home comforts in a traditional setting. Whether you are looking for a short weekend break or a longer holiday, we offer a range of packages that we think cater for all.</blockquote>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/6\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"447\" caption_text=\"\" size=\"\" shape=\"circle\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][/bt_image][bt_header superheadline=\"July 2016\" headline=\"Adrianne White\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][bt_column_inner width=\"5/6\"][bt_text]\r\n<blockquote>If you chose to stay with us you will enjoy modern home comforts in a traditional setting. Whether you are looking for a short weekend break or a longer holiday, we offer a range of packages that we think cater for all.</blockquote>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/1\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_text]\r\n<blockquote>Our mission: to connect our members and our diverse community to the boundless recreational opportunities and proper stewardship of the Monterey Bay and the Pacific Ocean.</blockquote>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][/bt_slider][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/3\" align=\"left\" vertical_align=\"btMiddleVertical\" border=\"no_border\" cell_padding=\"btDoublePadding\" animation=\"animate animate-fadein\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"#e5e5e5\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"IN A NUTSHELL\" headline=\"Hotel California\" headline_size=\"large\" dash=\"bottom\" subheadline=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer mollis viverra diam ac ornare. Donec rhoncus nisi in felis congue, at pulvinar nibh dapibus.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_button text=\"READ MORE\" icon=\"no_icon\" url=\"\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"ExtraSmall\" width=\"Normal\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"2/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_slider height=\"auto\" auto_play=\"\" hide_arrows=\"\" hide_paging=\"btSliderHidePaging\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"81\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"82\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"83\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"84\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"85\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][/bt_slider][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\"][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"2/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_gmaps latitude=\"36.602383\" longitude=\"-121.879245 \" zoom=\"11\" icon=\"342\" height=\"400px\" primary_color=\"\" secondary_color=\"\" water_color=\"\" custom_style=\"WwogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJhZG1pbmlzdHJhdGl2ZSIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImxhYmVscy50ZXh0LmZpbGwiLAogICAgICAgICJzdHlsZXJzIjogWwogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAiY29sb3IiOiAiIzQ0NDQ0NCIKICAgICAgICAgICAgfQogICAgICAgIF0KICAgIH0sCiAgICB7CiAgICAgICAgImZlYXR1cmVUeXBlIjogImxhbmRzY2FwZSIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJjb2xvciI6ICIjZjJmMmYyIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAicG9pIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiYWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInZpc2liaWxpdHkiOiAib2ZmIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAicm9hZCIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJzYXR1cmF0aW9uIjogLTEwMAogICAgICAgICAgICB9LAogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAibGlnaHRuZXNzIjogNDUKICAgICAgICAgICAgfQogICAgICAgIF0KICAgIH0sCiAgICB7CiAgICAgICAgImZlYXR1cmVUeXBlIjogInJvYWQuaGlnaHdheSIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogInNpbXBsaWZpZWQiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJyb2FkLmhpZ2h3YXkiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJnZW9tZXRyeSIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogInNpbXBsaWZpZWQiCiAgICAgICAgICAgIH0sCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJjb2xvciI6ICIjZDc3Mjg3IgogICAgICAgICAgICB9LAogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAibGlnaHRuZXNzIjogIjAiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJyb2FkLmhpZ2h3YXkiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJsYWJlbHMudGV4dCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogIm9uIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAicm9hZC5oaWdod2F5IiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAibGFiZWxzLmljb24iLAogICAgICAgICJzdHlsZXJzIjogWwogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAidmlzaWJpbGl0eSI6ICJvbiIKICAgICAgICAgICAgfQogICAgICAgIF0KICAgIH0sCiAgICB7CiAgICAgICAgImZlYXR1cmVUeXBlIjogInJvYWQuYXJ0ZXJpYWwiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJhbGwiLAogICAgICAgICJzdHlsZXJzIjogWwogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAidmlzaWJpbGl0eSI6ICJvbiIKICAgICAgICAgICAgfQogICAgICAgIF0KICAgIH0sCiAgICB7CiAgICAgICAgImZlYXR1cmVUeXBlIjogInJvYWQuYXJ0ZXJpYWwiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJnZW9tZXRyeS5maWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgImNvbG9yIjogIiNkNzcyODciCiAgICAgICAgICAgIH0sCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJsaWdodG5lc3MiOiAiNzUiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJyb2FkLmFydGVyaWFsIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAibGFiZWxzLmljb24iLAogICAgICAgICJzdHlsZXJzIjogWwogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAidmlzaWJpbGl0eSI6ICJvZmYiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJyb2FkLmxvY2FsIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiZ2VvbWV0cnkuZmlsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJsaWdodG5lc3MiOiAiNzUiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJ0cmFuc2l0IiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiYWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInZpc2liaWxpdHkiOiAib2ZmIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAidHJhbnNpdC5saW5lIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiYWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInZpc2liaWxpdHkiOiAib24iCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJ0cmFuc2l0LnN0YXRpb24uYnVzIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiYWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInZpc2liaWxpdHkiOiAib24iCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJ0cmFuc2l0LnN0YXRpb24ucmFpbCIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogIm9uIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAidHJhbnNpdC5zdGF0aW9uLnJhaWwiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJsYWJlbHMuaWNvbiIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ3ZWlnaHQiOiAiMC4wMSIKICAgICAgICAgICAgfSwKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgImh1ZSI6ICIjZmYwMDM1IgogICAgICAgICAgICB9LAogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAibGlnaHRuZXNzIjogIjAiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJ3YXRlciIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogIm9uIgogICAgICAgICAgICB9LAogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAiY29sb3IiOiAiIzgwZTRkOCIKICAgICAgICAgICAgfSwKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgImxpZ2h0bmVzcyI6ICIyNSIKICAgICAgICAgICAgfSwKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInNhdHVyYXRpb24iOiAiLTIzIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfQpd\" el_class=\"\" el_style=\"\" api_key=\"AIzaSyBda9LxQ-Wztqsk6aFI7SkcdiypnKTPfiI\"][/bt_gmaps][/bt_column][bt_column width=\"1/3\" align=\"left\" vertical_align=\"btMiddleVertical\" border=\"no_border\" cell_padding=\"btDoublePadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"#e5e5e5\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_service icon=\"s7_e638\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoMediumSize\" url=\"\" headline=\"Address\" dash=\"\" text=\"3216 W Highland Boulevard\r\nSan Diego, California\" el_class=\"\" el_style=\"\" superheadline=\"\"][/bt_service][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSemiSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_service icon=\"s7_e670\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoMediumSize\" url=\"\" headline=\"Phone\" dash=\"\" text=\"+555-40-220-6672\" el_class=\"\" el_style=\"\" superheadline=\"\"][/bt_service][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSemiSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_service icon=\"s7_e63a\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoMediumSize\" url=\"\" headline=\"Email\" dash=\"\" text=\"office@california.hotel\" el_class=\"\" el_style=\"\" superheadline=\"\"][/bt_service][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"yes\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"7/12\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"News <i>&</i> Blog\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Morbi pharetra faucibus purus, nec pretium enim luctus quis. Pellentesque aliquet venenatis ante, quis pretium neque tristique eget. Integer in luctus urna. Aenean rutrum sodales pharetra.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"5/12\"][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_latest_posts number=\"3\" category=\"\" format=\"horizontal\" post_type=\"blog\" show_excerpt=\"yes\" show_date=\"yes\" show_author=\"yes\" el_class=\"\" el_style=\"\"][/bt_latest_posts][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"321\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"0.3\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Follow us\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Find out what’s hot and new, and get discounts for being a loyal customer and a Hotel California fan.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_icons][bt_icon icon=\"fa_f09a\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f099\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f0d5\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_column][/bt_row][/bt_section]','Street view','\n ','inherit','closed','closed','','837-revision-v1','','','2021-04-07 05:18:34','2021-04-07 05:18:34','',837,'http://mpycdev.theomggroup.com/?p=1053',0,'revision','',0);
INSERT INTO `smrc_posts` VALUES (1054,1,'2021-04-07 05:22:07','2021-04-07 05:22:07','[bt_section layout=\"wide\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\"][bt_slider height=\"medium\" auto_play=\"5000\" hide_arrows=\"\" hide_paging=\"\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item image=\"1048\" el_class=\"\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1025\" el_class=\"\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1026\" el_class=\"btLightSkin\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1035\" el_class=\"btLightSkin\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1050\" el_class=\"btLightSkin\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1049\" el_class=\"btLightSkin\" el_style=\"\"][/bt_slider_item][/bt_slider][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"dark\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#000080\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\"][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\r\n\r\n<em>founded 1953 in historic Monterey, California</em>\r\n\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSemiSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"2/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Our Club\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"A non-profit organization, MPYC is a yachting and social club comprised of over 400 adult and junior members with an interest in coming together to share in boating, sailing, yacht racing and social activities. Membership is not limited to boat owners.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/3\"][/bt_column][/bt_row][bt_row][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"44\" caption_text=\"View\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption=\"Double room\" show_titles=\"no\" caption_title=\"Room details\"][bt_header superheadline=\"Room features\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"cs_ea18\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9c2\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea2c\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1c\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"DELUXE\" headline=\"Double Room\" headline_size=\"medium\" dash=\"top\" subheadline=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer mollis viverra diam ac ornare. Donec rhoncus nisi in felis congue, at pulvinar nibh dapibus.\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"43\" caption_text=\"\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"Room features\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"cs_ea18\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9c5\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1a\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1c\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"EXECUTIVE\" headline=\"Junior Suite\" headline_size=\"medium\" dash=\"top\" subheadline=\"Sed sodales tortor non metus iaculis, non commodo ipsum mattis. Ut at dolor elit. Proin dignissim, lacus eget ullamcorper consectetur, mauris mi mattis elit sagittis.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"42\" caption_text=\"\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"Room features\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"cs_ea30\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea18\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea2d\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1c\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"DELUXE\" headline=\"Double Room\" headline_size=\"medium\" dash=\"top\" subheadline=\"Mauris suscipit lectus pellentesque ante efficitur, at dignissim tellus maximus. Sed leo magna, faucibus non ante non, pulvinar scelerisque magna sit elis.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"41\" caption_text=\"\" size=\"medium\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"Room features\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"cs_ea18\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1b\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea21\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1c\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"DELUXE\" headline=\"Family Room\" headline_size=\"medium\" dash=\"top\" subheadline=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer mollis viverra diam ac ornare. Donec rhoncus nisi in felis congue, at pulvinar nibh dapibus.\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"66\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"0.7\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"special-offers\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"323\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"width: 60px; margin-top: -28px;\"][/bt_image][bt_hr top_spaced=\"topSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"1/2\"][/bt_column][bt_column width=\"1/2\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"GET THE BEST RATE\" headline=\"Offers <i>&</i> Deals\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"If you chose to stay with us you will enjoy modern home comforts in a traditional setting. Whether you are looking for a short weekend break or a longer holiday, we offer a range of packages that we think cater for all.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"1/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"0.7\" inner_background_color=\"#ffffff\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"67\" caption_text=\"Get together\" size=\"\" shape=\"square\" url=\"special-offers\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"Family vacation\" show_titles=\"no\"][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"Get together\" headline=\"Family vacation\" headline_size=\"medium\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"fa_f207\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f13d\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f1eb\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f206\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f1ae\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\r\n\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Integer mollis viverra diam ac ornare. Donec rhoncus nisi in felis congue, at pulvinar nibh dapibus.\r\n\r\n[/bt_text][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/3\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"special-offers\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"2/3\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"0.7\" inner_background_color=\"#ffffff\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"68\" caption_text=\"Celebrate\" size=\"\" shape=\"square\" url=\"special-offers\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"Newlyweds weekend\" show_titles=\"no\"][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"Celebrate\" headline=\"Newlyweds weekend\" headline_size=\"medium\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"fa_f1ba\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f072\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f228\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\r\n\r\nSed ut metus eu neque commodo fringilla imperdiet sed nibh. Sed volutpat fermentum ligula, et maximus ex ultricies sit amet.\r\n\r\n[/bt_text][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/3\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"special-offers\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"2/3\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"0.7\" inner_background_color=\"#ffffff\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"725\" caption_text=\"Procrastinate\" size=\"\" shape=\"square\" url=\"special-offers\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"Lazy weekend\" show_titles=\"no\"][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"Procrastinate\" headline=\"Lazy weekend\" headline_size=\"medium\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"fa_f1ba\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f072\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f1eb\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f000\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f185\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\r\n\r\nPhasellus non bibendum augue. Duis nibh felis, volutpat vitae pulvinar at, tincidunt eget mi. Donec venenatis condimentum fermentum.\r\n\r\n[/bt_text][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/3\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"special-offers\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"2/3\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#e5e5e5\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"322\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"width: 60px; margin-top: -28px;\"][/bt_image][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"7/12\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Activities\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Phasellus blandit a massa vitae congue. Nam ex massa, mattis ut sapien sit amet, consequat sodales risus. Sed interdum, ligula et lobortis faucibus, sem sem placerat augue, eget scelerisque turpis lorem et tellus.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][/bt_column][bt_column width=\"5/12\"][/bt_column][/bt_row][/bt_section][bt_section layout=\"wide\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"dark\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#e5e5e5\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"73\" caption_title=\"Beach voleyball\" caption_text=\"Enjoy the game\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"ENJOY THE GAME\" headline=\"Beach Voleyball\" headline_size=\"medium\" dash=\"top\" subheadline=\"Beach volleyball is ouy visitors favourite sport, highly enjoyable for everyone young or old. Just gather your team on the beach and find the opponents in a matter of minutes. And show what you can do, be a winner!\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_e9ac\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e040\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e041\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"74\" el_class=\"\" el_style=\"\"][bt_image image=\"74\" caption_title=\"Horseback riding\" caption_text=\"Enjoy the beach\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Enjoy the beach\" headline=\"Horseback riding\" headline_size=\"medium\" dash=\"top\" subheadline=\"How about a lazy afternoon with your friends on a hors, while the sun goes down? If you want to chill out, our horse riding team will teach you in a matter of minutes and help you wind down after a good day on the sun.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_ea13\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1e\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e05b\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"75\" el_class=\"\" el_style=\"\"][bt_image image=\"75\" caption_title=\"Waterskiing\" caption_text=\"Enjoy the sea\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Enjoy the sea\" headline=\"Waterskiing\" headline_size=\"medium\" dash=\"top\" subheadline=\"If you are a big fan of water sports, then why not try the waterskiing or waterboarding? At hotel California you will find there\'s an amateur champoionship every year. Rated as the most fun activity by our visitors.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_e05b\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9a3\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9e5\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"76\" el_class=\"\" el_style=\"\"][bt_image image=\"76\" caption_title=\"Paragliding\" caption_text=\"Enjoy the sky\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Enjoy the sky\" headline=\"Parasailing\" headline_size=\"medium\" dash=\"top\" subheadline=\"Enjoy the thrill on the sky with our parasailing team and feel the California sun on your face. The team will help you get your adrenaline high and will be capuring your moments on a high-definition camera.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_ea2f\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"s7_e67b\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9f3\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_slider height=\"auto\" auto_play=\"\" hide_arrows=\"\" hide_paging=\"btSliderHidePaging\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/6\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"78\" caption_text=\"\" size=\"\" shape=\"circle\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][bt_header superheadline=\"June 2016\" headline=\"Alan Jones\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][/bt_column_inner][bt_column_inner width=\"5/6\"][bt_text]\r\n<blockquote>If you chose to stay with us you will enjoy modern home comforts in a traditional setting. Whether you are looking for a short weekend break or a longer holiday, we offer a range of packages that we think cater for all.</blockquote>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/6\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"447\" caption_text=\"\" size=\"\" shape=\"circle\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][/bt_image][bt_header superheadline=\"July 2016\" headline=\"Adrianne White\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][bt_column_inner width=\"5/6\"][bt_text]\r\n<blockquote>If you chose to stay with us you will enjoy modern home comforts in a traditional setting. Whether you are looking for a short weekend break or a longer holiday, we offer a range of packages that we think cater for all.</blockquote>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/1\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_text]\r\n<blockquote>Our mission: to connect our members and our diverse community to the boundless recreational opportunities and proper stewardship of the Monterey Bay and the Pacific Ocean.</blockquote>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][/bt_slider][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/3\" align=\"left\" vertical_align=\"btMiddleVertical\" border=\"no_border\" cell_padding=\"btDoublePadding\" animation=\"animate animate-fadein\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"#e5e5e5\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"IN A NUTSHELL\" headline=\"Hotel California\" headline_size=\"large\" dash=\"bottom\" subheadline=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer mollis viverra diam ac ornare. Donec rhoncus nisi in felis congue, at pulvinar nibh dapibus.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_button text=\"READ MORE\" icon=\"no_icon\" url=\"\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"ExtraSmall\" width=\"Normal\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"2/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_slider height=\"auto\" auto_play=\"\" hide_arrows=\"\" hide_paging=\"btSliderHidePaging\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"81\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"82\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"83\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"84\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"85\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][/bt_slider][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\"][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"2/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_gmaps latitude=\"36.602383\" longitude=\"-121.879245 \" zoom=\"11\" icon=\"342\" height=\"400px\" primary_color=\"\" secondary_color=\"\" water_color=\"\" custom_style=\"WwogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJhZG1pbmlzdHJhdGl2ZSIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImxhYmVscy50ZXh0LmZpbGwiLAogICAgICAgICJzdHlsZXJzIjogWwogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAiY29sb3IiOiAiIzQ0NDQ0NCIKICAgICAgICAgICAgfQogICAgICAgIF0KICAgIH0sCiAgICB7CiAgICAgICAgImZlYXR1cmVUeXBlIjogImxhbmRzY2FwZSIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJjb2xvciI6ICIjZjJmMmYyIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAicG9pIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiYWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInZpc2liaWxpdHkiOiAib2ZmIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAicm9hZCIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJzYXR1cmF0aW9uIjogLTEwMAogICAgICAgICAgICB9LAogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAibGlnaHRuZXNzIjogNDUKICAgICAgICAgICAgfQogICAgICAgIF0KICAgIH0sCiAgICB7CiAgICAgICAgImZlYXR1cmVUeXBlIjogInJvYWQuaGlnaHdheSIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogInNpbXBsaWZpZWQiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJyb2FkLmhpZ2h3YXkiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJnZW9tZXRyeSIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogInNpbXBsaWZpZWQiCiAgICAgICAgICAgIH0sCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJjb2xvciI6ICIjZDc3Mjg3IgogICAgICAgICAgICB9LAogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAibGlnaHRuZXNzIjogIjAiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJyb2FkLmhpZ2h3YXkiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJsYWJlbHMudGV4dCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogIm9uIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAicm9hZC5oaWdod2F5IiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAibGFiZWxzLmljb24iLAogICAgICAgICJzdHlsZXJzIjogWwogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAidmlzaWJpbGl0eSI6ICJvbiIKICAgICAgICAgICAgfQogICAgICAgIF0KICAgIH0sCiAgICB7CiAgICAgICAgImZlYXR1cmVUeXBlIjogInJvYWQuYXJ0ZXJpYWwiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJhbGwiLAogICAgICAgICJzdHlsZXJzIjogWwogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAidmlzaWJpbGl0eSI6ICJvbiIKICAgICAgICAgICAgfQogICAgICAgIF0KICAgIH0sCiAgICB7CiAgICAgICAgImZlYXR1cmVUeXBlIjogInJvYWQuYXJ0ZXJpYWwiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJnZW9tZXRyeS5maWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgImNvbG9yIjogIiNkNzcyODciCiAgICAgICAgICAgIH0sCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJsaWdodG5lc3MiOiAiNzUiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJyb2FkLmFydGVyaWFsIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAibGFiZWxzLmljb24iLAogICAgICAgICJzdHlsZXJzIjogWwogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAidmlzaWJpbGl0eSI6ICJvZmYiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJyb2FkLmxvY2FsIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiZ2VvbWV0cnkuZmlsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJsaWdodG5lc3MiOiAiNzUiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJ0cmFuc2l0IiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiYWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInZpc2liaWxpdHkiOiAib2ZmIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAidHJhbnNpdC5saW5lIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiYWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInZpc2liaWxpdHkiOiAib24iCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJ0cmFuc2l0LnN0YXRpb24uYnVzIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiYWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInZpc2liaWxpdHkiOiAib24iCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJ0cmFuc2l0LnN0YXRpb24ucmFpbCIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogIm9uIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAidHJhbnNpdC5zdGF0aW9uLnJhaWwiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJsYWJlbHMuaWNvbiIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ3ZWlnaHQiOiAiMC4wMSIKICAgICAgICAgICAgfSwKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgImh1ZSI6ICIjZmYwMDM1IgogICAgICAgICAgICB9LAogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAibGlnaHRuZXNzIjogIjAiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJ3YXRlciIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogIm9uIgogICAgICAgICAgICB9LAogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAiY29sb3IiOiAiIzgwZTRkOCIKICAgICAgICAgICAgfSwKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgImxpZ2h0bmVzcyI6ICIyNSIKICAgICAgICAgICAgfSwKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInNhdHVyYXRpb24iOiAiLTIzIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfQpd\" el_class=\"\" el_style=\"\" api_key=\"AIzaSyBda9LxQ-Wztqsk6aFI7SkcdiypnKTPfiI\"][/bt_gmaps][/bt_column][bt_column width=\"1/3\" align=\"left\" vertical_align=\"btMiddleVertical\" border=\"no_border\" cell_padding=\"btDoublePadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"#e5e5e5\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_service icon=\"s7_e638\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoMediumSize\" url=\"\" headline=\"Address\" dash=\"\" text=\"3216 W Highland Boulevard\r\nSan Diego, California\" el_class=\"\" el_style=\"\" superheadline=\"\"][/bt_service][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSemiSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_service icon=\"s7_e670\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoMediumSize\" url=\"\" headline=\"Phone\" dash=\"\" text=\"+555-40-220-6672\" el_class=\"\" el_style=\"\" superheadline=\"\"][/bt_service][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSemiSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_service icon=\"s7_e63a\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoMediumSize\" url=\"\" headline=\"Email\" dash=\"\" text=\"office@california.hotel\" el_class=\"\" el_style=\"\" superheadline=\"\"][/bt_service][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"yes\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"7/12\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"News <i>&</i> Blog\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Morbi pharetra faucibus purus, nec pretium enim luctus quis. Pellentesque aliquet venenatis ante, quis pretium neque tristique eget. Integer in luctus urna. Aenean rutrum sodales pharetra.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"5/12\"][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_latest_posts number=\"3\" category=\"\" format=\"horizontal\" post_type=\"blog\" show_excerpt=\"yes\" show_date=\"yes\" show_author=\"yes\" el_class=\"\" el_style=\"\"][/bt_latest_posts][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"321\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"0.3\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Follow us\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Find out what’s hot and new, and get discounts for being a loyal customer and a Hotel California fan.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_icons][bt_icon icon=\"fa_f09a\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f099\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f0d5\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_column][/bt_row][/bt_section]','Street view','\n ','inherit','closed','closed','','837-revision-v1','','','2021-04-07 05:22:07','2021-04-07 05:22:07','',837,'http://mpycdev.theomggroup.com/?p=1054',0,'revision','',0);
INSERT INTO `smrc_posts` VALUES (1055,1,'2021-04-07 05:26:42','2021-04-07 05:26:42','[bt_section layout=\"wide\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\"][bt_slider height=\"medium\" auto_play=\"5000\" hide_arrows=\"\" hide_paging=\"\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item image=\"1048\" el_class=\"\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1025\" el_class=\"\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1026\" el_class=\"btLightSkin\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1035\" el_class=\"btLightSkin\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1050\" el_class=\"btLightSkin\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1049\" el_class=\"btLightSkin\" el_style=\"\"][/bt_slider_item][/bt_slider][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"dark\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#000080\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\"][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\r\n\r\n<em>founded 1953 in historic Monterey, California</em>\r\n\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSemiSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"2/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Our Club\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"A non-profit organization, MPYC is a yachting and social club comprised of over 400 adult and junior members with an interest in coming together to share in boating, sailing, yacht racing and social activities. Membership is not limited to boat owners.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/3\"][/bt_column][/bt_row][bt_row][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"44\" caption_text=\"View\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption=\"Double room\" show_titles=\"no\" caption_title=\"Room details\"][bt_header superheadline=\"Room features\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"cs_ea18\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9c2\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea2c\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1c\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"A PASSION FOR\" headline=\"RACING\" headline_size=\"medium\" dash=\"top\" subheadline=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer mollis viverra diam ac ornare. Donec rhoncus nisi in felis congue, at pulvinar nibh dapibus.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"43\" caption_text=\"\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"Room features\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"cs_ea18\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9c5\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1a\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1c\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"A LOVE OF\" headline=\"CRUISING\" headline_size=\"medium\" dash=\"top\" subheadline=\"Sed sodales tortor non metus iaculis, non commodo ipsum mattis. Ut at dolor elit. Proin dignissim, lacus eget ullamcorper consectetur, mauris mi mattis elit sagittis.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"42\" caption_text=\"\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"Room features\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"cs_ea30\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea18\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea2d\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1c\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"PROMOTING\" headline=\"Junior Sailing\" headline_size=\"medium\" dash=\"top\" subheadline=\"Mauris suscipit lectus pellentesque ante efficitur, at dignissim tellus maximus. Sed leo magna, faucibus non ante non, pulvinar scelerisque magna sit elis.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"41\" caption_text=\"\" size=\"medium\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"Room features\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"cs_ea18\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1b\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea21\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1c\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"COMMITTED TO\" headline=\"Stewardship\" headline_size=\"medium\" dash=\"top\" subheadline=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer mollis viverra diam ac ornare. Donec rhoncus nisi in felis congue, at pulvinar nibh dapibus.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"66\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"0.7\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"special-offers\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"323\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"width: 60px; margin-top: -28px;\"][/bt_image][bt_hr top_spaced=\"topSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"1/2\"][/bt_column][bt_column width=\"1/2\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"GET THE BEST RATE\" headline=\"Offers <i>&</i> Deals\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"If you chose to stay with us you will enjoy modern home comforts in a traditional setting. Whether you are looking for a short weekend break or a longer holiday, we offer a range of packages that we think cater for all.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"1/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"0.7\" inner_background_color=\"#ffffff\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"67\" caption_text=\"Get together\" size=\"\" shape=\"square\" url=\"special-offers\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"Family vacation\" show_titles=\"no\"][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"Get together\" headline=\"Family vacation\" headline_size=\"medium\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"fa_f207\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f13d\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f1eb\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f206\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f1ae\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\r\n\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Integer mollis viverra diam ac ornare. Donec rhoncus nisi in felis congue, at pulvinar nibh dapibus.\r\n\r\n[/bt_text][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/3\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"special-offers\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"2/3\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"0.7\" inner_background_color=\"#ffffff\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"68\" caption_text=\"Celebrate\" size=\"\" shape=\"square\" url=\"special-offers\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"Newlyweds weekend\" show_titles=\"no\"][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"Celebrate\" headline=\"Newlyweds weekend\" headline_size=\"medium\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"fa_f1ba\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f072\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f228\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\r\n\r\nSed ut metus eu neque commodo fringilla imperdiet sed nibh. Sed volutpat fermentum ligula, et maximus ex ultricies sit amet.\r\n\r\n[/bt_text][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/3\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"special-offers\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"2/3\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"0.7\" inner_background_color=\"#ffffff\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"725\" caption_text=\"Procrastinate\" size=\"\" shape=\"square\" url=\"special-offers\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"Lazy weekend\" show_titles=\"no\"][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"Procrastinate\" headline=\"Lazy weekend\" headline_size=\"medium\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"fa_f1ba\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f072\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f1eb\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f000\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f185\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\r\n\r\nPhasellus non bibendum augue. Duis nibh felis, volutpat vitae pulvinar at, tincidunt eget mi. Donec venenatis condimentum fermentum.\r\n\r\n[/bt_text][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/3\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"special-offers\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"2/3\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#e5e5e5\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"322\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"width: 60px; margin-top: -28px;\"][/bt_image][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"7/12\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Activities\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Phasellus blandit a massa vitae congue. Nam ex massa, mattis ut sapien sit amet, consequat sodales risus. Sed interdum, ligula et lobortis faucibus, sem sem placerat augue, eget scelerisque turpis lorem et tellus.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][/bt_column][bt_column width=\"5/12\"][/bt_column][/bt_row][/bt_section][bt_section layout=\"wide\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"dark\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#e5e5e5\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"73\" caption_title=\"Beach voleyball\" caption_text=\"Enjoy the game\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"ENJOY THE GAME\" headline=\"Beach Voleyball\" headline_size=\"medium\" dash=\"top\" subheadline=\"Beach volleyball is ouy visitors favourite sport, highly enjoyable for everyone young or old. Just gather your team on the beach and find the opponents in a matter of minutes. And show what you can do, be a winner!\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_e9ac\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e040\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e041\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"74\" el_class=\"\" el_style=\"\"][bt_image image=\"74\" caption_title=\"Horseback riding\" caption_text=\"Enjoy the beach\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Enjoy the beach\" headline=\"Horseback riding\" headline_size=\"medium\" dash=\"top\" subheadline=\"How about a lazy afternoon with your friends on a hors, while the sun goes down? If you want to chill out, our horse riding team will teach you in a matter of minutes and help you wind down after a good day on the sun.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_ea13\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1e\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e05b\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"75\" el_class=\"\" el_style=\"\"][bt_image image=\"75\" caption_title=\"Waterskiing\" caption_text=\"Enjoy the sea\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Enjoy the sea\" headline=\"Waterskiing\" headline_size=\"medium\" dash=\"top\" subheadline=\"If you are a big fan of water sports, then why not try the waterskiing or waterboarding? At hotel California you will find there\'s an amateur champoionship every year. Rated as the most fun activity by our visitors.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_e05b\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9a3\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9e5\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"76\" el_class=\"\" el_style=\"\"][bt_image image=\"76\" caption_title=\"Paragliding\" caption_text=\"Enjoy the sky\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Enjoy the sky\" headline=\"Parasailing\" headline_size=\"medium\" dash=\"top\" subheadline=\"Enjoy the thrill on the sky with our parasailing team and feel the California sun on your face. The team will help you get your adrenaline high and will be capuring your moments on a high-definition camera.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_ea2f\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"s7_e67b\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9f3\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_slider height=\"auto\" auto_play=\"\" hide_arrows=\"\" hide_paging=\"btSliderHidePaging\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/6\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"78\" caption_text=\"\" size=\"\" shape=\"circle\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][bt_header superheadline=\"June 2016\" headline=\"Alan Jones\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][/bt_column_inner][bt_column_inner width=\"5/6\"][bt_text]\r\n<blockquote>If you chose to stay with us you will enjoy modern home comforts in a traditional setting. Whether you are looking for a short weekend break or a longer holiday, we offer a range of packages that we think cater for all.</blockquote>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/6\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"447\" caption_text=\"\" size=\"\" shape=\"circle\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][/bt_image][bt_header superheadline=\"July 2016\" headline=\"Adrianne White\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][bt_column_inner width=\"5/6\"][bt_text]\r\n<blockquote>If you chose to stay with us you will enjoy modern home comforts in a traditional setting. Whether you are looking for a short weekend break or a longer holiday, we offer a range of packages that we think cater for all.</blockquote>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/1\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_text]\r\n<blockquote>Our mission: to connect our members and our diverse community to the boundless recreational opportunities and proper stewardship of the Monterey Bay and the Pacific Ocean.</blockquote>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][/bt_slider][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/3\" align=\"left\" vertical_align=\"btMiddleVertical\" border=\"no_border\" cell_padding=\"btDoublePadding\" animation=\"animate animate-fadein\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"#e5e5e5\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"IN A NUTSHELL\" headline=\"Hotel California\" headline_size=\"large\" dash=\"bottom\" subheadline=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer mollis viverra diam ac ornare. Donec rhoncus nisi in felis congue, at pulvinar nibh dapibus.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_button text=\"READ MORE\" icon=\"no_icon\" url=\"\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"ExtraSmall\" width=\"Normal\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"2/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_slider height=\"auto\" auto_play=\"\" hide_arrows=\"\" hide_paging=\"btSliderHidePaging\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"81\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"82\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"83\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"84\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"85\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][/bt_slider][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\"][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"2/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_gmaps latitude=\"36.602383\" longitude=\"-121.879245 \" zoom=\"11\" icon=\"342\" height=\"400px\" primary_color=\"\" secondary_color=\"\" water_color=\"\" custom_style=\"WwogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJhZG1pbmlzdHJhdGl2ZSIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImxhYmVscy50ZXh0LmZpbGwiLAogICAgICAgICJzdHlsZXJzIjogWwogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAiY29sb3IiOiAiIzQ0NDQ0NCIKICAgICAgICAgICAgfQogICAgICAgIF0KICAgIH0sCiAgICB7CiAgICAgICAgImZlYXR1cmVUeXBlIjogImxhbmRzY2FwZSIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJjb2xvciI6ICIjZjJmMmYyIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAicG9pIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiYWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInZpc2liaWxpdHkiOiAib2ZmIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAicm9hZCIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJzYXR1cmF0aW9uIjogLTEwMAogICAgICAgICAgICB9LAogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAibGlnaHRuZXNzIjogNDUKICAgICAgICAgICAgfQogICAgICAgIF0KICAgIH0sCiAgICB7CiAgICAgICAgImZlYXR1cmVUeXBlIjogInJvYWQuaGlnaHdheSIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogInNpbXBsaWZpZWQiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJyb2FkLmhpZ2h3YXkiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJnZW9tZXRyeSIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogInNpbXBsaWZpZWQiCiAgICAgICAgICAgIH0sCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJjb2xvciI6ICIjZDc3Mjg3IgogICAgICAgICAgICB9LAogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAibGlnaHRuZXNzIjogIjAiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJyb2FkLmhpZ2h3YXkiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJsYWJlbHMudGV4dCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogIm9uIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAicm9hZC5oaWdod2F5IiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAibGFiZWxzLmljb24iLAogICAgICAgICJzdHlsZXJzIjogWwogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAidmlzaWJpbGl0eSI6ICJvbiIKICAgICAgICAgICAgfQogICAgICAgIF0KICAgIH0sCiAgICB7CiAgICAgICAgImZlYXR1cmVUeXBlIjogInJvYWQuYXJ0ZXJpYWwiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJhbGwiLAogICAgICAgICJzdHlsZXJzIjogWwogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAidmlzaWJpbGl0eSI6ICJvbiIKICAgICAgICAgICAgfQogICAgICAgIF0KICAgIH0sCiAgICB7CiAgICAgICAgImZlYXR1cmVUeXBlIjogInJvYWQuYXJ0ZXJpYWwiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJnZW9tZXRyeS5maWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgImNvbG9yIjogIiNkNzcyODciCiAgICAgICAgICAgIH0sCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJsaWdodG5lc3MiOiAiNzUiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJyb2FkLmFydGVyaWFsIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAibGFiZWxzLmljb24iLAogICAgICAgICJzdHlsZXJzIjogWwogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAidmlzaWJpbGl0eSI6ICJvZmYiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJyb2FkLmxvY2FsIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiZ2VvbWV0cnkuZmlsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJsaWdodG5lc3MiOiAiNzUiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJ0cmFuc2l0IiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiYWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInZpc2liaWxpdHkiOiAib2ZmIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAidHJhbnNpdC5saW5lIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiYWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInZpc2liaWxpdHkiOiAib24iCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJ0cmFuc2l0LnN0YXRpb24uYnVzIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiYWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInZpc2liaWxpdHkiOiAib24iCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJ0cmFuc2l0LnN0YXRpb24ucmFpbCIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogIm9uIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAidHJhbnNpdC5zdGF0aW9uLnJhaWwiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJsYWJlbHMuaWNvbiIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ3ZWlnaHQiOiAiMC4wMSIKICAgICAgICAgICAgfSwKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgImh1ZSI6ICIjZmYwMDM1IgogICAgICAgICAgICB9LAogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAibGlnaHRuZXNzIjogIjAiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJ3YXRlciIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogIm9uIgogICAgICAgICAgICB9LAogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAiY29sb3IiOiAiIzgwZTRkOCIKICAgICAgICAgICAgfSwKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgImxpZ2h0bmVzcyI6ICIyNSIKICAgICAgICAgICAgfSwKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInNhdHVyYXRpb24iOiAiLTIzIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfQpd\" el_class=\"\" el_style=\"\" api_key=\"AIzaSyBda9LxQ-Wztqsk6aFI7SkcdiypnKTPfiI\"][/bt_gmaps][/bt_column][bt_column width=\"1/3\" align=\"left\" vertical_align=\"btMiddleVertical\" border=\"no_border\" cell_padding=\"btDoublePadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"#e5e5e5\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_service icon=\"s7_e638\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoMediumSize\" url=\"\" headline=\"Address\" dash=\"\" text=\"3216 W Highland Boulevard\r\nSan Diego, California\" el_class=\"\" el_style=\"\" superheadline=\"\"][/bt_service][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSemiSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_service icon=\"s7_e670\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoMediumSize\" url=\"\" headline=\"Phone\" dash=\"\" text=\"+555-40-220-6672\" el_class=\"\" el_style=\"\" superheadline=\"\"][/bt_service][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSemiSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_service icon=\"s7_e63a\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoMediumSize\" url=\"\" headline=\"Email\" dash=\"\" text=\"office@california.hotel\" el_class=\"\" el_style=\"\" superheadline=\"\"][/bt_service][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"yes\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"7/12\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"News <i>&</i> Blog\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Morbi pharetra faucibus purus, nec pretium enim luctus quis. Pellentesque aliquet venenatis ante, quis pretium neque tristique eget. Integer in luctus urna. Aenean rutrum sodales pharetra.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"5/12\"][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_latest_posts number=\"3\" category=\"\" format=\"horizontal\" post_type=\"blog\" show_excerpt=\"yes\" show_date=\"yes\" show_author=\"yes\" el_class=\"\" el_style=\"\"][/bt_latest_posts][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"321\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"0.3\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Follow us\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Find out what’s hot and new, and get discounts for being a loyal customer and a Hotel California fan.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_icons][bt_icon icon=\"fa_f09a\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f099\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f0d5\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_column][/bt_row][/bt_section]','Street view','\n ','inherit','closed','closed','','837-revision-v1','','','2021-04-07 05:26:42','2021-04-07 05:26:42','',837,'http://mpycdev.theomggroup.com/?p=1055',0,'revision','',0);
INSERT INTO `smrc_posts` VALUES (1056,1,'2021-04-07 05:29:22','2021-04-07 05:29:22','[bt_section layout=\"wide\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\"][bt_slider height=\"medium\" auto_play=\"5000\" hide_arrows=\"\" hide_paging=\"\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item image=\"1048\" el_class=\"\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1025\" el_class=\"\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1026\" el_class=\"btLightSkin\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1035\" el_class=\"btLightSkin\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1050\" el_class=\"btLightSkin\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1049\" el_class=\"btLightSkin\" el_style=\"\"][/bt_slider_item][/bt_slider][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"dark\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#000080\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\"][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\r\n\r\n<em>founded 1953 in historic Monterey, California</em>\r\n\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSemiSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"2/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Our Club\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"A non-profit organization, MPYC is a yachting and social club comprised of over 400 adult and junior members with an interest in coming together to share in boating, sailing, yacht racing and social activities. Membership is not limited to boat owners.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/3\"][/bt_column][/bt_row][bt_row][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"44\" caption_text=\"View\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption=\"Double room\" show_titles=\"no\" caption_title=\"Room details\"][bt_header superheadline=\"Room features\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"cs_ea18\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9c2\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea2c\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1c\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"CORINTHIAN\" headline=\"Racing\" headline_size=\"medium\" dash=\"top\" subheadline=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer mollis viverra diam ac ornare. Donec rhoncus nisi in felis congue, at pulvinar nibh dapibus.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"43\" caption_text=\"\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"Room features\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"cs_ea18\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9c5\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1a\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1c\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"SHARING\" headline=\"CRUISING\" headline_size=\"medium\" dash=\"top\" subheadline=\"Sed sodales tortor non metus iaculis, non commodo ipsum mattis. Ut at dolor elit. Proin dignissim, lacus eget ullamcorper consectetur, mauris mi mattis elit sagittis.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"42\" caption_text=\"\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"Room features\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"cs_ea30\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea18\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea2d\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1c\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"PROMOTING\" headline=\"Junior Sailing\" headline_size=\"medium\" dash=\"top\" subheadline=\"Mauris suscipit lectus pellentesque ante efficitur, at dignissim tellus maximus. Sed leo magna, faucibus non ante non, pulvinar scelerisque magna sit elis.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"41\" caption_text=\"\" size=\"medium\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"Room features\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"cs_ea18\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1b\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea21\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1c\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"COMMITTED TO\" headline=\"Stewardship\" headline_size=\"medium\" dash=\"top\" subheadline=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer mollis viverra diam ac ornare. Donec rhoncus nisi in felis congue, at pulvinar nibh dapibus.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"66\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"0.7\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"special-offers\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"323\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"width: 60px; margin-top: -28px;\"][/bt_image][bt_hr top_spaced=\"topSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"1/2\"][/bt_column][bt_column width=\"1/2\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"GET THE BEST RATE\" headline=\"Offers <i>&</i> Deals\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"If you chose to stay with us you will enjoy modern home comforts in a traditional setting. Whether you are looking for a short weekend break or a longer holiday, we offer a range of packages that we think cater for all.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"1/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"0.7\" inner_background_color=\"#ffffff\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"67\" caption_text=\"Get together\" size=\"\" shape=\"square\" url=\"special-offers\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"Family vacation\" show_titles=\"no\"][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"Get together\" headline=\"Family vacation\" headline_size=\"medium\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"fa_f207\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f13d\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f1eb\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f206\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f1ae\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\r\n\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Integer mollis viverra diam ac ornare. Donec rhoncus nisi in felis congue, at pulvinar nibh dapibus.\r\n\r\n[/bt_text][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/3\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"special-offers\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"2/3\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"0.7\" inner_background_color=\"#ffffff\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"68\" caption_text=\"Celebrate\" size=\"\" shape=\"square\" url=\"special-offers\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"Newlyweds weekend\" show_titles=\"no\"][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"Celebrate\" headline=\"Newlyweds weekend\" headline_size=\"medium\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"fa_f1ba\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f072\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f228\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\r\n\r\nSed ut metus eu neque commodo fringilla imperdiet sed nibh. Sed volutpat fermentum ligula, et maximus ex ultricies sit amet.\r\n\r\n[/bt_text][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/3\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"special-offers\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"2/3\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"0.7\" inner_background_color=\"#ffffff\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"725\" caption_text=\"Procrastinate\" size=\"\" shape=\"square\" url=\"special-offers\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"Lazy weekend\" show_titles=\"no\"][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"Procrastinate\" headline=\"Lazy weekend\" headline_size=\"medium\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"fa_f1ba\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f072\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f1eb\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f000\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f185\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\r\n\r\nPhasellus non bibendum augue. Duis nibh felis, volutpat vitae pulvinar at, tincidunt eget mi. Donec venenatis condimentum fermentum.\r\n\r\n[/bt_text][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/3\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"special-offers\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"2/3\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#e5e5e5\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"322\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"width: 60px; margin-top: -28px;\"][/bt_image][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"7/12\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Activities\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Phasellus blandit a massa vitae congue. Nam ex massa, mattis ut sapien sit amet, consequat sodales risus. Sed interdum, ligula et lobortis faucibus, sem sem placerat augue, eget scelerisque turpis lorem et tellus.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][/bt_column][bt_column width=\"5/12\"][/bt_column][/bt_row][/bt_section][bt_section layout=\"wide\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"dark\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#e5e5e5\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"73\" caption_title=\"Beach voleyball\" caption_text=\"Enjoy the game\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"ENJOY THE GAME\" headline=\"Beach Voleyball\" headline_size=\"medium\" dash=\"top\" subheadline=\"Beach volleyball is ouy visitors favourite sport, highly enjoyable for everyone young or old. Just gather your team on the beach and find the opponents in a matter of minutes. And show what you can do, be a winner!\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_e9ac\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e040\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e041\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"74\" el_class=\"\" el_style=\"\"][bt_image image=\"74\" caption_title=\"Horseback riding\" caption_text=\"Enjoy the beach\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Enjoy the beach\" headline=\"Horseback riding\" headline_size=\"medium\" dash=\"top\" subheadline=\"How about a lazy afternoon with your friends on a hors, while the sun goes down? If you want to chill out, our horse riding team will teach you in a matter of minutes and help you wind down after a good day on the sun.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_ea13\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1e\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e05b\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"75\" el_class=\"\" el_style=\"\"][bt_image image=\"75\" caption_title=\"Waterskiing\" caption_text=\"Enjoy the sea\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Enjoy the sea\" headline=\"Waterskiing\" headline_size=\"medium\" dash=\"top\" subheadline=\"If you are a big fan of water sports, then why not try the waterskiing or waterboarding? At hotel California you will find there\'s an amateur champoionship every year. Rated as the most fun activity by our visitors.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_e05b\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9a3\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9e5\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"76\" el_class=\"\" el_style=\"\"][bt_image image=\"76\" caption_title=\"Paragliding\" caption_text=\"Enjoy the sky\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Enjoy the sky\" headline=\"Parasailing\" headline_size=\"medium\" dash=\"top\" subheadline=\"Enjoy the thrill on the sky with our parasailing team and feel the California sun on your face. The team will help you get your adrenaline high and will be capuring your moments on a high-definition camera.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_ea2f\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"s7_e67b\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9f3\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_slider height=\"auto\" auto_play=\"\" hide_arrows=\"\" hide_paging=\"btSliderHidePaging\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/6\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"78\" caption_text=\"\" size=\"\" shape=\"circle\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][bt_header superheadline=\"June 2016\" headline=\"Alan Jones\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][/bt_column_inner][bt_column_inner width=\"5/6\"][bt_text]\r\n<blockquote>If you chose to stay with us you will enjoy modern home comforts in a traditional setting. Whether you are looking for a short weekend break or a longer holiday, we offer a range of packages that we think cater for all.</blockquote>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/6\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"447\" caption_text=\"\" size=\"\" shape=\"circle\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][/bt_image][bt_header superheadline=\"July 2016\" headline=\"Adrianne White\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][bt_column_inner width=\"5/6\"][bt_text]\r\n<blockquote>If you chose to stay with us you will enjoy modern home comforts in a traditional setting. Whether you are looking for a short weekend break or a longer holiday, we offer a range of packages that we think cater for all.</blockquote>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/1\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_text]\r\n<blockquote>Our mission: to connect our members and our diverse community to the boundless recreational opportunities and proper stewardship of the Monterey Bay and the Pacific Ocean.</blockquote>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][/bt_slider][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/3\" align=\"left\" vertical_align=\"btMiddleVertical\" border=\"no_border\" cell_padding=\"btDoublePadding\" animation=\"animate animate-fadein\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"#e5e5e5\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"IN A NUTSHELL\" headline=\"Hotel California\" headline_size=\"large\" dash=\"bottom\" subheadline=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer mollis viverra diam ac ornare. Donec rhoncus nisi in felis congue, at pulvinar nibh dapibus.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_button text=\"READ MORE\" icon=\"no_icon\" url=\"\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"ExtraSmall\" width=\"Normal\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"2/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_slider height=\"auto\" auto_play=\"\" hide_arrows=\"\" hide_paging=\"btSliderHidePaging\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"81\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"82\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"83\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"84\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"85\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][/bt_slider][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\"][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"2/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_gmaps latitude=\"36.602383\" longitude=\"-121.879245 \" zoom=\"11\" icon=\"342\" height=\"400px\" primary_color=\"\" secondary_color=\"\" water_color=\"\" custom_style=\"WwogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJhZG1pbmlzdHJhdGl2ZSIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImxhYmVscy50ZXh0LmZpbGwiLAogICAgICAgICJzdHlsZXJzIjogWwogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAiY29sb3IiOiAiIzQ0NDQ0NCIKICAgICAgICAgICAgfQogICAgICAgIF0KICAgIH0sCiAgICB7CiAgICAgICAgImZlYXR1cmVUeXBlIjogImxhbmRzY2FwZSIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJjb2xvciI6ICIjZjJmMmYyIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAicG9pIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiYWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInZpc2liaWxpdHkiOiAib2ZmIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAicm9hZCIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJzYXR1cmF0aW9uIjogLTEwMAogICAgICAgICAgICB9LAogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAibGlnaHRuZXNzIjogNDUKICAgICAgICAgICAgfQogICAgICAgIF0KICAgIH0sCiAgICB7CiAgICAgICAgImZlYXR1cmVUeXBlIjogInJvYWQuaGlnaHdheSIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogInNpbXBsaWZpZWQiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJyb2FkLmhpZ2h3YXkiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJnZW9tZXRyeSIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogInNpbXBsaWZpZWQiCiAgICAgICAgICAgIH0sCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJjb2xvciI6ICIjZDc3Mjg3IgogICAgICAgICAgICB9LAogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAibGlnaHRuZXNzIjogIjAiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJyb2FkLmhpZ2h3YXkiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJsYWJlbHMudGV4dCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogIm9uIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAicm9hZC5oaWdod2F5IiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAibGFiZWxzLmljb24iLAogICAgICAgICJzdHlsZXJzIjogWwogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAidmlzaWJpbGl0eSI6ICJvbiIKICAgICAgICAgICAgfQogICAgICAgIF0KICAgIH0sCiAgICB7CiAgICAgICAgImZlYXR1cmVUeXBlIjogInJvYWQuYXJ0ZXJpYWwiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJhbGwiLAogICAgICAgICJzdHlsZXJzIjogWwogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAidmlzaWJpbGl0eSI6ICJvbiIKICAgICAgICAgICAgfQogICAgICAgIF0KICAgIH0sCiAgICB7CiAgICAgICAgImZlYXR1cmVUeXBlIjogInJvYWQuYXJ0ZXJpYWwiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJnZW9tZXRyeS5maWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgImNvbG9yIjogIiNkNzcyODciCiAgICAgICAgICAgIH0sCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJsaWdodG5lc3MiOiAiNzUiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJyb2FkLmFydGVyaWFsIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAibGFiZWxzLmljb24iLAogICAgICAgICJzdHlsZXJzIjogWwogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAidmlzaWJpbGl0eSI6ICJvZmYiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJyb2FkLmxvY2FsIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiZ2VvbWV0cnkuZmlsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJsaWdodG5lc3MiOiAiNzUiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJ0cmFuc2l0IiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiYWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInZpc2liaWxpdHkiOiAib2ZmIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAidHJhbnNpdC5saW5lIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiYWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInZpc2liaWxpdHkiOiAib24iCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJ0cmFuc2l0LnN0YXRpb24uYnVzIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiYWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInZpc2liaWxpdHkiOiAib24iCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJ0cmFuc2l0LnN0YXRpb24ucmFpbCIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogIm9uIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAidHJhbnNpdC5zdGF0aW9uLnJhaWwiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJsYWJlbHMuaWNvbiIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ3ZWlnaHQiOiAiMC4wMSIKICAgICAgICAgICAgfSwKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgImh1ZSI6ICIjZmYwMDM1IgogICAgICAgICAgICB9LAogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAibGlnaHRuZXNzIjogIjAiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJ3YXRlciIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogIm9uIgogICAgICAgICAgICB9LAogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAiY29sb3IiOiAiIzgwZTRkOCIKICAgICAgICAgICAgfSwKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgImxpZ2h0bmVzcyI6ICIyNSIKICAgICAgICAgICAgfSwKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInNhdHVyYXRpb24iOiAiLTIzIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfQpd\" el_class=\"\" el_style=\"\" api_key=\"AIzaSyBda9LxQ-Wztqsk6aFI7SkcdiypnKTPfiI\"][/bt_gmaps][/bt_column][bt_column width=\"1/3\" align=\"left\" vertical_align=\"btMiddleVertical\" border=\"no_border\" cell_padding=\"btDoublePadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"#e5e5e5\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_service icon=\"s7_e638\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoMediumSize\" url=\"\" headline=\"Address\" dash=\"\" text=\"3216 W Highland Boulevard\r\nSan Diego, California\" el_class=\"\" el_style=\"\" superheadline=\"\"][/bt_service][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSemiSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_service icon=\"s7_e670\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoMediumSize\" url=\"\" headline=\"Phone\" dash=\"\" text=\"+555-40-220-6672\" el_class=\"\" el_style=\"\" superheadline=\"\"][/bt_service][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSemiSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_service icon=\"s7_e63a\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoMediumSize\" url=\"\" headline=\"Email\" dash=\"\" text=\"office@california.hotel\" el_class=\"\" el_style=\"\" superheadline=\"\"][/bt_service][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"yes\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"7/12\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"News <i>&</i> Blog\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Morbi pharetra faucibus purus, nec pretium enim luctus quis. Pellentesque aliquet venenatis ante, quis pretium neque tristique eget. Integer in luctus urna. Aenean rutrum sodales pharetra.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"5/12\"][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_latest_posts number=\"3\" category=\"\" format=\"horizontal\" post_type=\"blog\" show_excerpt=\"yes\" show_date=\"yes\" show_author=\"yes\" el_class=\"\" el_style=\"\"][/bt_latest_posts][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"321\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"0.3\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Follow us\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Find out what’s hot and new, and get discounts for being a loyal customer and a Hotel California fan.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_icons][bt_icon icon=\"fa_f09a\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f099\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f0d5\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_column][/bt_row][/bt_section]','Street view','\n ','inherit','closed','closed','','837-revision-v1','','','2021-04-07 05:29:22','2021-04-07 05:29:22','',837,'http://mpycdev.theomggroup.com/?p=1056',0,'revision','',0);
INSERT INTO `smrc_posts` VALUES (1057,1,'2021-04-07 05:30:22','2021-04-07 05:30:22','[bt_section layout=\"wide\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\"][bt_slider height=\"medium\" auto_play=\"5000\" hide_arrows=\"\" hide_paging=\"\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item image=\"1048\" el_class=\"\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1025\" el_class=\"\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1026\" el_class=\"btLightSkin\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1035\" el_class=\"btLightSkin\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1050\" el_class=\"btLightSkin\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1049\" el_class=\"btLightSkin\" el_style=\"\"][/bt_slider_item][/bt_slider][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"dark\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#000080\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\"][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\r\n\r\n<em>founded 1953 in historic Monterey, California</em>\r\n\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSemiSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"2/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Our Club\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"A non-profit organization, MPYC is a yachting and social club comprised of over 400 adult and junior members with an interest in coming together to share in boating, sailing, yacht racing and social activities. Membership is not limited to boat owners.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/3\"][/bt_column][/bt_row][bt_row][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"44\" caption_text=\"View\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption=\"Double room\" show_titles=\"no\" caption_title=\"Room details\"][bt_header superheadline=\"Room features\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"cs_ea18\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9c2\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea2c\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1c\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"DELUXE\" headline=\"Racing\" headline_size=\"medium\" dash=\"top\" subheadline=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer mollis viverra diam ac ornare. Donec rhoncus nisi in felis congue, at pulvinar nibh dapibus.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"43\" caption_text=\"\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"Room features\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"cs_ea18\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9c5\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1a\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1c\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"SHARING\" headline=\"CRUISING\" headline_size=\"medium\" dash=\"top\" subheadline=\"Sed sodales tortor non metus iaculis, non commodo ipsum mattis. Ut at dolor elit. Proin dignissim, lacus eget ullamcorper consectetur, mauris mi mattis elit sagittis.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"42\" caption_text=\"\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"Room features\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"cs_ea30\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea18\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea2d\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1c\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"PROMOTING\" headline=\"Junior Sailing\" headline_size=\"medium\" dash=\"top\" subheadline=\"Mauris suscipit lectus pellentesque ante efficitur, at dignissim tellus maximus. Sed leo magna, faucibus non ante non, pulvinar scelerisque magna sit elis.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"41\" caption_text=\"\" size=\"medium\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"Room features\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"cs_ea18\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1b\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea21\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1c\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"COMMITTED TO\" headline=\"Stewardship\" headline_size=\"medium\" dash=\"top\" subheadline=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer mollis viverra diam ac ornare. Donec rhoncus nisi in felis congue, at pulvinar nibh dapibus.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"66\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"0.7\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"special-offers\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"323\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"width: 60px; margin-top: -28px;\"][/bt_image][bt_hr top_spaced=\"topSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"1/2\"][/bt_column][bt_column width=\"1/2\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"GET THE BEST RATE\" headline=\"Offers <i>&</i> Deals\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"If you chose to stay with us you will enjoy modern home comforts in a traditional setting. Whether you are looking for a short weekend break or a longer holiday, we offer a range of packages that we think cater for all.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"1/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"0.7\" inner_background_color=\"#ffffff\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"67\" caption_text=\"Get together\" size=\"\" shape=\"square\" url=\"special-offers\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"Family vacation\" show_titles=\"no\"][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"Get together\" headline=\"Family vacation\" headline_size=\"medium\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"fa_f207\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f13d\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f1eb\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f206\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f1ae\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\r\n\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Integer mollis viverra diam ac ornare. Donec rhoncus nisi in felis congue, at pulvinar nibh dapibus.\r\n\r\n[/bt_text][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/3\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"special-offers\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"2/3\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"0.7\" inner_background_color=\"#ffffff\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"68\" caption_text=\"Celebrate\" size=\"\" shape=\"square\" url=\"special-offers\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"Newlyweds weekend\" show_titles=\"no\"][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"Celebrate\" headline=\"Newlyweds weekend\" headline_size=\"medium\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"fa_f1ba\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f072\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f228\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\r\n\r\nSed ut metus eu neque commodo fringilla imperdiet sed nibh. Sed volutpat fermentum ligula, et maximus ex ultricies sit amet.\r\n\r\n[/bt_text][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/3\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"special-offers\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"2/3\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"0.7\" inner_background_color=\"#ffffff\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"725\" caption_text=\"Procrastinate\" size=\"\" shape=\"square\" url=\"special-offers\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"Lazy weekend\" show_titles=\"no\"][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"Procrastinate\" headline=\"Lazy weekend\" headline_size=\"medium\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"fa_f1ba\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f072\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f1eb\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f000\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f185\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\r\n\r\nPhasellus non bibendum augue. Duis nibh felis, volutpat vitae pulvinar at, tincidunt eget mi. Donec venenatis condimentum fermentum.\r\n\r\n[/bt_text][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/3\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"special-offers\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"2/3\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#e5e5e5\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"322\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"width: 60px; margin-top: -28px;\"][/bt_image][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"7/12\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Activities\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Phasellus blandit a massa vitae congue. Nam ex massa, mattis ut sapien sit amet, consequat sodales risus. Sed interdum, ligula et lobortis faucibus, sem sem placerat augue, eget scelerisque turpis lorem et tellus.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][/bt_column][bt_column width=\"5/12\"][/bt_column][/bt_row][/bt_section][bt_section layout=\"wide\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"dark\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#e5e5e5\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"73\" caption_title=\"Beach voleyball\" caption_text=\"Enjoy the game\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"ENJOY THE GAME\" headline=\"Beach Voleyball\" headline_size=\"medium\" dash=\"top\" subheadline=\"Beach volleyball is ouy visitors favourite sport, highly enjoyable for everyone young or old. Just gather your team on the beach and find the opponents in a matter of minutes. And show what you can do, be a winner!\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_e9ac\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e040\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e041\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"74\" el_class=\"\" el_style=\"\"][bt_image image=\"74\" caption_title=\"Horseback riding\" caption_text=\"Enjoy the beach\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Enjoy the beach\" headline=\"Horseback riding\" headline_size=\"medium\" dash=\"top\" subheadline=\"How about a lazy afternoon with your friends on a hors, while the sun goes down? If you want to chill out, our horse riding team will teach you in a matter of minutes and help you wind down after a good day on the sun.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_ea13\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1e\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e05b\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"75\" el_class=\"\" el_style=\"\"][bt_image image=\"75\" caption_title=\"Waterskiing\" caption_text=\"Enjoy the sea\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Enjoy the sea\" headline=\"Waterskiing\" headline_size=\"medium\" dash=\"top\" subheadline=\"If you are a big fan of water sports, then why not try the waterskiing or waterboarding? At hotel California you will find there\'s an amateur champoionship every year. Rated as the most fun activity by our visitors.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_e05b\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9a3\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9e5\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"76\" el_class=\"\" el_style=\"\"][bt_image image=\"76\" caption_title=\"Paragliding\" caption_text=\"Enjoy the sky\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Enjoy the sky\" headline=\"Parasailing\" headline_size=\"medium\" dash=\"top\" subheadline=\"Enjoy the thrill on the sky with our parasailing team and feel the California sun on your face. The team will help you get your adrenaline high and will be capuring your moments on a high-definition camera.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_ea2f\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"s7_e67b\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9f3\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_slider height=\"auto\" auto_play=\"\" hide_arrows=\"\" hide_paging=\"btSliderHidePaging\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/6\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"78\" caption_text=\"\" size=\"\" shape=\"circle\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][bt_header superheadline=\"June 2016\" headline=\"Alan Jones\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][/bt_column_inner][bt_column_inner width=\"5/6\"][bt_text]\r\n<blockquote>If you chose to stay with us you will enjoy modern home comforts in a traditional setting. Whether you are looking for a short weekend break or a longer holiday, we offer a range of packages that we think cater for all.</blockquote>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/6\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"447\" caption_text=\"\" size=\"\" shape=\"circle\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][/bt_image][bt_header superheadline=\"July 2016\" headline=\"Adrianne White\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][bt_column_inner width=\"5/6\"][bt_text]\r\n<blockquote>If you chose to stay with us you will enjoy modern home comforts in a traditional setting. Whether you are looking for a short weekend break or a longer holiday, we offer a range of packages that we think cater for all.</blockquote>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/1\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_text]\r\n<blockquote>Our mission: to connect our members and our diverse community to the boundless recreational opportunities and proper stewardship of the Monterey Bay and the Pacific Ocean.</blockquote>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][/bt_slider][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/3\" align=\"left\" vertical_align=\"btMiddleVertical\" border=\"no_border\" cell_padding=\"btDoublePadding\" animation=\"animate animate-fadein\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"#e5e5e5\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"IN A NUTSHELL\" headline=\"Hotel California\" headline_size=\"large\" dash=\"bottom\" subheadline=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer mollis viverra diam ac ornare. Donec rhoncus nisi in felis congue, at pulvinar nibh dapibus.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_button text=\"READ MORE\" icon=\"no_icon\" url=\"\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"ExtraSmall\" width=\"Normal\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"2/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_slider height=\"auto\" auto_play=\"\" hide_arrows=\"\" hide_paging=\"btSliderHidePaging\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"81\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"82\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"83\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"84\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"85\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][/bt_slider][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\"][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"2/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_gmaps latitude=\"36.602383\" longitude=\"-121.879245 \" zoom=\"11\" icon=\"342\" height=\"400px\" primary_color=\"\" secondary_color=\"\" water_color=\"\" custom_style=\"WwogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJhZG1pbmlzdHJhdGl2ZSIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImxhYmVscy50ZXh0LmZpbGwiLAogICAgICAgICJzdHlsZXJzIjogWwogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAiY29sb3IiOiAiIzQ0NDQ0NCIKICAgICAgICAgICAgfQogICAgICAgIF0KICAgIH0sCiAgICB7CiAgICAgICAgImZlYXR1cmVUeXBlIjogImxhbmRzY2FwZSIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJjb2xvciI6ICIjZjJmMmYyIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAicG9pIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiYWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInZpc2liaWxpdHkiOiAib2ZmIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAicm9hZCIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJzYXR1cmF0aW9uIjogLTEwMAogICAgICAgICAgICB9LAogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAibGlnaHRuZXNzIjogNDUKICAgICAgICAgICAgfQogICAgICAgIF0KICAgIH0sCiAgICB7CiAgICAgICAgImZlYXR1cmVUeXBlIjogInJvYWQuaGlnaHdheSIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogInNpbXBsaWZpZWQiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJyb2FkLmhpZ2h3YXkiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJnZW9tZXRyeSIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogInNpbXBsaWZpZWQiCiAgICAgICAgICAgIH0sCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJjb2xvciI6ICIjZDc3Mjg3IgogICAgICAgICAgICB9LAogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAibGlnaHRuZXNzIjogIjAiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJyb2FkLmhpZ2h3YXkiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJsYWJlbHMudGV4dCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogIm9uIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAicm9hZC5oaWdod2F5IiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAibGFiZWxzLmljb24iLAogICAgICAgICJzdHlsZXJzIjogWwogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAidmlzaWJpbGl0eSI6ICJvbiIKICAgICAgICAgICAgfQogICAgICAgIF0KICAgIH0sCiAgICB7CiAgICAgICAgImZlYXR1cmVUeXBlIjogInJvYWQuYXJ0ZXJpYWwiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJhbGwiLAogICAgICAgICJzdHlsZXJzIjogWwogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAidmlzaWJpbGl0eSI6ICJvbiIKICAgICAgICAgICAgfQogICAgICAgIF0KICAgIH0sCiAgICB7CiAgICAgICAgImZlYXR1cmVUeXBlIjogInJvYWQuYXJ0ZXJpYWwiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJnZW9tZXRyeS5maWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgImNvbG9yIjogIiNkNzcyODciCiAgICAgICAgICAgIH0sCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJsaWdodG5lc3MiOiAiNzUiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJyb2FkLmFydGVyaWFsIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAibGFiZWxzLmljb24iLAogICAgICAgICJzdHlsZXJzIjogWwogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAidmlzaWJpbGl0eSI6ICJvZmYiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJyb2FkLmxvY2FsIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiZ2VvbWV0cnkuZmlsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJsaWdodG5lc3MiOiAiNzUiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJ0cmFuc2l0IiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiYWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInZpc2liaWxpdHkiOiAib2ZmIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAidHJhbnNpdC5saW5lIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiYWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInZpc2liaWxpdHkiOiAib24iCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJ0cmFuc2l0LnN0YXRpb24uYnVzIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiYWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInZpc2liaWxpdHkiOiAib24iCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJ0cmFuc2l0LnN0YXRpb24ucmFpbCIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogIm9uIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAidHJhbnNpdC5zdGF0aW9uLnJhaWwiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJsYWJlbHMuaWNvbiIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ3ZWlnaHQiOiAiMC4wMSIKICAgICAgICAgICAgfSwKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgImh1ZSI6ICIjZmYwMDM1IgogICAgICAgICAgICB9LAogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAibGlnaHRuZXNzIjogIjAiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJ3YXRlciIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogIm9uIgogICAgICAgICAgICB9LAogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAiY29sb3IiOiAiIzgwZTRkOCIKICAgICAgICAgICAgfSwKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgImxpZ2h0bmVzcyI6ICIyNSIKICAgICAgICAgICAgfSwKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInNhdHVyYXRpb24iOiAiLTIzIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfQpd\" el_class=\"\" el_style=\"\" api_key=\"AIzaSyBda9LxQ-Wztqsk6aFI7SkcdiypnKTPfiI\"][/bt_gmaps][/bt_column][bt_column width=\"1/3\" align=\"left\" vertical_align=\"btMiddleVertical\" border=\"no_border\" cell_padding=\"btDoublePadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"#e5e5e5\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_service icon=\"s7_e638\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoMediumSize\" url=\"\" headline=\"Address\" dash=\"\" text=\"3216 W Highland Boulevard\r\nSan Diego, California\" el_class=\"\" el_style=\"\" superheadline=\"\"][/bt_service][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSemiSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_service icon=\"s7_e670\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoMediumSize\" url=\"\" headline=\"Phone\" dash=\"\" text=\"+555-40-220-6672\" el_class=\"\" el_style=\"\" superheadline=\"\"][/bt_service][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSemiSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_service icon=\"s7_e63a\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoMediumSize\" url=\"\" headline=\"Email\" dash=\"\" text=\"office@california.hotel\" el_class=\"\" el_style=\"\" superheadline=\"\"][/bt_service][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"yes\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"7/12\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"News <i>&</i> Blog\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Morbi pharetra faucibus purus, nec pretium enim luctus quis. Pellentesque aliquet venenatis ante, quis pretium neque tristique eget. Integer in luctus urna. Aenean rutrum sodales pharetra.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"5/12\"][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_latest_posts number=\"3\" category=\"\" format=\"horizontal\" post_type=\"blog\" show_excerpt=\"yes\" show_date=\"yes\" show_author=\"yes\" el_class=\"\" el_style=\"\"][/bt_latest_posts][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"321\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"0.3\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Follow us\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Find out what’s hot and new, and get discounts for being a loyal customer and a Hotel California fan.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_icons][bt_icon icon=\"fa_f09a\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f099\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f0d5\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_column][/bt_row][/bt_section]','Street view','\n ','inherit','closed','closed','','837-revision-v1','','','2021-04-07 05:30:22','2021-04-07 05:30:22','',837,'http://mpycdev.theomggroup.com/?p=1057',0,'revision','',0);
INSERT INTO `smrc_posts` VALUES (1058,1,'2021-04-07 05:30:57','2021-04-07 05:30:57','[bt_section layout=\"wide\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\"][bt_slider height=\"medium\" auto_play=\"5000\" hide_arrows=\"\" hide_paging=\"\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item image=\"1048\" el_class=\"\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1025\" el_class=\"\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1026\" el_class=\"btLightSkin\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1035\" el_class=\"btLightSkin\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1050\" el_class=\"btLightSkin\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1049\" el_class=\"btLightSkin\" el_style=\"\"][/bt_slider_item][/bt_slider][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"dark\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#000080\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\"][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\r\n\r\n<em>founded 1953 in historic Monterey, California</em>\r\n\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSemiSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"2/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Our Club\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"A non-profit organization, MPYC is a yachting and social club comprised of over 400 adult and junior members with an interest in coming together to share in boating, sailing, yacht racing and social activities. Membership is not limited to boat owners.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/3\"][/bt_column][/bt_row][bt_row][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"44\" caption_text=\"View\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption=\"Double room\" show_titles=\"no\" caption_title=\"Room details\"][bt_header superheadline=\"Room features\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"cs_ea18\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9c2\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea2c\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1c\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"DELUXE\" headline=\"Racing\" headline_size=\"medium\" dash=\"top\" subheadline=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer mollis viverra diam ac ornare. Donec rhoncus nisi in felis congue, at pulvinar nibh dapibus.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"43\" caption_text=\"\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"Room features\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"cs_ea18\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9c5\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1a\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1c\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"SHARING\" headline=\"Crusing\" headline_size=\"medium\" dash=\"top\" subheadline=\"Sed sodales tortor non metus iaculis, non commodo ipsum mattis. Ut at dolor elit. Proin dignissim, lacus eget ullamcorper consectetur, mauris mi mattis elit sagittis.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"42\" caption_text=\"\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"Room features\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"cs_ea30\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea18\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea2d\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1c\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"PROMOTING\" headline=\"Junior Sailing\" headline_size=\"medium\" dash=\"top\" subheadline=\"Mauris suscipit lectus pellentesque ante efficitur, at dignissim tellus maximus. Sed leo magna, faucibus non ante non, pulvinar scelerisque magna sit elis.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"41\" caption_text=\"\" size=\"medium\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"Room features\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"cs_ea18\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1b\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea21\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1c\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"COMMITTED TO\" headline=\"Stewardship\" headline_size=\"medium\" dash=\"top\" subheadline=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer mollis viverra diam ac ornare. Donec rhoncus nisi in felis congue, at pulvinar nibh dapibus.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"66\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"0.7\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"special-offers\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"323\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"width: 60px; margin-top: -28px;\"][/bt_image][bt_hr top_spaced=\"topSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"1/2\"][/bt_column][bt_column width=\"1/2\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"GET THE BEST RATE\" headline=\"Offers <i>&</i> Deals\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"If you chose to stay with us you will enjoy modern home comforts in a traditional setting. Whether you are looking for a short weekend break or a longer holiday, we offer a range of packages that we think cater for all.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"1/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"0.7\" inner_background_color=\"#ffffff\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"67\" caption_text=\"Get together\" size=\"\" shape=\"square\" url=\"special-offers\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"Family vacation\" show_titles=\"no\"][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"Get together\" headline=\"Family vacation\" headline_size=\"medium\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"fa_f207\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f13d\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f1eb\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f206\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f1ae\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\r\n\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Integer mollis viverra diam ac ornare. Donec rhoncus nisi in felis congue, at pulvinar nibh dapibus.\r\n\r\n[/bt_text][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/3\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"special-offers\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"2/3\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"0.7\" inner_background_color=\"#ffffff\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"68\" caption_text=\"Celebrate\" size=\"\" shape=\"square\" url=\"special-offers\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"Newlyweds weekend\" show_titles=\"no\"][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"Celebrate\" headline=\"Newlyweds weekend\" headline_size=\"medium\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"fa_f1ba\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f072\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f228\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\r\n\r\nSed ut metus eu neque commodo fringilla imperdiet sed nibh. Sed volutpat fermentum ligula, et maximus ex ultricies sit amet.\r\n\r\n[/bt_text][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/3\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"special-offers\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"2/3\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"0.7\" inner_background_color=\"#ffffff\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"725\" caption_text=\"Procrastinate\" size=\"\" shape=\"square\" url=\"special-offers\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"Lazy weekend\" show_titles=\"no\"][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"Procrastinate\" headline=\"Lazy weekend\" headline_size=\"medium\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"fa_f1ba\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f072\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f1eb\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f000\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f185\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\r\n\r\nPhasellus non bibendum augue. Duis nibh felis, volutpat vitae pulvinar at, tincidunt eget mi. Donec venenatis condimentum fermentum.\r\n\r\n[/bt_text][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/3\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"special-offers\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"2/3\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#e5e5e5\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"322\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"width: 60px; margin-top: -28px;\"][/bt_image][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"7/12\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Activities\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Phasellus blandit a massa vitae congue. Nam ex massa, mattis ut sapien sit amet, consequat sodales risus. Sed interdum, ligula et lobortis faucibus, sem sem placerat augue, eget scelerisque turpis lorem et tellus.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][/bt_column][bt_column width=\"5/12\"][/bt_column][/bt_row][/bt_section][bt_section layout=\"wide\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"dark\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#e5e5e5\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"73\" caption_title=\"Beach voleyball\" caption_text=\"Enjoy the game\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"ENJOY THE GAME\" headline=\"Beach Voleyball\" headline_size=\"medium\" dash=\"top\" subheadline=\"Beach volleyball is ouy visitors favourite sport, highly enjoyable for everyone young or old. Just gather your team on the beach and find the opponents in a matter of minutes. And show what you can do, be a winner!\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_e9ac\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e040\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e041\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"74\" el_class=\"\" el_style=\"\"][bt_image image=\"74\" caption_title=\"Horseback riding\" caption_text=\"Enjoy the beach\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Enjoy the beach\" headline=\"Horseback riding\" headline_size=\"medium\" dash=\"top\" subheadline=\"How about a lazy afternoon with your friends on a hors, while the sun goes down? If you want to chill out, our horse riding team will teach you in a matter of minutes and help you wind down after a good day on the sun.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_ea13\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1e\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e05b\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"75\" el_class=\"\" el_style=\"\"][bt_image image=\"75\" caption_title=\"Waterskiing\" caption_text=\"Enjoy the sea\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Enjoy the sea\" headline=\"Waterskiing\" headline_size=\"medium\" dash=\"top\" subheadline=\"If you are a big fan of water sports, then why not try the waterskiing or waterboarding? At hotel California you will find there\'s an amateur champoionship every year. Rated as the most fun activity by our visitors.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_e05b\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9a3\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9e5\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"76\" el_class=\"\" el_style=\"\"][bt_image image=\"76\" caption_title=\"Paragliding\" caption_text=\"Enjoy the sky\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Enjoy the sky\" headline=\"Parasailing\" headline_size=\"medium\" dash=\"top\" subheadline=\"Enjoy the thrill on the sky with our parasailing team and feel the California sun on your face. The team will help you get your adrenaline high and will be capuring your moments on a high-definition camera.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_ea2f\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"s7_e67b\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9f3\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_slider height=\"auto\" auto_play=\"\" hide_arrows=\"\" hide_paging=\"btSliderHidePaging\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/6\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"78\" caption_text=\"\" size=\"\" shape=\"circle\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][bt_header superheadline=\"June 2016\" headline=\"Alan Jones\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][/bt_column_inner][bt_column_inner width=\"5/6\"][bt_text]\r\n<blockquote>If you chose to stay with us you will enjoy modern home comforts in a traditional setting. Whether you are looking for a short weekend break or a longer holiday, we offer a range of packages that we think cater for all.</blockquote>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/6\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"447\" caption_text=\"\" size=\"\" shape=\"circle\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][/bt_image][bt_header superheadline=\"July 2016\" headline=\"Adrianne White\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][bt_column_inner width=\"5/6\"][bt_text]\r\n<blockquote>If you chose to stay with us you will enjoy modern home comforts in a traditional setting. Whether you are looking for a short weekend break or a longer holiday, we offer a range of packages that we think cater for all.</blockquote>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/1\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_text]\r\n<blockquote>Our mission: to connect our members and our diverse community to the boundless recreational opportunities and proper stewardship of the Monterey Bay and the Pacific Ocean.</blockquote>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][/bt_slider][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/3\" align=\"left\" vertical_align=\"btMiddleVertical\" border=\"no_border\" cell_padding=\"btDoublePadding\" animation=\"animate animate-fadein\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"#e5e5e5\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"IN A NUTSHELL\" headline=\"Hotel California\" headline_size=\"large\" dash=\"bottom\" subheadline=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer mollis viverra diam ac ornare. Donec rhoncus nisi in felis congue, at pulvinar nibh dapibus.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_button text=\"READ MORE\" icon=\"no_icon\" url=\"\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"ExtraSmall\" width=\"Normal\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"2/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_slider height=\"auto\" auto_play=\"\" hide_arrows=\"\" hide_paging=\"btSliderHidePaging\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"81\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"82\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"83\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"84\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"85\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][/bt_slider][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\"][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"2/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_gmaps latitude=\"36.602383\" longitude=\"-121.879245 \" zoom=\"11\" icon=\"342\" height=\"400px\" primary_color=\"\" secondary_color=\"\" water_color=\"\" custom_style=\"WwogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJhZG1pbmlzdHJhdGl2ZSIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImxhYmVscy50ZXh0LmZpbGwiLAogICAgICAgICJzdHlsZXJzIjogWwogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAiY29sb3IiOiAiIzQ0NDQ0NCIKICAgICAgICAgICAgfQogICAgICAgIF0KICAgIH0sCiAgICB7CiAgICAgICAgImZlYXR1cmVUeXBlIjogImxhbmRzY2FwZSIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJjb2xvciI6ICIjZjJmMmYyIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAicG9pIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiYWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInZpc2liaWxpdHkiOiAib2ZmIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAicm9hZCIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJzYXR1cmF0aW9uIjogLTEwMAogICAgICAgICAgICB9LAogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAibGlnaHRuZXNzIjogNDUKICAgICAgICAgICAgfQogICAgICAgIF0KICAgIH0sCiAgICB7CiAgICAgICAgImZlYXR1cmVUeXBlIjogInJvYWQuaGlnaHdheSIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogInNpbXBsaWZpZWQiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJyb2FkLmhpZ2h3YXkiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJnZW9tZXRyeSIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogInNpbXBsaWZpZWQiCiAgICAgICAgICAgIH0sCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJjb2xvciI6ICIjZDc3Mjg3IgogICAgICAgICAgICB9LAogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAibGlnaHRuZXNzIjogIjAiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJyb2FkLmhpZ2h3YXkiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJsYWJlbHMudGV4dCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogIm9uIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAicm9hZC5oaWdod2F5IiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAibGFiZWxzLmljb24iLAogICAgICAgICJzdHlsZXJzIjogWwogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAidmlzaWJpbGl0eSI6ICJvbiIKICAgICAgICAgICAgfQogICAgICAgIF0KICAgIH0sCiAgICB7CiAgICAgICAgImZlYXR1cmVUeXBlIjogInJvYWQuYXJ0ZXJpYWwiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJhbGwiLAogICAgICAgICJzdHlsZXJzIjogWwogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAidmlzaWJpbGl0eSI6ICJvbiIKICAgICAgICAgICAgfQogICAgICAgIF0KICAgIH0sCiAgICB7CiAgICAgICAgImZlYXR1cmVUeXBlIjogInJvYWQuYXJ0ZXJpYWwiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJnZW9tZXRyeS5maWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgImNvbG9yIjogIiNkNzcyODciCiAgICAgICAgICAgIH0sCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJsaWdodG5lc3MiOiAiNzUiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJyb2FkLmFydGVyaWFsIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAibGFiZWxzLmljb24iLAogICAgICAgICJzdHlsZXJzIjogWwogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAidmlzaWJpbGl0eSI6ICJvZmYiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJyb2FkLmxvY2FsIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiZ2VvbWV0cnkuZmlsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJsaWdodG5lc3MiOiAiNzUiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJ0cmFuc2l0IiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiYWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInZpc2liaWxpdHkiOiAib2ZmIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAidHJhbnNpdC5saW5lIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiYWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInZpc2liaWxpdHkiOiAib24iCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJ0cmFuc2l0LnN0YXRpb24uYnVzIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiYWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInZpc2liaWxpdHkiOiAib24iCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJ0cmFuc2l0LnN0YXRpb24ucmFpbCIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogIm9uIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAidHJhbnNpdC5zdGF0aW9uLnJhaWwiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJsYWJlbHMuaWNvbiIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ3ZWlnaHQiOiAiMC4wMSIKICAgICAgICAgICAgfSwKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgImh1ZSI6ICIjZmYwMDM1IgogICAgICAgICAgICB9LAogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAibGlnaHRuZXNzIjogIjAiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJ3YXRlciIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogIm9uIgogICAgICAgICAgICB9LAogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAiY29sb3IiOiAiIzgwZTRkOCIKICAgICAgICAgICAgfSwKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgImxpZ2h0bmVzcyI6ICIyNSIKICAgICAgICAgICAgfSwKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInNhdHVyYXRpb24iOiAiLTIzIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfQpd\" el_class=\"\" el_style=\"\" api_key=\"AIzaSyBda9LxQ-Wztqsk6aFI7SkcdiypnKTPfiI\"][/bt_gmaps][/bt_column][bt_column width=\"1/3\" align=\"left\" vertical_align=\"btMiddleVertical\" border=\"no_border\" cell_padding=\"btDoublePadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"#e5e5e5\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_service icon=\"s7_e638\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoMediumSize\" url=\"\" headline=\"Address\" dash=\"\" text=\"3216 W Highland Boulevard\r\nSan Diego, California\" el_class=\"\" el_style=\"\" superheadline=\"\"][/bt_service][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSemiSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_service icon=\"s7_e670\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoMediumSize\" url=\"\" headline=\"Phone\" dash=\"\" text=\"+555-40-220-6672\" el_class=\"\" el_style=\"\" superheadline=\"\"][/bt_service][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSemiSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_service icon=\"s7_e63a\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoMediumSize\" url=\"\" headline=\"Email\" dash=\"\" text=\"office@california.hotel\" el_class=\"\" el_style=\"\" superheadline=\"\"][/bt_service][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"yes\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"7/12\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"News <i>&</i> Blog\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Morbi pharetra faucibus purus, nec pretium enim luctus quis. Pellentesque aliquet venenatis ante, quis pretium neque tristique eget. Integer in luctus urna. Aenean rutrum sodales pharetra.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"5/12\"][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_latest_posts number=\"3\" category=\"\" format=\"horizontal\" post_type=\"blog\" show_excerpt=\"yes\" show_date=\"yes\" show_author=\"yes\" el_class=\"\" el_style=\"\"][/bt_latest_posts][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"321\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"0.3\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Follow us\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Find out what’s hot and new, and get discounts for being a loyal customer and a Hotel California fan.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_icons][bt_icon icon=\"fa_f09a\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f099\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f0d5\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_column][/bt_row][/bt_section]','Street view','\n ','inherit','closed','closed','','837-revision-v1','','','2021-04-07 05:30:57','2021-04-07 05:30:57','',837,'http://mpycdev.theomggroup.com/?p=1058',0,'revision','',0);
INSERT INTO `smrc_posts` VALUES (1059,1,'2021-04-07 05:33:00','2021-04-07 05:33:00','[bt_section layout=\"wide\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\"][bt_slider height=\"medium\" auto_play=\"5000\" hide_arrows=\"\" hide_paging=\"\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item image=\"1048\" el_class=\"\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1025\" el_class=\"\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1026\" el_class=\"btLightSkin\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1035\" el_class=\"btLightSkin\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1050\" el_class=\"btLightSkin\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1049\" el_class=\"btLightSkin\" el_style=\"\"][/bt_slider_item][/bt_slider][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"dark\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#000080\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\"][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\r\n\r\n<em>founded 1953 in historic Monterey, California</em>\r\n\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSemiSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"2/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Our Club\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"A non-profit organization, MPYC is a yachting and social club comprised of over 400 adult and junior members with an interest in coming together to share in boating, sailing, yacht racing and social activities. Membership is not limited to boat owners.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/3\"][/bt_column][/bt_row][bt_row][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"44\" caption_text=\"View\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption=\"Double room\" show_titles=\"no\" caption_title=\"Room details\"][bt_header superheadline=\"Room features\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"cs_ea18\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9c2\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea2c\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1c\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Racing\" headline_size=\"medium\" dash=\"top\" subheadline=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer mollis viverra diam ac ornare. Donec rhoncus nisi in felis congue, at pulvinar nibh dapibus.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"43\" caption_text=\"\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"Room features\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"cs_ea18\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9c5\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1a\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1c\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"SHARING\" headline=\"Crusing\" headline_size=\"medium\" dash=\"top\" subheadline=\"Sed sodales tortor non metus iaculis, non commodo ipsum mattis. Ut at dolor elit. Proin dignissim, lacus eget ullamcorper consectetur, mauris mi mattis elit sagittis.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"42\" caption_text=\"\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"Room features\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"cs_ea30\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea18\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea2d\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1c\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"PROMOTING\" headline=\"Junior Sailing\" headline_size=\"medium\" dash=\"top\" subheadline=\"Mauris suscipit lectus pellentesque ante efficitur, at dignissim tellus maximus. Sed leo magna, faucibus non ante non, pulvinar scelerisque magna sit elis.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"41\" caption_text=\"\" size=\"medium\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"Room features\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"cs_ea18\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1b\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea21\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1c\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"COMMITTED TO\" headline=\"Stewardship\" headline_size=\"medium\" dash=\"top\" subheadline=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer mollis viverra diam ac ornare. Donec rhoncus nisi in felis congue, at pulvinar nibh dapibus.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"66\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"0.7\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"special-offers\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"323\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"width: 60px; margin-top: -28px;\"][/bt_image][bt_hr top_spaced=\"topSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"1/2\"][/bt_column][bt_column width=\"1/2\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"GET THE BEST RATE\" headline=\"Offers <i>&</i> Deals\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"If you chose to stay with us you will enjoy modern home comforts in a traditional setting. Whether you are looking for a short weekend break or a longer holiday, we offer a range of packages that we think cater for all.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"1/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"0.7\" inner_background_color=\"#ffffff\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"67\" caption_text=\"Get together\" size=\"\" shape=\"square\" url=\"special-offers\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"Family vacation\" show_titles=\"no\"][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"Get together\" headline=\"Family vacation\" headline_size=\"medium\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"fa_f207\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f13d\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f1eb\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f206\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f1ae\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\r\n\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Integer mollis viverra diam ac ornare. Donec rhoncus nisi in felis congue, at pulvinar nibh dapibus.\r\n\r\n[/bt_text][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/3\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"special-offers\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"2/3\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"0.7\" inner_background_color=\"#ffffff\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"68\" caption_text=\"Celebrate\" size=\"\" shape=\"square\" url=\"special-offers\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"Newlyweds weekend\" show_titles=\"no\"][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"Celebrate\" headline=\"Newlyweds weekend\" headline_size=\"medium\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"fa_f1ba\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f072\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f228\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\r\n\r\nSed ut metus eu neque commodo fringilla imperdiet sed nibh. Sed volutpat fermentum ligula, et maximus ex ultricies sit amet.\r\n\r\n[/bt_text][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/3\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"special-offers\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"2/3\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"0.7\" inner_background_color=\"#ffffff\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"725\" caption_text=\"Procrastinate\" size=\"\" shape=\"square\" url=\"special-offers\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"Lazy weekend\" show_titles=\"no\"][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"Procrastinate\" headline=\"Lazy weekend\" headline_size=\"medium\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"fa_f1ba\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f072\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f1eb\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f000\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f185\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\r\n\r\nPhasellus non bibendum augue. Duis nibh felis, volutpat vitae pulvinar at, tincidunt eget mi. Donec venenatis condimentum fermentum.\r\n\r\n[/bt_text][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/3\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"special-offers\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"2/3\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#e5e5e5\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"322\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"width: 60px; margin-top: -28px;\"][/bt_image][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"7/12\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Activities\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Phasellus blandit a massa vitae congue. Nam ex massa, mattis ut sapien sit amet, consequat sodales risus. Sed interdum, ligula et lobortis faucibus, sem sem placerat augue, eget scelerisque turpis lorem et tellus.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][/bt_column][bt_column width=\"5/12\"][/bt_column][/bt_row][/bt_section][bt_section layout=\"wide\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"dark\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#e5e5e5\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"73\" caption_title=\"Beach voleyball\" caption_text=\"Enjoy the game\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"ENJOY THE GAME\" headline=\"Beach Voleyball\" headline_size=\"medium\" dash=\"top\" subheadline=\"Beach volleyball is ouy visitors favourite sport, highly enjoyable for everyone young or old. Just gather your team on the beach and find the opponents in a matter of minutes. And show what you can do, be a winner!\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_e9ac\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e040\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e041\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"74\" el_class=\"\" el_style=\"\"][bt_image image=\"74\" caption_title=\"Horseback riding\" caption_text=\"Enjoy the beach\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Enjoy the beach\" headline=\"Horseback riding\" headline_size=\"medium\" dash=\"top\" subheadline=\"How about a lazy afternoon with your friends on a hors, while the sun goes down? If you want to chill out, our horse riding team will teach you in a matter of minutes and help you wind down after a good day on the sun.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_ea13\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1e\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e05b\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"75\" el_class=\"\" el_style=\"\"][bt_image image=\"75\" caption_title=\"Waterskiing\" caption_text=\"Enjoy the sea\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Enjoy the sea\" headline=\"Waterskiing\" headline_size=\"medium\" dash=\"top\" subheadline=\"If you are a big fan of water sports, then why not try the waterskiing or waterboarding? At hotel California you will find there\'s an amateur champoionship every year. Rated as the most fun activity by our visitors.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_e05b\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9a3\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9e5\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"76\" el_class=\"\" el_style=\"\"][bt_image image=\"76\" caption_title=\"Paragliding\" caption_text=\"Enjoy the sky\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Enjoy the sky\" headline=\"Parasailing\" headline_size=\"medium\" dash=\"top\" subheadline=\"Enjoy the thrill on the sky with our parasailing team and feel the California sun on your face. The team will help you get your adrenaline high and will be capuring your moments on a high-definition camera.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_ea2f\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"s7_e67b\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9f3\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_slider height=\"auto\" auto_play=\"\" hide_arrows=\"\" hide_paging=\"btSliderHidePaging\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/6\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"78\" caption_text=\"\" size=\"\" shape=\"circle\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][bt_header superheadline=\"June 2016\" headline=\"Alan Jones\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][/bt_column_inner][bt_column_inner width=\"5/6\"][bt_text]\r\n<blockquote>If you chose to stay with us you will enjoy modern home comforts in a traditional setting. Whether you are looking for a short weekend break or a longer holiday, we offer a range of packages that we think cater for all.</blockquote>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/6\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"447\" caption_text=\"\" size=\"\" shape=\"circle\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][/bt_image][bt_header superheadline=\"July 2016\" headline=\"Adrianne White\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][bt_column_inner width=\"5/6\"][bt_text]\r\n<blockquote>If you chose to stay with us you will enjoy modern home comforts in a traditional setting. Whether you are looking for a short weekend break or a longer holiday, we offer a range of packages that we think cater for all.</blockquote>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/1\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_text]\r\n<blockquote>Our mission: to connect our members and our diverse community to the boundless recreational opportunities and proper stewardship of the Monterey Bay and the Pacific Ocean.</blockquote>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][/bt_slider][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/3\" align=\"left\" vertical_align=\"btMiddleVertical\" border=\"no_border\" cell_padding=\"btDoublePadding\" animation=\"animate animate-fadein\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"#e5e5e5\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"IN A NUTSHELL\" headline=\"Hotel California\" headline_size=\"large\" dash=\"bottom\" subheadline=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer mollis viverra diam ac ornare. Donec rhoncus nisi in felis congue, at pulvinar nibh dapibus.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_button text=\"READ MORE\" icon=\"no_icon\" url=\"\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"ExtraSmall\" width=\"Normal\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"2/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_slider height=\"auto\" auto_play=\"\" hide_arrows=\"\" hide_paging=\"btSliderHidePaging\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"81\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"82\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"83\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"84\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"85\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][/bt_slider][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\"][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"2/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_gmaps latitude=\"36.602383\" longitude=\"-121.879245 \" zoom=\"11\" icon=\"342\" height=\"400px\" primary_color=\"\" secondary_color=\"\" water_color=\"\" custom_style=\"WwogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJhZG1pbmlzdHJhdGl2ZSIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImxhYmVscy50ZXh0LmZpbGwiLAogICAgICAgICJzdHlsZXJzIjogWwogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAiY29sb3IiOiAiIzQ0NDQ0NCIKICAgICAgICAgICAgfQogICAgICAgIF0KICAgIH0sCiAgICB7CiAgICAgICAgImZlYXR1cmVUeXBlIjogImxhbmRzY2FwZSIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJjb2xvciI6ICIjZjJmMmYyIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAicG9pIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiYWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInZpc2liaWxpdHkiOiAib2ZmIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAicm9hZCIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJzYXR1cmF0aW9uIjogLTEwMAogICAgICAgICAgICB9LAogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAibGlnaHRuZXNzIjogNDUKICAgICAgICAgICAgfQogICAgICAgIF0KICAgIH0sCiAgICB7CiAgICAgICAgImZlYXR1cmVUeXBlIjogInJvYWQuaGlnaHdheSIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogInNpbXBsaWZpZWQiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJyb2FkLmhpZ2h3YXkiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJnZW9tZXRyeSIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogInNpbXBsaWZpZWQiCiAgICAgICAgICAgIH0sCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJjb2xvciI6ICIjZDc3Mjg3IgogICAgICAgICAgICB9LAogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAibGlnaHRuZXNzIjogIjAiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJyb2FkLmhpZ2h3YXkiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJsYWJlbHMudGV4dCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogIm9uIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAicm9hZC5oaWdod2F5IiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAibGFiZWxzLmljb24iLAogICAgICAgICJzdHlsZXJzIjogWwogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAidmlzaWJpbGl0eSI6ICJvbiIKICAgICAgICAgICAgfQogICAgICAgIF0KICAgIH0sCiAgICB7CiAgICAgICAgImZlYXR1cmVUeXBlIjogInJvYWQuYXJ0ZXJpYWwiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJhbGwiLAogICAgICAgICJzdHlsZXJzIjogWwogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAidmlzaWJpbGl0eSI6ICJvbiIKICAgICAgICAgICAgfQogICAgICAgIF0KICAgIH0sCiAgICB7CiAgICAgICAgImZlYXR1cmVUeXBlIjogInJvYWQuYXJ0ZXJpYWwiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJnZW9tZXRyeS5maWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgImNvbG9yIjogIiNkNzcyODciCiAgICAgICAgICAgIH0sCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJsaWdodG5lc3MiOiAiNzUiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJyb2FkLmFydGVyaWFsIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAibGFiZWxzLmljb24iLAogICAgICAgICJzdHlsZXJzIjogWwogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAidmlzaWJpbGl0eSI6ICJvZmYiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJyb2FkLmxvY2FsIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiZ2VvbWV0cnkuZmlsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJsaWdodG5lc3MiOiAiNzUiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJ0cmFuc2l0IiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiYWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInZpc2liaWxpdHkiOiAib2ZmIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAidHJhbnNpdC5saW5lIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiYWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInZpc2liaWxpdHkiOiAib24iCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJ0cmFuc2l0LnN0YXRpb24uYnVzIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiYWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInZpc2liaWxpdHkiOiAib24iCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJ0cmFuc2l0LnN0YXRpb24ucmFpbCIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogIm9uIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAidHJhbnNpdC5zdGF0aW9uLnJhaWwiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJsYWJlbHMuaWNvbiIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ3ZWlnaHQiOiAiMC4wMSIKICAgICAgICAgICAgfSwKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgImh1ZSI6ICIjZmYwMDM1IgogICAgICAgICAgICB9LAogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAibGlnaHRuZXNzIjogIjAiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJ3YXRlciIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogIm9uIgogICAgICAgICAgICB9LAogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAiY29sb3IiOiAiIzgwZTRkOCIKICAgICAgICAgICAgfSwKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgImxpZ2h0bmVzcyI6ICIyNSIKICAgICAgICAgICAgfSwKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInNhdHVyYXRpb24iOiAiLTIzIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfQpd\" el_class=\"\" el_style=\"\" api_key=\"AIzaSyBda9LxQ-Wztqsk6aFI7SkcdiypnKTPfiI\"][/bt_gmaps][/bt_column][bt_column width=\"1/3\" align=\"left\" vertical_align=\"btMiddleVertical\" border=\"no_border\" cell_padding=\"btDoublePadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"#e5e5e5\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_service icon=\"s7_e638\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoMediumSize\" url=\"\" headline=\"Address\" dash=\"\" text=\"3216 W Highland Boulevard\r\nSan Diego, California\" el_class=\"\" el_style=\"\" superheadline=\"\"][/bt_service][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSemiSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_service icon=\"s7_e670\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoMediumSize\" url=\"\" headline=\"Phone\" dash=\"\" text=\"+555-40-220-6672\" el_class=\"\" el_style=\"\" superheadline=\"\"][/bt_service][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSemiSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_service icon=\"s7_e63a\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoMediumSize\" url=\"\" headline=\"Email\" dash=\"\" text=\"office@california.hotel\" el_class=\"\" el_style=\"\" superheadline=\"\"][/bt_service][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"yes\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"7/12\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"News <i>&</i> Blog\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Morbi pharetra faucibus purus, nec pretium enim luctus quis. Pellentesque aliquet venenatis ante, quis pretium neque tristique eget. Integer in luctus urna. Aenean rutrum sodales pharetra.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"5/12\"][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_latest_posts number=\"3\" category=\"\" format=\"horizontal\" post_type=\"blog\" show_excerpt=\"yes\" show_date=\"yes\" show_author=\"yes\" el_class=\"\" el_style=\"\"][/bt_latest_posts][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"321\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"0.3\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Follow us\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Find out what’s hot and new, and get discounts for being a loyal customer and a Hotel California fan.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_icons][bt_icon icon=\"fa_f09a\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f099\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f0d5\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_column][/bt_row][/bt_section]','Street view','\n ','inherit','closed','closed','','837-revision-v1','','','2021-04-07 05:33:00','2021-04-07 05:33:00','',837,'http://mpycdev.theomggroup.com/?p=1059',0,'revision','',0);
INSERT INTO `smrc_posts` VALUES (1060,1,'2021-04-07 05:35:41','2021-04-07 05:35:41','[bt_section layout=\"wide\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\"][bt_slider height=\"medium\" auto_play=\"5000\" hide_arrows=\"\" hide_paging=\"\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item image=\"1048\" el_class=\"\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1025\" el_class=\"\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1026\" el_class=\"btLightSkin\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1035\" el_class=\"btLightSkin\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1050\" el_class=\"btLightSkin\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1049\" el_class=\"btLightSkin\" el_style=\"\"][/bt_slider_item][/bt_slider][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"dark\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#000080\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\"][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\r\n\r\n<em>founded 1953 in historic Monterey, California</em>\r\n\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSemiSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"2/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Our Club\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"A non-profit organization, MPYC is a yachting and social club comprised of over 400 adult and junior members with an interest in coming together to share in boating, sailing, yacht racing and social activities. Membership is not limited to boat owners.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/3\"][/bt_column][/bt_row][bt_row][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"44\" caption_text=\"View\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption=\"Double room\" show_titles=\"no\" caption_title=\"Room details\"][bt_header superheadline=\"CORINTHIAN SPIRIT\" headline=\"Top-class racing across multiple fleets\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"cs_ea18\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9c2\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea2c\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1c\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Racing\" headline_size=\"medium\" dash=\"top\" subheadline=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer mollis viverra diam ac ornare. Donec rhoncus nisi in felis congue, at pulvinar nibh dapibus.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"43\" caption_text=\"\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"Room features\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"cs_ea18\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9c5\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1a\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1c\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"SHARING\" headline=\"Crusing\" headline_size=\"medium\" dash=\"top\" subheadline=\"Sed sodales tortor non metus iaculis, non commodo ipsum mattis. Ut at dolor elit. Proin dignissim, lacus eget ullamcorper consectetur, mauris mi mattis elit sagittis.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"42\" caption_text=\"\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"Room features\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"cs_ea30\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea18\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea2d\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1c\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"PROMOTING\" headline=\"Junior Sailing\" headline_size=\"medium\" dash=\"top\" subheadline=\"Mauris suscipit lectus pellentesque ante efficitur, at dignissim tellus maximus. Sed leo magna, faucibus non ante non, pulvinar scelerisque magna sit elis.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"41\" caption_text=\"\" size=\"medium\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"Room features\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"cs_ea18\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1b\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea21\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1c\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"COMMITTED TO\" headline=\"Stewardship\" headline_size=\"medium\" dash=\"top\" subheadline=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer mollis viverra diam ac ornare. Donec rhoncus nisi in felis congue, at pulvinar nibh dapibus.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"66\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"0.7\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"special-offers\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"323\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"width: 60px; margin-top: -28px;\"][/bt_image][bt_hr top_spaced=\"topSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"1/2\"][/bt_column][bt_column width=\"1/2\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"GET THE BEST RATE\" headline=\"Offers <i>&</i> Deals\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"If you chose to stay with us you will enjoy modern home comforts in a traditional setting. Whether you are looking for a short weekend break or a longer holiday, we offer a range of packages that we think cater for all.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"1/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"0.7\" inner_background_color=\"#ffffff\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"67\" caption_text=\"Get together\" size=\"\" shape=\"square\" url=\"special-offers\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"Family vacation\" show_titles=\"no\"][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"Get together\" headline=\"Family vacation\" headline_size=\"medium\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"fa_f207\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f13d\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f1eb\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f206\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f1ae\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\r\n\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Integer mollis viverra diam ac ornare. Donec rhoncus nisi in felis congue, at pulvinar nibh dapibus.\r\n\r\n[/bt_text][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/3\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"special-offers\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"2/3\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"0.7\" inner_background_color=\"#ffffff\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"68\" caption_text=\"Celebrate\" size=\"\" shape=\"square\" url=\"special-offers\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"Newlyweds weekend\" show_titles=\"no\"][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"Celebrate\" headline=\"Newlyweds weekend\" headline_size=\"medium\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"fa_f1ba\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f072\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f228\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\r\n\r\nSed ut metus eu neque commodo fringilla imperdiet sed nibh. Sed volutpat fermentum ligula, et maximus ex ultricies sit amet.\r\n\r\n[/bt_text][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/3\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"special-offers\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"2/3\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"0.7\" inner_background_color=\"#ffffff\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"725\" caption_text=\"Procrastinate\" size=\"\" shape=\"square\" url=\"special-offers\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"Lazy weekend\" show_titles=\"no\"][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"Procrastinate\" headline=\"Lazy weekend\" headline_size=\"medium\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"fa_f1ba\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f072\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f1eb\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f000\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f185\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\r\n\r\nPhasellus non bibendum augue. Duis nibh felis, volutpat vitae pulvinar at, tincidunt eget mi. Donec venenatis condimentum fermentum.\r\n\r\n[/bt_text][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/3\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"special-offers\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"2/3\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#e5e5e5\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"322\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"width: 60px; margin-top: -28px;\"][/bt_image][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"7/12\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Activities\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Phasellus blandit a massa vitae congue. Nam ex massa, mattis ut sapien sit amet, consequat sodales risus. Sed interdum, ligula et lobortis faucibus, sem sem placerat augue, eget scelerisque turpis lorem et tellus.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][/bt_column][bt_column width=\"5/12\"][/bt_column][/bt_row][/bt_section][bt_section layout=\"wide\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"dark\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#e5e5e5\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"73\" caption_title=\"Beach voleyball\" caption_text=\"Enjoy the game\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"ENJOY THE GAME\" headline=\"Beach Voleyball\" headline_size=\"medium\" dash=\"top\" subheadline=\"Beach volleyball is ouy visitors favourite sport, highly enjoyable for everyone young or old. Just gather your team on the beach and find the opponents in a matter of minutes. And show what you can do, be a winner!\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_e9ac\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e040\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e041\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"74\" el_class=\"\" el_style=\"\"][bt_image image=\"74\" caption_title=\"Horseback riding\" caption_text=\"Enjoy the beach\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Enjoy the beach\" headline=\"Horseback riding\" headline_size=\"medium\" dash=\"top\" subheadline=\"How about a lazy afternoon with your friends on a hors, while the sun goes down? If you want to chill out, our horse riding team will teach you in a matter of minutes and help you wind down after a good day on the sun.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_ea13\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1e\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e05b\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"75\" el_class=\"\" el_style=\"\"][bt_image image=\"75\" caption_title=\"Waterskiing\" caption_text=\"Enjoy the sea\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Enjoy the sea\" headline=\"Waterskiing\" headline_size=\"medium\" dash=\"top\" subheadline=\"If you are a big fan of water sports, then why not try the waterskiing or waterboarding? At hotel California you will find there\'s an amateur champoionship every year. Rated as the most fun activity by our visitors.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_e05b\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9a3\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9e5\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"76\" el_class=\"\" el_style=\"\"][bt_image image=\"76\" caption_title=\"Paragliding\" caption_text=\"Enjoy the sky\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Enjoy the sky\" headline=\"Parasailing\" headline_size=\"medium\" dash=\"top\" subheadline=\"Enjoy the thrill on the sky with our parasailing team and feel the California sun on your face. The team will help you get your adrenaline high and will be capuring your moments on a high-definition camera.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_ea2f\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"s7_e67b\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9f3\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_slider height=\"auto\" auto_play=\"\" hide_arrows=\"\" hide_paging=\"btSliderHidePaging\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/6\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"78\" caption_text=\"\" size=\"\" shape=\"circle\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][bt_header superheadline=\"June 2016\" headline=\"Alan Jones\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][/bt_column_inner][bt_column_inner width=\"5/6\"][bt_text]\r\n<blockquote>If you chose to stay with us you will enjoy modern home comforts in a traditional setting. Whether you are looking for a short weekend break or a longer holiday, we offer a range of packages that we think cater for all.</blockquote>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/6\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"447\" caption_text=\"\" size=\"\" shape=\"circle\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][/bt_image][bt_header superheadline=\"July 2016\" headline=\"Adrianne White\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][bt_column_inner width=\"5/6\"][bt_text]\r\n<blockquote>If you chose to stay with us you will enjoy modern home comforts in a traditional setting. Whether you are looking for a short weekend break or a longer holiday, we offer a range of packages that we think cater for all.</blockquote>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/1\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_text]\r\n<blockquote>Our mission: to connect our members and our diverse community to the boundless recreational opportunities and proper stewardship of the Monterey Bay and the Pacific Ocean.</blockquote>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][/bt_slider][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/3\" align=\"left\" vertical_align=\"btMiddleVertical\" border=\"no_border\" cell_padding=\"btDoublePadding\" animation=\"animate animate-fadein\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"#e5e5e5\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"IN A NUTSHELL\" headline=\"Hotel California\" headline_size=\"large\" dash=\"bottom\" subheadline=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer mollis viverra diam ac ornare. Donec rhoncus nisi in felis congue, at pulvinar nibh dapibus.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_button text=\"READ MORE\" icon=\"no_icon\" url=\"\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"ExtraSmall\" width=\"Normal\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"2/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_slider height=\"auto\" auto_play=\"\" hide_arrows=\"\" hide_paging=\"btSliderHidePaging\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"81\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"82\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"83\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"84\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"85\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][/bt_slider][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\"][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"2/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_gmaps latitude=\"36.602383\" longitude=\"-121.879245 \" zoom=\"11\" icon=\"342\" height=\"400px\" primary_color=\"\" secondary_color=\"\" water_color=\"\" custom_style=\"WwogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJhZG1pbmlzdHJhdGl2ZSIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImxhYmVscy50ZXh0LmZpbGwiLAogICAgICAgICJzdHlsZXJzIjogWwogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAiY29sb3IiOiAiIzQ0NDQ0NCIKICAgICAgICAgICAgfQogICAgICAgIF0KICAgIH0sCiAgICB7CiAgICAgICAgImZlYXR1cmVUeXBlIjogImxhbmRzY2FwZSIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJjb2xvciI6ICIjZjJmMmYyIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAicG9pIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiYWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInZpc2liaWxpdHkiOiAib2ZmIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAicm9hZCIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJzYXR1cmF0aW9uIjogLTEwMAogICAgICAgICAgICB9LAogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAibGlnaHRuZXNzIjogNDUKICAgICAgICAgICAgfQogICAgICAgIF0KICAgIH0sCiAgICB7CiAgICAgICAgImZlYXR1cmVUeXBlIjogInJvYWQuaGlnaHdheSIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogInNpbXBsaWZpZWQiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJyb2FkLmhpZ2h3YXkiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJnZW9tZXRyeSIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogInNpbXBsaWZpZWQiCiAgICAgICAgICAgIH0sCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJjb2xvciI6ICIjZDc3Mjg3IgogICAgICAgICAgICB9LAogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAibGlnaHRuZXNzIjogIjAiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJyb2FkLmhpZ2h3YXkiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJsYWJlbHMudGV4dCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogIm9uIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAicm9hZC5oaWdod2F5IiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAibGFiZWxzLmljb24iLAogICAgICAgICJzdHlsZXJzIjogWwogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAidmlzaWJpbGl0eSI6ICJvbiIKICAgICAgICAgICAgfQogICAgICAgIF0KICAgIH0sCiAgICB7CiAgICAgICAgImZlYXR1cmVUeXBlIjogInJvYWQuYXJ0ZXJpYWwiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJhbGwiLAogICAgICAgICJzdHlsZXJzIjogWwogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAidmlzaWJpbGl0eSI6ICJvbiIKICAgICAgICAgICAgfQogICAgICAgIF0KICAgIH0sCiAgICB7CiAgICAgICAgImZlYXR1cmVUeXBlIjogInJvYWQuYXJ0ZXJpYWwiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJnZW9tZXRyeS5maWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgImNvbG9yIjogIiNkNzcyODciCiAgICAgICAgICAgIH0sCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJsaWdodG5lc3MiOiAiNzUiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJyb2FkLmFydGVyaWFsIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAibGFiZWxzLmljb24iLAogICAgICAgICJzdHlsZXJzIjogWwogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAidmlzaWJpbGl0eSI6ICJvZmYiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJyb2FkLmxvY2FsIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiZ2VvbWV0cnkuZmlsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJsaWdodG5lc3MiOiAiNzUiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJ0cmFuc2l0IiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiYWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInZpc2liaWxpdHkiOiAib2ZmIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAidHJhbnNpdC5saW5lIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiYWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInZpc2liaWxpdHkiOiAib24iCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJ0cmFuc2l0LnN0YXRpb24uYnVzIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiYWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInZpc2liaWxpdHkiOiAib24iCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJ0cmFuc2l0LnN0YXRpb24ucmFpbCIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogIm9uIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAidHJhbnNpdC5zdGF0aW9uLnJhaWwiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJsYWJlbHMuaWNvbiIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ3ZWlnaHQiOiAiMC4wMSIKICAgICAgICAgICAgfSwKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgImh1ZSI6ICIjZmYwMDM1IgogICAgICAgICAgICB9LAogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAibGlnaHRuZXNzIjogIjAiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJ3YXRlciIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogIm9uIgogICAgICAgICAgICB9LAogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAiY29sb3IiOiAiIzgwZTRkOCIKICAgICAgICAgICAgfSwKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgImxpZ2h0bmVzcyI6ICIyNSIKICAgICAgICAgICAgfSwKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInNhdHVyYXRpb24iOiAiLTIzIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfQpd\" el_class=\"\" el_style=\"\" api_key=\"AIzaSyBda9LxQ-Wztqsk6aFI7SkcdiypnKTPfiI\"][/bt_gmaps][/bt_column][bt_column width=\"1/3\" align=\"left\" vertical_align=\"btMiddleVertical\" border=\"no_border\" cell_padding=\"btDoublePadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"#e5e5e5\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_service icon=\"s7_e638\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoMediumSize\" url=\"\" headline=\"Address\" dash=\"\" text=\"3216 W Highland Boulevard\r\nSan Diego, California\" el_class=\"\" el_style=\"\" superheadline=\"\"][/bt_service][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSemiSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_service icon=\"s7_e670\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoMediumSize\" url=\"\" headline=\"Phone\" dash=\"\" text=\"+555-40-220-6672\" el_class=\"\" el_style=\"\" superheadline=\"\"][/bt_service][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSemiSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_service icon=\"s7_e63a\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoMediumSize\" url=\"\" headline=\"Email\" dash=\"\" text=\"office@california.hotel\" el_class=\"\" el_style=\"\" superheadline=\"\"][/bt_service][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"yes\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"7/12\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"News <i>&</i> Blog\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Morbi pharetra faucibus purus, nec pretium enim luctus quis. Pellentesque aliquet venenatis ante, quis pretium neque tristique eget. Integer in luctus urna. Aenean rutrum sodales pharetra.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"5/12\"][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_latest_posts number=\"3\" category=\"\" format=\"horizontal\" post_type=\"blog\" show_excerpt=\"yes\" show_date=\"yes\" show_author=\"yes\" el_class=\"\" el_style=\"\"][/bt_latest_posts][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"321\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"0.3\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Follow us\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Find out what’s hot and new, and get discounts for being a loyal customer and a Hotel California fan.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_icons][bt_icon icon=\"fa_f09a\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f099\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f0d5\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_column][/bt_row][/bt_section]','Street view','\n ','inherit','closed','closed','','837-revision-v1','','','2021-04-07 05:35:41','2021-04-07 05:35:41','',837,'http://mpycdev.theomggroup.com/?p=1060',0,'revision','',0);
INSERT INTO `smrc_posts` VALUES (1061,1,'2021-04-07 05:37:06','2021-04-07 05:37:06','[bt_section layout=\"wide\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\"][bt_slider height=\"medium\" auto_play=\"5000\" hide_arrows=\"\" hide_paging=\"\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item image=\"1048\" el_class=\"\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1025\" el_class=\"\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1026\" el_class=\"btLightSkin\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1035\" el_class=\"btLightSkin\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1050\" el_class=\"btLightSkin\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1049\" el_class=\"btLightSkin\" el_style=\"\"][/bt_slider_item][/bt_slider][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"dark\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#000080\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\"][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\r\n\r\n<em>founded 1953 in historic Monterey, California</em>\r\n\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSemiSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"2/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Our Club\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"A non-profit organization, MPYC is a yachting and social club comprised of over 400 adult and junior members with an interest in coming together to share in boating, sailing, yacht racing and social activities. Membership is not limited to boat owners.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/3\"][/bt_column][/bt_row][bt_row][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"44\" caption_text=\"View\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption=\"Double room\" show_titles=\"no\" caption_title=\"Room details\"][bt_header superheadline=\"CORINTHIAN SPIRIT\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Racing\" headline_size=\"medium\" dash=\"top\" subheadline=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer mollis viverra diam ac ornare. Donec rhoncus nisi in felis congue, at pulvinar nibh dapibus.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"43\" caption_text=\"\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"Room features\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"cs_ea18\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9c5\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1a\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1c\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"SHARING\" headline=\"Crusing\" headline_size=\"medium\" dash=\"top\" subheadline=\"Sed sodales tortor non metus iaculis, non commodo ipsum mattis. Ut at dolor elit. Proin dignissim, lacus eget ullamcorper consectetur, mauris mi mattis elit sagittis.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"42\" caption_text=\"\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"Room features\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"cs_ea30\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea18\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea2d\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1c\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"PROMOTING\" headline=\"Junior Sailing\" headline_size=\"medium\" dash=\"top\" subheadline=\"Mauris suscipit lectus pellentesque ante efficitur, at dignissim tellus maximus. Sed leo magna, faucibus non ante non, pulvinar scelerisque magna sit elis.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"41\" caption_text=\"\" size=\"medium\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"Room features\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"cs_ea18\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1b\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea21\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1c\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"COMMITTED TO\" headline=\"Stewardship\" headline_size=\"medium\" dash=\"top\" subheadline=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer mollis viverra diam ac ornare. Donec rhoncus nisi in felis congue, at pulvinar nibh dapibus.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"66\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"0.7\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"special-offers\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"323\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"width: 60px; margin-top: -28px;\"][/bt_image][bt_hr top_spaced=\"topSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"1/2\"][/bt_column][bt_column width=\"1/2\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"GET THE BEST RATE\" headline=\"Offers <i>&</i> Deals\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"If you chose to stay with us you will enjoy modern home comforts in a traditional setting. Whether you are looking for a short weekend break or a longer holiday, we offer a range of packages that we think cater for all.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"1/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"0.7\" inner_background_color=\"#ffffff\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"67\" caption_text=\"Get together\" size=\"\" shape=\"square\" url=\"special-offers\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"Family vacation\" show_titles=\"no\"][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"Get together\" headline=\"Family vacation\" headline_size=\"medium\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"fa_f207\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f13d\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f1eb\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f206\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f1ae\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\r\n\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Integer mollis viverra diam ac ornare. Donec rhoncus nisi in felis congue, at pulvinar nibh dapibus.\r\n\r\n[/bt_text][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/3\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"special-offers\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"2/3\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"0.7\" inner_background_color=\"#ffffff\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"68\" caption_text=\"Celebrate\" size=\"\" shape=\"square\" url=\"special-offers\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"Newlyweds weekend\" show_titles=\"no\"][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"Celebrate\" headline=\"Newlyweds weekend\" headline_size=\"medium\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"fa_f1ba\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f072\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f228\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\r\n\r\nSed ut metus eu neque commodo fringilla imperdiet sed nibh. Sed volutpat fermentum ligula, et maximus ex ultricies sit amet.\r\n\r\n[/bt_text][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/3\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"special-offers\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"2/3\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"0.7\" inner_background_color=\"#ffffff\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"725\" caption_text=\"Procrastinate\" size=\"\" shape=\"square\" url=\"special-offers\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"Lazy weekend\" show_titles=\"no\"][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"Procrastinate\" headline=\"Lazy weekend\" headline_size=\"medium\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"fa_f1ba\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f072\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f1eb\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f000\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f185\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\r\n\r\nPhasellus non bibendum augue. Duis nibh felis, volutpat vitae pulvinar at, tincidunt eget mi. Donec venenatis condimentum fermentum.\r\n\r\n[/bt_text][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/3\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"special-offers\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"2/3\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#e5e5e5\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"322\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"width: 60px; margin-top: -28px;\"][/bt_image][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"7/12\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Activities\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Phasellus blandit a massa vitae congue. Nam ex massa, mattis ut sapien sit amet, consequat sodales risus. Sed interdum, ligula et lobortis faucibus, sem sem placerat augue, eget scelerisque turpis lorem et tellus.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][/bt_column][bt_column width=\"5/12\"][/bt_column][/bt_row][/bt_section][bt_section layout=\"wide\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"dark\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#e5e5e5\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"73\" caption_title=\"Beach voleyball\" caption_text=\"Enjoy the game\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"ENJOY THE GAME\" headline=\"Beach Voleyball\" headline_size=\"medium\" dash=\"top\" subheadline=\"Beach volleyball is ouy visitors favourite sport, highly enjoyable for everyone young or old. Just gather your team on the beach and find the opponents in a matter of minutes. And show what you can do, be a winner!\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_e9ac\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e040\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e041\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"74\" el_class=\"\" el_style=\"\"][bt_image image=\"74\" caption_title=\"Horseback riding\" caption_text=\"Enjoy the beach\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Enjoy the beach\" headline=\"Horseback riding\" headline_size=\"medium\" dash=\"top\" subheadline=\"How about a lazy afternoon with your friends on a hors, while the sun goes down? If you want to chill out, our horse riding team will teach you in a matter of minutes and help you wind down after a good day on the sun.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_ea13\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1e\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e05b\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"75\" el_class=\"\" el_style=\"\"][bt_image image=\"75\" caption_title=\"Waterskiing\" caption_text=\"Enjoy the sea\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Enjoy the sea\" headline=\"Waterskiing\" headline_size=\"medium\" dash=\"top\" subheadline=\"If you are a big fan of water sports, then why not try the waterskiing or waterboarding? At hotel California you will find there\'s an amateur champoionship every year. Rated as the most fun activity by our visitors.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_e05b\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9a3\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9e5\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"76\" el_class=\"\" el_style=\"\"][bt_image image=\"76\" caption_title=\"Paragliding\" caption_text=\"Enjoy the sky\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Enjoy the sky\" headline=\"Parasailing\" headline_size=\"medium\" dash=\"top\" subheadline=\"Enjoy the thrill on the sky with our parasailing team and feel the California sun on your face. The team will help you get your adrenaline high and will be capuring your moments on a high-definition camera.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_ea2f\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"s7_e67b\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9f3\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_slider height=\"auto\" auto_play=\"\" hide_arrows=\"\" hide_paging=\"btSliderHidePaging\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/6\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"78\" caption_text=\"\" size=\"\" shape=\"circle\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][bt_header superheadline=\"June 2016\" headline=\"Alan Jones\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][/bt_column_inner][bt_column_inner width=\"5/6\"][bt_text]\r\n<blockquote>If you chose to stay with us you will enjoy modern home comforts in a traditional setting. Whether you are looking for a short weekend break or a longer holiday, we offer a range of packages that we think cater for all.</blockquote>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/6\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"447\" caption_text=\"\" size=\"\" shape=\"circle\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][/bt_image][bt_header superheadline=\"July 2016\" headline=\"Adrianne White\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][bt_column_inner width=\"5/6\"][bt_text]\r\n<blockquote>If you chose to stay with us you will enjoy modern home comforts in a traditional setting. Whether you are looking for a short weekend break or a longer holiday, we offer a range of packages that we think cater for all.</blockquote>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/1\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_text]\r\n<blockquote>Our mission: to connect our members and our diverse community to the boundless recreational opportunities and proper stewardship of the Monterey Bay and the Pacific Ocean.</blockquote>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][/bt_slider][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/3\" align=\"left\" vertical_align=\"btMiddleVertical\" border=\"no_border\" cell_padding=\"btDoublePadding\" animation=\"animate animate-fadein\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"#e5e5e5\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"IN A NUTSHELL\" headline=\"Hotel California\" headline_size=\"large\" dash=\"bottom\" subheadline=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer mollis viverra diam ac ornare. Donec rhoncus nisi in felis congue, at pulvinar nibh dapibus.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_button text=\"READ MORE\" icon=\"no_icon\" url=\"\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"ExtraSmall\" width=\"Normal\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"2/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_slider height=\"auto\" auto_play=\"\" hide_arrows=\"\" hide_paging=\"btSliderHidePaging\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"81\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"82\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"83\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"84\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"85\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][/bt_slider][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\"][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"2/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_gmaps latitude=\"36.602383\" longitude=\"-121.879245 \" zoom=\"11\" icon=\"342\" height=\"400px\" primary_color=\"\" secondary_color=\"\" water_color=\"\" custom_style=\"WwogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJhZG1pbmlzdHJhdGl2ZSIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImxhYmVscy50ZXh0LmZpbGwiLAogICAgICAgICJzdHlsZXJzIjogWwogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAiY29sb3IiOiAiIzQ0NDQ0NCIKICAgICAgICAgICAgfQogICAgICAgIF0KICAgIH0sCiAgICB7CiAgICAgICAgImZlYXR1cmVUeXBlIjogImxhbmRzY2FwZSIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJjb2xvciI6ICIjZjJmMmYyIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAicG9pIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiYWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInZpc2liaWxpdHkiOiAib2ZmIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAicm9hZCIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJzYXR1cmF0aW9uIjogLTEwMAogICAgICAgICAgICB9LAogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAibGlnaHRuZXNzIjogNDUKICAgICAgICAgICAgfQogICAgICAgIF0KICAgIH0sCiAgICB7CiAgICAgICAgImZlYXR1cmVUeXBlIjogInJvYWQuaGlnaHdheSIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogInNpbXBsaWZpZWQiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJyb2FkLmhpZ2h3YXkiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJnZW9tZXRyeSIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogInNpbXBsaWZpZWQiCiAgICAgICAgICAgIH0sCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJjb2xvciI6ICIjZDc3Mjg3IgogICAgICAgICAgICB9LAogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAibGlnaHRuZXNzIjogIjAiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJyb2FkLmhpZ2h3YXkiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJsYWJlbHMudGV4dCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogIm9uIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAicm9hZC5oaWdod2F5IiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAibGFiZWxzLmljb24iLAogICAgICAgICJzdHlsZXJzIjogWwogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAidmlzaWJpbGl0eSI6ICJvbiIKICAgICAgICAgICAgfQogICAgICAgIF0KICAgIH0sCiAgICB7CiAgICAgICAgImZlYXR1cmVUeXBlIjogInJvYWQuYXJ0ZXJpYWwiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJhbGwiLAogICAgICAgICJzdHlsZXJzIjogWwogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAidmlzaWJpbGl0eSI6ICJvbiIKICAgICAgICAgICAgfQogICAgICAgIF0KICAgIH0sCiAgICB7CiAgICAgICAgImZlYXR1cmVUeXBlIjogInJvYWQuYXJ0ZXJpYWwiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJnZW9tZXRyeS5maWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgImNvbG9yIjogIiNkNzcyODciCiAgICAgICAgICAgIH0sCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJsaWdodG5lc3MiOiAiNzUiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJyb2FkLmFydGVyaWFsIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAibGFiZWxzLmljb24iLAogICAgICAgICJzdHlsZXJzIjogWwogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAidmlzaWJpbGl0eSI6ICJvZmYiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJyb2FkLmxvY2FsIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiZ2VvbWV0cnkuZmlsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJsaWdodG5lc3MiOiAiNzUiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJ0cmFuc2l0IiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiYWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInZpc2liaWxpdHkiOiAib2ZmIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAidHJhbnNpdC5saW5lIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiYWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInZpc2liaWxpdHkiOiAib24iCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJ0cmFuc2l0LnN0YXRpb24uYnVzIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiYWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInZpc2liaWxpdHkiOiAib24iCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJ0cmFuc2l0LnN0YXRpb24ucmFpbCIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogIm9uIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAidHJhbnNpdC5zdGF0aW9uLnJhaWwiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJsYWJlbHMuaWNvbiIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ3ZWlnaHQiOiAiMC4wMSIKICAgICAgICAgICAgfSwKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgImh1ZSI6ICIjZmYwMDM1IgogICAgICAgICAgICB9LAogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAibGlnaHRuZXNzIjogIjAiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJ3YXRlciIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogIm9uIgogICAgICAgICAgICB9LAogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAiY29sb3IiOiAiIzgwZTRkOCIKICAgICAgICAgICAgfSwKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgImxpZ2h0bmVzcyI6ICIyNSIKICAgICAgICAgICAgfSwKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInNhdHVyYXRpb24iOiAiLTIzIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfQpd\" el_class=\"\" el_style=\"\" api_key=\"AIzaSyBda9LxQ-Wztqsk6aFI7SkcdiypnKTPfiI\"][/bt_gmaps][/bt_column][bt_column width=\"1/3\" align=\"left\" vertical_align=\"btMiddleVertical\" border=\"no_border\" cell_padding=\"btDoublePadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"#e5e5e5\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_service icon=\"s7_e638\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoMediumSize\" url=\"\" headline=\"Address\" dash=\"\" text=\"3216 W Highland Boulevard\r\nSan Diego, California\" el_class=\"\" el_style=\"\" superheadline=\"\"][/bt_service][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSemiSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_service icon=\"s7_e670\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoMediumSize\" url=\"\" headline=\"Phone\" dash=\"\" text=\"+555-40-220-6672\" el_class=\"\" el_style=\"\" superheadline=\"\"][/bt_service][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSemiSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_service icon=\"s7_e63a\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoMediumSize\" url=\"\" headline=\"Email\" dash=\"\" text=\"office@california.hotel\" el_class=\"\" el_style=\"\" superheadline=\"\"][/bt_service][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"yes\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"7/12\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"News <i>&</i> Blog\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Morbi pharetra faucibus purus, nec pretium enim luctus quis. Pellentesque aliquet venenatis ante, quis pretium neque tristique eget. Integer in luctus urna. Aenean rutrum sodales pharetra.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"5/12\"][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_latest_posts number=\"3\" category=\"\" format=\"horizontal\" post_type=\"blog\" show_excerpt=\"yes\" show_date=\"yes\" show_author=\"yes\" el_class=\"\" el_style=\"\"][/bt_latest_posts][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"321\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"0.3\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Follow us\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Find out what’s hot and new, and get discounts for being a loyal customer and a Hotel California fan.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_icons][bt_icon icon=\"fa_f09a\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f099\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f0d5\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_column][/bt_row][/bt_section]','Street view','\n ','inherit','closed','closed','','837-revision-v1','','','2021-04-07 05:37:06','2021-04-07 05:37:06','',837,'http://mpycdev.theomggroup.com/?p=1061',0,'revision','',0);
INSERT INTO `smrc_posts` VALUES (1062,1,'2021-04-07 05:40:13','2021-04-07 05:40:13','[bt_section layout=\"wide\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\"][bt_slider height=\"medium\" auto_play=\"5000\" hide_arrows=\"\" hide_paging=\"\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item image=\"1048\" el_class=\"\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1025\" el_class=\"\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1026\" el_class=\"btLightSkin\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1035\" el_class=\"btLightSkin\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1050\" el_class=\"btLightSkin\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1049\" el_class=\"btLightSkin\" el_style=\"\"][/bt_slider_item][/bt_slider][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"dark\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#000080\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\"][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\r\n\r\n<em>founded 1953 in historic Monterey, California</em>\r\n\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSemiSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"2/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Our Club\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"A non-profit organization, MPYC is a yachting and social club comprised of over 400 adult and junior members with an interest in coming together to share in boating, sailing, yacht racing and social activities. Membership is not limited to boat owners.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/3\"][/bt_column][/bt_row][bt_row][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"44\" caption_text=\"View\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption=\"Double room\" show_titles=\"no\" caption_title=\"Room details\"][bt_header superheadline=\"CORINTHIAN SPIRIT\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Racing\" headline_size=\"medium\" dash=\"top\" subheadline=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer mollis viverra diam ac ornare. Donec rhoncus nisi in felis congue, at pulvinar nibh dapibus.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"43\" caption_text=\"\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"SPECTACULAR\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"SHARING\" headline=\"Crusing\" headline_size=\"medium\" dash=\"top\" subheadline=\"Sed sodales tortor non metus iaculis, non commodo ipsum mattis. Ut at dolor elit. Proin dignissim, lacus eget ullamcorper consectetur, mauris mi mattis elit sagittis.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"42\" caption_text=\"\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"OUR FUTURE\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"PROMOTING\" headline=\"Junior Sailing\" headline_size=\"medium\" dash=\"top\" subheadline=\"Mauris suscipit lectus pellentesque ante efficitur, at dignissim tellus maximus. Sed leo magna, faucibus non ante non, pulvinar scelerisque magna sit elis.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"41\" caption_text=\"\" size=\"medium\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"OUR COMMITMENT\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"COMMITTED TO\" headline=\"Stewardship\" headline_size=\"medium\" dash=\"top\" subheadline=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer mollis viverra diam ac ornare. Donec rhoncus nisi in felis congue, at pulvinar nibh dapibus.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"66\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"0.7\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"special-offers\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"323\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"width: 60px; margin-top: -28px;\"][/bt_image][bt_hr top_spaced=\"topSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"1/2\"][/bt_column][bt_column width=\"1/2\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"GET THE BEST RATE\" headline=\"Offers <i>&</i> Deals\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"If you chose to stay with us you will enjoy modern home comforts in a traditional setting. Whether you are looking for a short weekend break or a longer holiday, we offer a range of packages that we think cater for all.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"1/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"0.7\" inner_background_color=\"#ffffff\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"67\" caption_text=\"Get together\" size=\"\" shape=\"square\" url=\"special-offers\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"Family vacation\" show_titles=\"no\"][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"Get together\" headline=\"Family vacation\" headline_size=\"medium\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"fa_f207\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f13d\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f1eb\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f206\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f1ae\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\r\n\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Integer mollis viverra diam ac ornare. Donec rhoncus nisi in felis congue, at pulvinar nibh dapibus.\r\n\r\n[/bt_text][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/3\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"special-offers\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"2/3\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"0.7\" inner_background_color=\"#ffffff\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"68\" caption_text=\"Celebrate\" size=\"\" shape=\"square\" url=\"special-offers\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"Newlyweds weekend\" show_titles=\"no\"][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"Celebrate\" headline=\"Newlyweds weekend\" headline_size=\"medium\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"fa_f1ba\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f072\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f228\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\r\n\r\nSed ut metus eu neque commodo fringilla imperdiet sed nibh. Sed volutpat fermentum ligula, et maximus ex ultricies sit amet.\r\n\r\n[/bt_text][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/3\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"special-offers\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"2/3\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"0.7\" inner_background_color=\"#ffffff\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"725\" caption_text=\"Procrastinate\" size=\"\" shape=\"square\" url=\"special-offers\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"Lazy weekend\" show_titles=\"no\"][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"Procrastinate\" headline=\"Lazy weekend\" headline_size=\"medium\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"fa_f1ba\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f072\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f1eb\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f000\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f185\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\r\n\r\nPhasellus non bibendum augue. Duis nibh felis, volutpat vitae pulvinar at, tincidunt eget mi. Donec venenatis condimentum fermentum.\r\n\r\n[/bt_text][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/3\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"special-offers\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"2/3\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#e5e5e5\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"322\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"width: 60px; margin-top: -28px;\"][/bt_image][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"7/12\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Activities\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Phasellus blandit a massa vitae congue. Nam ex massa, mattis ut sapien sit amet, consequat sodales risus. Sed interdum, ligula et lobortis faucibus, sem sem placerat augue, eget scelerisque turpis lorem et tellus.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][/bt_column][bt_column width=\"5/12\"][/bt_column][/bt_row][/bt_section][bt_section layout=\"wide\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"dark\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#e5e5e5\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"73\" caption_title=\"Beach voleyball\" caption_text=\"Enjoy the game\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"ENJOY THE GAME\" headline=\"Beach Voleyball\" headline_size=\"medium\" dash=\"top\" subheadline=\"Beach volleyball is ouy visitors favourite sport, highly enjoyable for everyone young or old. Just gather your team on the beach and find the opponents in a matter of minutes. And show what you can do, be a winner!\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_e9ac\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e040\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e041\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"74\" el_class=\"\" el_style=\"\"][bt_image image=\"74\" caption_title=\"Horseback riding\" caption_text=\"Enjoy the beach\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Enjoy the beach\" headline=\"Horseback riding\" headline_size=\"medium\" dash=\"top\" subheadline=\"How about a lazy afternoon with your friends on a hors, while the sun goes down? If you want to chill out, our horse riding team will teach you in a matter of minutes and help you wind down after a good day on the sun.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_ea13\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1e\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e05b\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"75\" el_class=\"\" el_style=\"\"][bt_image image=\"75\" caption_title=\"Waterskiing\" caption_text=\"Enjoy the sea\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Enjoy the sea\" headline=\"Waterskiing\" headline_size=\"medium\" dash=\"top\" subheadline=\"If you are a big fan of water sports, then why not try the waterskiing or waterboarding? At hotel California you will find there\'s an amateur champoionship every year. Rated as the most fun activity by our visitors.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_e05b\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9a3\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9e5\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"76\" el_class=\"\" el_style=\"\"][bt_image image=\"76\" caption_title=\"Paragliding\" caption_text=\"Enjoy the sky\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Enjoy the sky\" headline=\"Parasailing\" headline_size=\"medium\" dash=\"top\" subheadline=\"Enjoy the thrill on the sky with our parasailing team and feel the California sun on your face. The team will help you get your adrenaline high and will be capuring your moments on a high-definition camera.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_ea2f\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"s7_e67b\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9f3\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_slider height=\"auto\" auto_play=\"\" hide_arrows=\"\" hide_paging=\"btSliderHidePaging\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/6\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"78\" caption_text=\"\" size=\"\" shape=\"circle\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][bt_header superheadline=\"June 2016\" headline=\"Alan Jones\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][/bt_column_inner][bt_column_inner width=\"5/6\"][bt_text]\r\n<blockquote>If you chose to stay with us you will enjoy modern home comforts in a traditional setting. Whether you are looking for a short weekend break or a longer holiday, we offer a range of packages that we think cater for all.</blockquote>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/6\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"447\" caption_text=\"\" size=\"\" shape=\"circle\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][/bt_image][bt_header superheadline=\"July 2016\" headline=\"Adrianne White\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][bt_column_inner width=\"5/6\"][bt_text]\r\n<blockquote>If you chose to stay with us you will enjoy modern home comforts in a traditional setting. Whether you are looking for a short weekend break or a longer holiday, we offer a range of packages that we think cater for all.</blockquote>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/1\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_text]\r\n<blockquote>Our mission: to connect our members and our diverse community to the boundless recreational opportunities and proper stewardship of the Monterey Bay and the Pacific Ocean.</blockquote>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][/bt_slider][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/3\" align=\"left\" vertical_align=\"btMiddleVertical\" border=\"no_border\" cell_padding=\"btDoublePadding\" animation=\"animate animate-fadein\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"#e5e5e5\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"IN A NUTSHELL\" headline=\"Hotel California\" headline_size=\"large\" dash=\"bottom\" subheadline=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer mollis viverra diam ac ornare. Donec rhoncus nisi in felis congue, at pulvinar nibh dapibus.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_button text=\"READ MORE\" icon=\"no_icon\" url=\"\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"ExtraSmall\" width=\"Normal\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"2/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_slider height=\"auto\" auto_play=\"\" hide_arrows=\"\" hide_paging=\"btSliderHidePaging\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"81\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"82\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"83\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"84\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"85\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][/bt_slider][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\"][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"2/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_gmaps latitude=\"36.602383\" longitude=\"-121.879245 \" zoom=\"11\" icon=\"342\" height=\"400px\" primary_color=\"\" secondary_color=\"\" water_color=\"\" custom_style=\"WwogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJhZG1pbmlzdHJhdGl2ZSIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImxhYmVscy50ZXh0LmZpbGwiLAogICAgICAgICJzdHlsZXJzIjogWwogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAiY29sb3IiOiAiIzQ0NDQ0NCIKICAgICAgICAgICAgfQogICAgICAgIF0KICAgIH0sCiAgICB7CiAgICAgICAgImZlYXR1cmVUeXBlIjogImxhbmRzY2FwZSIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJjb2xvciI6ICIjZjJmMmYyIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAicG9pIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiYWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInZpc2liaWxpdHkiOiAib2ZmIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAicm9hZCIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJzYXR1cmF0aW9uIjogLTEwMAogICAgICAgICAgICB9LAogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAibGlnaHRuZXNzIjogNDUKICAgICAgICAgICAgfQogICAgICAgIF0KICAgIH0sCiAgICB7CiAgICAgICAgImZlYXR1cmVUeXBlIjogInJvYWQuaGlnaHdheSIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogInNpbXBsaWZpZWQiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJyb2FkLmhpZ2h3YXkiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJnZW9tZXRyeSIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogInNpbXBsaWZpZWQiCiAgICAgICAgICAgIH0sCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJjb2xvciI6ICIjZDc3Mjg3IgogICAgICAgICAgICB9LAogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAibGlnaHRuZXNzIjogIjAiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJyb2FkLmhpZ2h3YXkiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJsYWJlbHMudGV4dCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogIm9uIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAicm9hZC5oaWdod2F5IiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAibGFiZWxzLmljb24iLAogICAgICAgICJzdHlsZXJzIjogWwogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAidmlzaWJpbGl0eSI6ICJvbiIKICAgICAgICAgICAgfQogICAgICAgIF0KICAgIH0sCiAgICB7CiAgICAgICAgImZlYXR1cmVUeXBlIjogInJvYWQuYXJ0ZXJpYWwiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJhbGwiLAogICAgICAgICJzdHlsZXJzIjogWwogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAidmlzaWJpbGl0eSI6ICJvbiIKICAgICAgICAgICAgfQogICAgICAgIF0KICAgIH0sCiAgICB7CiAgICAgICAgImZlYXR1cmVUeXBlIjogInJvYWQuYXJ0ZXJpYWwiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJnZW9tZXRyeS5maWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgImNvbG9yIjogIiNkNzcyODciCiAgICAgICAgICAgIH0sCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJsaWdodG5lc3MiOiAiNzUiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJyb2FkLmFydGVyaWFsIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAibGFiZWxzLmljb24iLAogICAgICAgICJzdHlsZXJzIjogWwogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAidmlzaWJpbGl0eSI6ICJvZmYiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJyb2FkLmxvY2FsIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiZ2VvbWV0cnkuZmlsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJsaWdodG5lc3MiOiAiNzUiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJ0cmFuc2l0IiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiYWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInZpc2liaWxpdHkiOiAib2ZmIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAidHJhbnNpdC5saW5lIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiYWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInZpc2liaWxpdHkiOiAib24iCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJ0cmFuc2l0LnN0YXRpb24uYnVzIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiYWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInZpc2liaWxpdHkiOiAib24iCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJ0cmFuc2l0LnN0YXRpb24ucmFpbCIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogIm9uIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAidHJhbnNpdC5zdGF0aW9uLnJhaWwiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJsYWJlbHMuaWNvbiIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ3ZWlnaHQiOiAiMC4wMSIKICAgICAgICAgICAgfSwKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgImh1ZSI6ICIjZmYwMDM1IgogICAgICAgICAgICB9LAogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAibGlnaHRuZXNzIjogIjAiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJ3YXRlciIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogIm9uIgogICAgICAgICAgICB9LAogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAiY29sb3IiOiAiIzgwZTRkOCIKICAgICAgICAgICAgfSwKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgImxpZ2h0bmVzcyI6ICIyNSIKICAgICAgICAgICAgfSwKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInNhdHVyYXRpb24iOiAiLTIzIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfQpd\" el_class=\"\" el_style=\"\" api_key=\"AIzaSyBda9LxQ-Wztqsk6aFI7SkcdiypnKTPfiI\"][/bt_gmaps][/bt_column][bt_column width=\"1/3\" align=\"left\" vertical_align=\"btMiddleVertical\" border=\"no_border\" cell_padding=\"btDoublePadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"#e5e5e5\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_service icon=\"s7_e638\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoMediumSize\" url=\"\" headline=\"Address\" dash=\"\" text=\"3216 W Highland Boulevard\r\nSan Diego, California\" el_class=\"\" el_style=\"\" superheadline=\"\"][/bt_service][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSemiSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_service icon=\"s7_e670\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoMediumSize\" url=\"\" headline=\"Phone\" dash=\"\" text=\"+555-40-220-6672\" el_class=\"\" el_style=\"\" superheadline=\"\"][/bt_service][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSemiSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_service icon=\"s7_e63a\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoMediumSize\" url=\"\" headline=\"Email\" dash=\"\" text=\"office@california.hotel\" el_class=\"\" el_style=\"\" superheadline=\"\"][/bt_service][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"yes\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"7/12\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"News <i>&</i> Blog\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Morbi pharetra faucibus purus, nec pretium enim luctus quis. Pellentesque aliquet venenatis ante, quis pretium neque tristique eget. Integer in luctus urna. Aenean rutrum sodales pharetra.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"5/12\"][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_latest_posts number=\"3\" category=\"\" format=\"horizontal\" post_type=\"blog\" show_excerpt=\"yes\" show_date=\"yes\" show_author=\"yes\" el_class=\"\" el_style=\"\"][/bt_latest_posts][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"321\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"0.3\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Follow us\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Find out what’s hot and new, and get discounts for being a loyal customer and a Hotel California fan.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_icons][bt_icon icon=\"fa_f09a\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f099\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f0d5\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_column][/bt_row][/bt_section]','Street view','\n ','inherit','closed','closed','','837-revision-v1','','','2021-04-07 05:40:13','2021-04-07 05:40:13','',837,'http://mpycdev.theomggroup.com/?p=1062',0,'revision','',0);
INSERT INTO `smrc_posts` VALUES (1063,1,'2021-04-07 05:41:02','2021-04-07 05:41:02','[bt_section layout=\"wide\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\"][bt_slider height=\"medium\" auto_play=\"5000\" hide_arrows=\"\" hide_paging=\"\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item image=\"1048\" el_class=\"\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1025\" el_class=\"\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1026\" el_class=\"btLightSkin\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1035\" el_class=\"btLightSkin\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1050\" el_class=\"btLightSkin\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1049\" el_class=\"btLightSkin\" el_style=\"\"][/bt_slider_item][/bt_slider][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"dark\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#000080\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\"][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\r\n\r\n<em>founded 1953 in historic Monterey, California</em>\r\n\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSemiSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"2/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Our Club\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"A non-profit organization, MPYC is a yachting and social club comprised of over 400 adult and junior members with an interest in coming together to share in boating, sailing, yacht racing and social activities. Membership is not limited to boat owners.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/3\"][/bt_column][/bt_row][bt_row][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"44\" caption_text=\"View\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption=\"Double room\" show_titles=\"no\" caption_title=\"Room details\"][bt_header superheadline=\"CORINTHIAN SPIRIT\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Racing\" headline_size=\"medium\" dash=\"top\" subheadline=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer mollis viverra diam ac ornare. Donec rhoncus nisi in felis congue, at pulvinar nibh dapibus.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"43\" caption_text=\"\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"SPECTACULAR\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Crusing\" headline_size=\"medium\" dash=\"top\" subheadline=\"Sed sodales tortor non metus iaculis, non commodo ipsum mattis. Ut at dolor elit. Proin dignissim, lacus eget ullamcorper consectetur, mauris mi mattis elit sagittis.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"42\" caption_text=\"\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"OUR FUTURE\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Youth Sailing\" headline_size=\"medium\" dash=\"top\" subheadline=\"Mauris suscipit lectus pellentesque ante efficitur, at dignissim tellus maximus. Sed leo magna, faucibus non ante non, pulvinar scelerisque magna sit elis.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"41\" caption_text=\"\" size=\"medium\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"OUR COMMITMENT\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Stewardship\" headline_size=\"medium\" dash=\"top\" subheadline=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer mollis viverra diam ac ornare. Donec rhoncus nisi in felis congue, at pulvinar nibh dapibus.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"66\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"0.7\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"special-offers\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"323\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"width: 60px; margin-top: -28px;\"][/bt_image][bt_hr top_spaced=\"topSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"1/2\"][/bt_column][bt_column width=\"1/2\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"GET THE BEST RATE\" headline=\"Offers <i>&</i> Deals\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"If you chose to stay with us you will enjoy modern home comforts in a traditional setting. Whether you are looking for a short weekend break or a longer holiday, we offer a range of packages that we think cater for all.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"1/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"0.7\" inner_background_color=\"#ffffff\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"67\" caption_text=\"Get together\" size=\"\" shape=\"square\" url=\"special-offers\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"Family vacation\" show_titles=\"no\"][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"Get together\" headline=\"Family vacation\" headline_size=\"medium\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"fa_f207\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f13d\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f1eb\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f206\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f1ae\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\r\n\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Integer mollis viverra diam ac ornare. Donec rhoncus nisi in felis congue, at pulvinar nibh dapibus.\r\n\r\n[/bt_text][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/3\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"special-offers\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"2/3\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"0.7\" inner_background_color=\"#ffffff\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"68\" caption_text=\"Celebrate\" size=\"\" shape=\"square\" url=\"special-offers\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"Newlyweds weekend\" show_titles=\"no\"][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"Celebrate\" headline=\"Newlyweds weekend\" headline_size=\"medium\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"fa_f1ba\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f072\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f228\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\r\n\r\nSed ut metus eu neque commodo fringilla imperdiet sed nibh. Sed volutpat fermentum ligula, et maximus ex ultricies sit amet.\r\n\r\n[/bt_text][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/3\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"special-offers\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"2/3\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"0.7\" inner_background_color=\"#ffffff\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"725\" caption_text=\"Procrastinate\" size=\"\" shape=\"square\" url=\"special-offers\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"Lazy weekend\" show_titles=\"no\"][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"Procrastinate\" headline=\"Lazy weekend\" headline_size=\"medium\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"fa_f1ba\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f072\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f1eb\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f000\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f185\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\r\n\r\nPhasellus non bibendum augue. Duis nibh felis, volutpat vitae pulvinar at, tincidunt eget mi. Donec venenatis condimentum fermentum.\r\n\r\n[/bt_text][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/3\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"special-offers\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"2/3\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#e5e5e5\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"322\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"width: 60px; margin-top: -28px;\"][/bt_image][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"7/12\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Activities\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Phasellus blandit a massa vitae congue. Nam ex massa, mattis ut sapien sit amet, consequat sodales risus. Sed interdum, ligula et lobortis faucibus, sem sem placerat augue, eget scelerisque turpis lorem et tellus.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][/bt_column][bt_column width=\"5/12\"][/bt_column][/bt_row][/bt_section][bt_section layout=\"wide\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"dark\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#e5e5e5\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"73\" caption_title=\"Beach voleyball\" caption_text=\"Enjoy the game\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"ENJOY THE GAME\" headline=\"Beach Voleyball\" headline_size=\"medium\" dash=\"top\" subheadline=\"Beach volleyball is ouy visitors favourite sport, highly enjoyable for everyone young or old. Just gather your team on the beach and find the opponents in a matter of minutes. And show what you can do, be a winner!\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_e9ac\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e040\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e041\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"74\" el_class=\"\" el_style=\"\"][bt_image image=\"74\" caption_title=\"Horseback riding\" caption_text=\"Enjoy the beach\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Enjoy the beach\" headline=\"Horseback riding\" headline_size=\"medium\" dash=\"top\" subheadline=\"How about a lazy afternoon with your friends on a hors, while the sun goes down? If you want to chill out, our horse riding team will teach you in a matter of minutes and help you wind down after a good day on the sun.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_ea13\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1e\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e05b\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"75\" el_class=\"\" el_style=\"\"][bt_image image=\"75\" caption_title=\"Waterskiing\" caption_text=\"Enjoy the sea\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Enjoy the sea\" headline=\"Waterskiing\" headline_size=\"medium\" dash=\"top\" subheadline=\"If you are a big fan of water sports, then why not try the waterskiing or waterboarding? At hotel California you will find there\'s an amateur champoionship every year. Rated as the most fun activity by our visitors.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_e05b\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9a3\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9e5\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"76\" el_class=\"\" el_style=\"\"][bt_image image=\"76\" caption_title=\"Paragliding\" caption_text=\"Enjoy the sky\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Enjoy the sky\" headline=\"Parasailing\" headline_size=\"medium\" dash=\"top\" subheadline=\"Enjoy the thrill on the sky with our parasailing team and feel the California sun on your face. The team will help you get your adrenaline high and will be capuring your moments on a high-definition camera.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_ea2f\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"s7_e67b\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9f3\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_slider height=\"auto\" auto_play=\"\" hide_arrows=\"\" hide_paging=\"btSliderHidePaging\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/6\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"78\" caption_text=\"\" size=\"\" shape=\"circle\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][bt_header superheadline=\"June 2016\" headline=\"Alan Jones\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][/bt_column_inner][bt_column_inner width=\"5/6\"][bt_text]\r\n<blockquote>If you chose to stay with us you will enjoy modern home comforts in a traditional setting. Whether you are looking for a short weekend break or a longer holiday, we offer a range of packages that we think cater for all.</blockquote>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/6\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"447\" caption_text=\"\" size=\"\" shape=\"circle\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][/bt_image][bt_header superheadline=\"July 2016\" headline=\"Adrianne White\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][bt_column_inner width=\"5/6\"][bt_text]\r\n<blockquote>If you chose to stay with us you will enjoy modern home comforts in a traditional setting. Whether you are looking for a short weekend break or a longer holiday, we offer a range of packages that we think cater for all.</blockquote>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/1\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_text]\r\n<blockquote>Our mission: to connect our members and our diverse community to the boundless recreational opportunities and proper stewardship of the Monterey Bay and the Pacific Ocean.</blockquote>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][/bt_slider][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/3\" align=\"left\" vertical_align=\"btMiddleVertical\" border=\"no_border\" cell_padding=\"btDoublePadding\" animation=\"animate animate-fadein\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"#e5e5e5\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"IN A NUTSHELL\" headline=\"Hotel California\" headline_size=\"large\" dash=\"bottom\" subheadline=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer mollis viverra diam ac ornare. Donec rhoncus nisi in felis congue, at pulvinar nibh dapibus.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_button text=\"READ MORE\" icon=\"no_icon\" url=\"\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"ExtraSmall\" width=\"Normal\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"2/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_slider height=\"auto\" auto_play=\"\" hide_arrows=\"\" hide_paging=\"btSliderHidePaging\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"81\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"82\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"83\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"84\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"85\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][/bt_slider][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\"][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"2/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_gmaps latitude=\"36.602383\" longitude=\"-121.879245 \" zoom=\"11\" icon=\"342\" height=\"400px\" primary_color=\"\" secondary_color=\"\" water_color=\"\" custom_style=\"WwogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJhZG1pbmlzdHJhdGl2ZSIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImxhYmVscy50ZXh0LmZpbGwiLAogICAgICAgICJzdHlsZXJzIjogWwogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAiY29sb3IiOiAiIzQ0NDQ0NCIKICAgICAgICAgICAgfQogICAgICAgIF0KICAgIH0sCiAgICB7CiAgICAgICAgImZlYXR1cmVUeXBlIjogImxhbmRzY2FwZSIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJjb2xvciI6ICIjZjJmMmYyIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAicG9pIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiYWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInZpc2liaWxpdHkiOiAib2ZmIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAicm9hZCIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJzYXR1cmF0aW9uIjogLTEwMAogICAgICAgICAgICB9LAogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAibGlnaHRuZXNzIjogNDUKICAgICAgICAgICAgfQogICAgICAgIF0KICAgIH0sCiAgICB7CiAgICAgICAgImZlYXR1cmVUeXBlIjogInJvYWQuaGlnaHdheSIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogInNpbXBsaWZpZWQiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJyb2FkLmhpZ2h3YXkiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJnZW9tZXRyeSIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogInNpbXBsaWZpZWQiCiAgICAgICAgICAgIH0sCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJjb2xvciI6ICIjZDc3Mjg3IgogICAgICAgICAgICB9LAogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAibGlnaHRuZXNzIjogIjAiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJyb2FkLmhpZ2h3YXkiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJsYWJlbHMudGV4dCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogIm9uIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAicm9hZC5oaWdod2F5IiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAibGFiZWxzLmljb24iLAogICAgICAgICJzdHlsZXJzIjogWwogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAidmlzaWJpbGl0eSI6ICJvbiIKICAgICAgICAgICAgfQogICAgICAgIF0KICAgIH0sCiAgICB7CiAgICAgICAgImZlYXR1cmVUeXBlIjogInJvYWQuYXJ0ZXJpYWwiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJhbGwiLAogICAgICAgICJzdHlsZXJzIjogWwogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAidmlzaWJpbGl0eSI6ICJvbiIKICAgICAgICAgICAgfQogICAgICAgIF0KICAgIH0sCiAgICB7CiAgICAgICAgImZlYXR1cmVUeXBlIjogInJvYWQuYXJ0ZXJpYWwiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJnZW9tZXRyeS5maWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgImNvbG9yIjogIiNkNzcyODciCiAgICAgICAgICAgIH0sCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJsaWdodG5lc3MiOiAiNzUiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJyb2FkLmFydGVyaWFsIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAibGFiZWxzLmljb24iLAogICAgICAgICJzdHlsZXJzIjogWwogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAidmlzaWJpbGl0eSI6ICJvZmYiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJyb2FkLmxvY2FsIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiZ2VvbWV0cnkuZmlsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJsaWdodG5lc3MiOiAiNzUiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJ0cmFuc2l0IiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiYWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInZpc2liaWxpdHkiOiAib2ZmIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAidHJhbnNpdC5saW5lIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiYWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInZpc2liaWxpdHkiOiAib24iCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJ0cmFuc2l0LnN0YXRpb24uYnVzIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiYWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInZpc2liaWxpdHkiOiAib24iCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJ0cmFuc2l0LnN0YXRpb24ucmFpbCIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogIm9uIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAidHJhbnNpdC5zdGF0aW9uLnJhaWwiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJsYWJlbHMuaWNvbiIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ3ZWlnaHQiOiAiMC4wMSIKICAgICAgICAgICAgfSwKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgImh1ZSI6ICIjZmYwMDM1IgogICAgICAgICAgICB9LAogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAibGlnaHRuZXNzIjogIjAiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJ3YXRlciIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogIm9uIgogICAgICAgICAgICB9LAogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAiY29sb3IiOiAiIzgwZTRkOCIKICAgICAgICAgICAgfSwKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgImxpZ2h0bmVzcyI6ICIyNSIKICAgICAgICAgICAgfSwKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInNhdHVyYXRpb24iOiAiLTIzIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfQpd\" el_class=\"\" el_style=\"\" api_key=\"AIzaSyBda9LxQ-Wztqsk6aFI7SkcdiypnKTPfiI\"][/bt_gmaps][/bt_column][bt_column width=\"1/3\" align=\"left\" vertical_align=\"btMiddleVertical\" border=\"no_border\" cell_padding=\"btDoublePadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"#e5e5e5\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_service icon=\"s7_e638\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoMediumSize\" url=\"\" headline=\"Address\" dash=\"\" text=\"3216 W Highland Boulevard\r\nSan Diego, California\" el_class=\"\" el_style=\"\" superheadline=\"\"][/bt_service][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSemiSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_service icon=\"s7_e670\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoMediumSize\" url=\"\" headline=\"Phone\" dash=\"\" text=\"+555-40-220-6672\" el_class=\"\" el_style=\"\" superheadline=\"\"][/bt_service][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSemiSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_service icon=\"s7_e63a\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoMediumSize\" url=\"\" headline=\"Email\" dash=\"\" text=\"office@california.hotel\" el_class=\"\" el_style=\"\" superheadline=\"\"][/bt_service][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"yes\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"7/12\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"News <i>&</i> Blog\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Morbi pharetra faucibus purus, nec pretium enim luctus quis. Pellentesque aliquet venenatis ante, quis pretium neque tristique eget. Integer in luctus urna. Aenean rutrum sodales pharetra.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"5/12\"][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_latest_posts number=\"3\" category=\"\" format=\"horizontal\" post_type=\"blog\" show_excerpt=\"yes\" show_date=\"yes\" show_author=\"yes\" el_class=\"\" el_style=\"\"][/bt_latest_posts][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"321\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"0.3\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Follow us\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Find out what’s hot and new, and get discounts for being a loyal customer and a Hotel California fan.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_icons][bt_icon icon=\"fa_f09a\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f099\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f0d5\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_column][/bt_row][/bt_section]','Street view','\n ','inherit','closed','closed','','837-revision-v1','','','2021-04-07 05:41:02','2021-04-07 05:41:02','',837,'http://mpycdev.theomggroup.com/?p=1063',0,'revision','',0);
INSERT INTO `smrc_posts` VALUES (1064,1,'2021-04-07 05:42:02','2021-04-07 05:42:02','[bt_section layout=\"wide\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\"][bt_slider height=\"medium\" auto_play=\"5000\" hide_arrows=\"\" hide_paging=\"\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item image=\"1048\" el_class=\"\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1025\" el_class=\"\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1026\" el_class=\"btLightSkin\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1035\" el_class=\"btLightSkin\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1050\" el_class=\"btLightSkin\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1049\" el_class=\"btLightSkin\" el_style=\"\"][/bt_slider_item][/bt_slider][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"dark\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#000080\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\"][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\r\n\r\n<em>founded 1953 in historic Monterey, California</em>\r\n\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSemiSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"2/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Our Club\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"A non-profit organization, MPYC is a yachting and social club comprised of over 400 adult and junior members with an interest in coming together to share in boating, sailing, yacht racing and social activities. Membership is not limited to boat owners.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/3\"][/bt_column][/bt_row][bt_row][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"44\" caption_text=\"View\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption=\"Double room\" show_titles=\"no\" caption_title=\"Room details\"][bt_header superheadline=\"CORINTHIAN SPIRIT\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Racing\" headline_size=\"medium\" dash=\"top\" subheadline=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer mollis viverra diam ac ornare. Donec rhoncus nisi in felis congue, at pulvinar nibh dapibus.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"43\" caption_text=\"\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"SHARED PASSION\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Crusing\" headline_size=\"medium\" dash=\"top\" subheadline=\"Sed sodales tortor non metus iaculis, non commodo ipsum mattis. Ut at dolor elit. Proin dignissim, lacus eget ullamcorper consectetur, mauris mi mattis elit sagittis.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"42\" caption_text=\"\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"OUR FUTURE\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Youth Sailing\" headline_size=\"medium\" dash=\"top\" subheadline=\"Mauris suscipit lectus pellentesque ante efficitur, at dignissim tellus maximus. Sed leo magna, faucibus non ante non, pulvinar scelerisque magna sit elis.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"41\" caption_text=\"\" size=\"medium\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"OUR COMMITMENT\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Stewardship\" headline_size=\"medium\" dash=\"top\" subheadline=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer mollis viverra diam ac ornare. Donec rhoncus nisi in felis congue, at pulvinar nibh dapibus.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"66\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"0.7\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"special-offers\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"323\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"width: 60px; margin-top: -28px;\"][/bt_image][bt_hr top_spaced=\"topSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"1/2\"][/bt_column][bt_column width=\"1/2\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"GET THE BEST RATE\" headline=\"Offers <i>&</i> Deals\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"If you chose to stay with us you will enjoy modern home comforts in a traditional setting. Whether you are looking for a short weekend break or a longer holiday, we offer a range of packages that we think cater for all.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"1/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"0.7\" inner_background_color=\"#ffffff\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"67\" caption_text=\"Get together\" size=\"\" shape=\"square\" url=\"special-offers\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"Family vacation\" show_titles=\"no\"][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"Get together\" headline=\"Family vacation\" headline_size=\"medium\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"fa_f207\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f13d\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f1eb\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f206\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f1ae\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\r\n\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Integer mollis viverra diam ac ornare. Donec rhoncus nisi in felis congue, at pulvinar nibh dapibus.\r\n\r\n[/bt_text][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/3\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"special-offers\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"2/3\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"0.7\" inner_background_color=\"#ffffff\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"68\" caption_text=\"Celebrate\" size=\"\" shape=\"square\" url=\"special-offers\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"Newlyweds weekend\" show_titles=\"no\"][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"Celebrate\" headline=\"Newlyweds weekend\" headline_size=\"medium\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"fa_f1ba\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f072\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f228\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\r\n\r\nSed ut metus eu neque commodo fringilla imperdiet sed nibh. Sed volutpat fermentum ligula, et maximus ex ultricies sit amet.\r\n\r\n[/bt_text][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/3\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"special-offers\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"2/3\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"0.7\" inner_background_color=\"#ffffff\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"725\" caption_text=\"Procrastinate\" size=\"\" shape=\"square\" url=\"special-offers\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"Lazy weekend\" show_titles=\"no\"][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"Procrastinate\" headline=\"Lazy weekend\" headline_size=\"medium\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"fa_f1ba\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f072\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f1eb\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f000\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f185\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\r\n\r\nPhasellus non bibendum augue. Duis nibh felis, volutpat vitae pulvinar at, tincidunt eget mi. Donec venenatis condimentum fermentum.\r\n\r\n[/bt_text][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/3\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"special-offers\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"2/3\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#e5e5e5\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"322\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"width: 60px; margin-top: -28px;\"][/bt_image][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"7/12\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Activities\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Phasellus blandit a massa vitae congue. Nam ex massa, mattis ut sapien sit amet, consequat sodales risus. Sed interdum, ligula et lobortis faucibus, sem sem placerat augue, eget scelerisque turpis lorem et tellus.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][/bt_column][bt_column width=\"5/12\"][/bt_column][/bt_row][/bt_section][bt_section layout=\"wide\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"dark\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#e5e5e5\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"73\" caption_title=\"Beach voleyball\" caption_text=\"Enjoy the game\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"ENJOY THE GAME\" headline=\"Beach Voleyball\" headline_size=\"medium\" dash=\"top\" subheadline=\"Beach volleyball is ouy visitors favourite sport, highly enjoyable for everyone young or old. Just gather your team on the beach and find the opponents in a matter of minutes. And show what you can do, be a winner!\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_e9ac\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e040\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e041\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"74\" el_class=\"\" el_style=\"\"][bt_image image=\"74\" caption_title=\"Horseback riding\" caption_text=\"Enjoy the beach\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Enjoy the beach\" headline=\"Horseback riding\" headline_size=\"medium\" dash=\"top\" subheadline=\"How about a lazy afternoon with your friends on a hors, while the sun goes down? If you want to chill out, our horse riding team will teach you in a matter of minutes and help you wind down after a good day on the sun.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_ea13\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1e\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e05b\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"75\" el_class=\"\" el_style=\"\"][bt_image image=\"75\" caption_title=\"Waterskiing\" caption_text=\"Enjoy the sea\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Enjoy the sea\" headline=\"Waterskiing\" headline_size=\"medium\" dash=\"top\" subheadline=\"If you are a big fan of water sports, then why not try the waterskiing or waterboarding? At hotel California you will find there\'s an amateur champoionship every year. Rated as the most fun activity by our visitors.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_e05b\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9a3\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9e5\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"76\" el_class=\"\" el_style=\"\"][bt_image image=\"76\" caption_title=\"Paragliding\" caption_text=\"Enjoy the sky\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Enjoy the sky\" headline=\"Parasailing\" headline_size=\"medium\" dash=\"top\" subheadline=\"Enjoy the thrill on the sky with our parasailing team and feel the California sun on your face. The team will help you get your adrenaline high and will be capuring your moments on a high-definition camera.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_ea2f\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"s7_e67b\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9f3\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_slider height=\"auto\" auto_play=\"\" hide_arrows=\"\" hide_paging=\"btSliderHidePaging\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/6\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"78\" caption_text=\"\" size=\"\" shape=\"circle\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][bt_header superheadline=\"June 2016\" headline=\"Alan Jones\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][/bt_column_inner][bt_column_inner width=\"5/6\"][bt_text]\r\n<blockquote>If you chose to stay with us you will enjoy modern home comforts in a traditional setting. Whether you are looking for a short weekend break or a longer holiday, we offer a range of packages that we think cater for all.</blockquote>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/6\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"447\" caption_text=\"\" size=\"\" shape=\"circle\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][/bt_image][bt_header superheadline=\"July 2016\" headline=\"Adrianne White\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][bt_column_inner width=\"5/6\"][bt_text]\r\n<blockquote>If you chose to stay with us you will enjoy modern home comforts in a traditional setting. Whether you are looking for a short weekend break or a longer holiday, we offer a range of packages that we think cater for all.</blockquote>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/1\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_text]\r\n<blockquote>Our mission: to connect our members and our diverse community to the boundless recreational opportunities and proper stewardship of the Monterey Bay and the Pacific Ocean.</blockquote>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][/bt_slider][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/3\" align=\"left\" vertical_align=\"btMiddleVertical\" border=\"no_border\" cell_padding=\"btDoublePadding\" animation=\"animate animate-fadein\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"#e5e5e5\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"IN A NUTSHELL\" headline=\"Hotel California\" headline_size=\"large\" dash=\"bottom\" subheadline=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer mollis viverra diam ac ornare. Donec rhoncus nisi in felis congue, at pulvinar nibh dapibus.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_button text=\"READ MORE\" icon=\"no_icon\" url=\"\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"ExtraSmall\" width=\"Normal\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"2/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_slider height=\"auto\" auto_play=\"\" hide_arrows=\"\" hide_paging=\"btSliderHidePaging\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"81\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"82\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"83\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"84\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"85\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][/bt_slider][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\"][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"2/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_gmaps latitude=\"36.602383\" longitude=\"-121.879245 \" zoom=\"11\" icon=\"342\" height=\"400px\" primary_color=\"\" secondary_color=\"\" water_color=\"\" custom_style=\"WwogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJhZG1pbmlzdHJhdGl2ZSIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImxhYmVscy50ZXh0LmZpbGwiLAogICAgICAgICJzdHlsZXJzIjogWwogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAiY29sb3IiOiAiIzQ0NDQ0NCIKICAgICAgICAgICAgfQogICAgICAgIF0KICAgIH0sCiAgICB7CiAgICAgICAgImZlYXR1cmVUeXBlIjogImxhbmRzY2FwZSIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJjb2xvciI6ICIjZjJmMmYyIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAicG9pIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiYWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInZpc2liaWxpdHkiOiAib2ZmIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAicm9hZCIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJzYXR1cmF0aW9uIjogLTEwMAogICAgICAgICAgICB9LAogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAibGlnaHRuZXNzIjogNDUKICAgICAgICAgICAgfQogICAgICAgIF0KICAgIH0sCiAgICB7CiAgICAgICAgImZlYXR1cmVUeXBlIjogInJvYWQuaGlnaHdheSIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogInNpbXBsaWZpZWQiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJyb2FkLmhpZ2h3YXkiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJnZW9tZXRyeSIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogInNpbXBsaWZpZWQiCiAgICAgICAgICAgIH0sCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJjb2xvciI6ICIjZDc3Mjg3IgogICAgICAgICAgICB9LAogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAibGlnaHRuZXNzIjogIjAiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJyb2FkLmhpZ2h3YXkiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJsYWJlbHMudGV4dCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogIm9uIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAicm9hZC5oaWdod2F5IiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAibGFiZWxzLmljb24iLAogICAgICAgICJzdHlsZXJzIjogWwogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAidmlzaWJpbGl0eSI6ICJvbiIKICAgICAgICAgICAgfQogICAgICAgIF0KICAgIH0sCiAgICB7CiAgICAgICAgImZlYXR1cmVUeXBlIjogInJvYWQuYXJ0ZXJpYWwiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJhbGwiLAogICAgICAgICJzdHlsZXJzIjogWwogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAidmlzaWJpbGl0eSI6ICJvbiIKICAgICAgICAgICAgfQogICAgICAgIF0KICAgIH0sCiAgICB7CiAgICAgICAgImZlYXR1cmVUeXBlIjogInJvYWQuYXJ0ZXJpYWwiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJnZW9tZXRyeS5maWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgImNvbG9yIjogIiNkNzcyODciCiAgICAgICAgICAgIH0sCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJsaWdodG5lc3MiOiAiNzUiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJyb2FkLmFydGVyaWFsIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAibGFiZWxzLmljb24iLAogICAgICAgICJzdHlsZXJzIjogWwogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAidmlzaWJpbGl0eSI6ICJvZmYiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJyb2FkLmxvY2FsIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiZ2VvbWV0cnkuZmlsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJsaWdodG5lc3MiOiAiNzUiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJ0cmFuc2l0IiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiYWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInZpc2liaWxpdHkiOiAib2ZmIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAidHJhbnNpdC5saW5lIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiYWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInZpc2liaWxpdHkiOiAib24iCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJ0cmFuc2l0LnN0YXRpb24uYnVzIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiYWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInZpc2liaWxpdHkiOiAib24iCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJ0cmFuc2l0LnN0YXRpb24ucmFpbCIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogIm9uIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAidHJhbnNpdC5zdGF0aW9uLnJhaWwiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJsYWJlbHMuaWNvbiIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ3ZWlnaHQiOiAiMC4wMSIKICAgICAgICAgICAgfSwKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgImh1ZSI6ICIjZmYwMDM1IgogICAgICAgICAgICB9LAogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAibGlnaHRuZXNzIjogIjAiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJ3YXRlciIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogIm9uIgogICAgICAgICAgICB9LAogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAiY29sb3IiOiAiIzgwZTRkOCIKICAgICAgICAgICAgfSwKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgImxpZ2h0bmVzcyI6ICIyNSIKICAgICAgICAgICAgfSwKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInNhdHVyYXRpb24iOiAiLTIzIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfQpd\" el_class=\"\" el_style=\"\" api_key=\"AIzaSyBda9LxQ-Wztqsk6aFI7SkcdiypnKTPfiI\"][/bt_gmaps][/bt_column][bt_column width=\"1/3\" align=\"left\" vertical_align=\"btMiddleVertical\" border=\"no_border\" cell_padding=\"btDoublePadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"#e5e5e5\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_service icon=\"s7_e638\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoMediumSize\" url=\"\" headline=\"Address\" dash=\"\" text=\"3216 W Highland Boulevard\r\nSan Diego, California\" el_class=\"\" el_style=\"\" superheadline=\"\"][/bt_service][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSemiSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_service icon=\"s7_e670\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoMediumSize\" url=\"\" headline=\"Phone\" dash=\"\" text=\"+555-40-220-6672\" el_class=\"\" el_style=\"\" superheadline=\"\"][/bt_service][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSemiSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_service icon=\"s7_e63a\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoMediumSize\" url=\"\" headline=\"Email\" dash=\"\" text=\"office@california.hotel\" el_class=\"\" el_style=\"\" superheadline=\"\"][/bt_service][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"yes\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"7/12\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"News <i>&</i> Blog\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Morbi pharetra faucibus purus, nec pretium enim luctus quis. Pellentesque aliquet venenatis ante, quis pretium neque tristique eget. Integer in luctus urna. Aenean rutrum sodales pharetra.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"5/12\"][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_latest_posts number=\"3\" category=\"\" format=\"horizontal\" post_type=\"blog\" show_excerpt=\"yes\" show_date=\"yes\" show_author=\"yes\" el_class=\"\" el_style=\"\"][/bt_latest_posts][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"321\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"0.3\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Follow us\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Find out what’s hot and new, and get discounts for being a loyal customer and a Hotel California fan.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_icons][bt_icon icon=\"fa_f09a\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f099\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f0d5\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_column][/bt_row][/bt_section]','Street view','\n ','inherit','closed','closed','','837-revision-v1','','','2021-04-07 05:42:02','2021-04-07 05:42:02','',837,'http://mpycdev.theomggroup.com/?p=1064',0,'revision','',0);
INSERT INTO `smrc_posts` VALUES (1065,1,'2021-04-07 05:46:28','2021-04-07 05:46:28','[bt_section layout=\"wide\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\"][bt_slider height=\"medium\" auto_play=\"5000\" hide_arrows=\"\" hide_paging=\"\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item image=\"1048\" el_class=\"\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1025\" el_class=\"\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1026\" el_class=\"btLightSkin\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1035\" el_class=\"btLightSkin\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1050\" el_class=\"btLightSkin\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1049\" el_class=\"btLightSkin\" el_style=\"\"][/bt_slider_item][/bt_slider][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"dark\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#000080\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\"][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\r\n\r\n<em>founded 1953 in historic Monterey, California</em>\r\n\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSemiSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"2/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Our Club\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"A non-profit organization, MPYC is a yachting and social club comprised of over 400 adult and junior members with an interest in coming together to share in boating, sailing, yacht racing and social activities. Membership is not limited to boat owners.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/3\"][/bt_column][/bt_row][bt_row][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"44\" caption_text=\"View\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption=\"Double room\" show_titles=\"no\" caption_title=\"Room details\"][bt_header superheadline=\"CORINTHIAN SPIRIT\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Racing\" headline_size=\"medium\" dash=\"top\" subheadline=\"MPYC has built a reputation for top-notch competitive sailing. We host over 100 races per year and have hosted a variety of national championships.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"43\" caption_text=\"\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"PASSION\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"CruIsing\" headline_size=\"medium\" dash=\"top\" subheadline=\"Our members feature both power and sailboat owners. It\'s our great honor to live along California\'s Monterey Bay and enjoy the scenic vistas and marine wildlife.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"42\" caption_text=\"\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"COMMITMENT\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Youth Sailing\" headline_size=\"medium\" dash=\"top\" subheadline=\"Mauris suscipit lectus pellentesque ante efficitur, at dignissim tellus maximus. Sed leo magna, faucibus non ante non, pulvinar scelerisque magna sit elis.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"41\" caption_text=\"\" size=\"medium\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"RESPONSIBILITY\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Stewardship\" headline_size=\"medium\" dash=\"top\" subheadline=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer mollis viverra diam ac ornare. Donec rhoncus nisi in felis congue, at pulvinar nibh dapibus.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"66\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"0.7\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"special-offers\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"323\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"width: 60px; margin-top: -28px;\"][/bt_image][bt_hr top_spaced=\"topSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"1/2\"][/bt_column][bt_column width=\"1/2\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"GET THE BEST RATE\" headline=\"Offers <i>&</i> Deals\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"If you chose to stay with us you will enjoy modern home comforts in a traditional setting. Whether you are looking for a short weekend break or a longer holiday, we offer a range of packages that we think cater for all.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"1/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"0.7\" inner_background_color=\"#ffffff\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"67\" caption_text=\"Get together\" size=\"\" shape=\"square\" url=\"special-offers\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"Family vacation\" show_titles=\"no\"][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"Get together\" headline=\"Family vacation\" headline_size=\"medium\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"fa_f207\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f13d\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f1eb\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f206\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f1ae\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\r\n\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Integer mollis viverra diam ac ornare. Donec rhoncus nisi in felis congue, at pulvinar nibh dapibus.\r\n\r\n[/bt_text][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/3\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"special-offers\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"2/3\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"0.7\" inner_background_color=\"#ffffff\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"68\" caption_text=\"Celebrate\" size=\"\" shape=\"square\" url=\"special-offers\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"Newlyweds weekend\" show_titles=\"no\"][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"Celebrate\" headline=\"Newlyweds weekend\" headline_size=\"medium\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"fa_f1ba\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f072\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f228\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\r\n\r\nSed ut metus eu neque commodo fringilla imperdiet sed nibh. Sed volutpat fermentum ligula, et maximus ex ultricies sit amet.\r\n\r\n[/bt_text][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/3\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"special-offers\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"2/3\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"0.7\" inner_background_color=\"#ffffff\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"725\" caption_text=\"Procrastinate\" size=\"\" shape=\"square\" url=\"special-offers\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"Lazy weekend\" show_titles=\"no\"][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"Procrastinate\" headline=\"Lazy weekend\" headline_size=\"medium\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"fa_f1ba\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f072\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f1eb\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f000\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f185\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\r\n\r\nPhasellus non bibendum augue. Duis nibh felis, volutpat vitae pulvinar at, tincidunt eget mi. Donec venenatis condimentum fermentum.\r\n\r\n[/bt_text][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/3\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"special-offers\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"2/3\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#e5e5e5\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"322\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"width: 60px; margin-top: -28px;\"][/bt_image][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"7/12\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Activities\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Phasellus blandit a massa vitae congue. Nam ex massa, mattis ut sapien sit amet, consequat sodales risus. Sed interdum, ligula et lobortis faucibus, sem sem placerat augue, eget scelerisque turpis lorem et tellus.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][/bt_column][bt_column width=\"5/12\"][/bt_column][/bt_row][/bt_section][bt_section layout=\"wide\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"dark\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#e5e5e5\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"73\" caption_title=\"Beach voleyball\" caption_text=\"Enjoy the game\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"ENJOY THE GAME\" headline=\"Beach Voleyball\" headline_size=\"medium\" dash=\"top\" subheadline=\"Beach volleyball is ouy visitors favourite sport, highly enjoyable for everyone young or old. Just gather your team on the beach and find the opponents in a matter of minutes. And show what you can do, be a winner!\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_e9ac\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e040\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e041\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"74\" el_class=\"\" el_style=\"\"][bt_image image=\"74\" caption_title=\"Horseback riding\" caption_text=\"Enjoy the beach\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Enjoy the beach\" headline=\"Horseback riding\" headline_size=\"medium\" dash=\"top\" subheadline=\"How about a lazy afternoon with your friends on a hors, while the sun goes down? If you want to chill out, our horse riding team will teach you in a matter of minutes and help you wind down after a good day on the sun.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_ea13\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1e\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e05b\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"75\" el_class=\"\" el_style=\"\"][bt_image image=\"75\" caption_title=\"Waterskiing\" caption_text=\"Enjoy the sea\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Enjoy the sea\" headline=\"Waterskiing\" headline_size=\"medium\" dash=\"top\" subheadline=\"If you are a big fan of water sports, then why not try the waterskiing or waterboarding? At hotel California you will find there\'s an amateur champoionship every year. Rated as the most fun activity by our visitors.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_e05b\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9a3\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9e5\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"76\" el_class=\"\" el_style=\"\"][bt_image image=\"76\" caption_title=\"Paragliding\" caption_text=\"Enjoy the sky\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Enjoy the sky\" headline=\"Parasailing\" headline_size=\"medium\" dash=\"top\" subheadline=\"Enjoy the thrill on the sky with our parasailing team and feel the California sun on your face. The team will help you get your adrenaline high and will be capuring your moments on a high-definition camera.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_ea2f\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"s7_e67b\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9f3\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_slider height=\"auto\" auto_play=\"\" hide_arrows=\"\" hide_paging=\"btSliderHidePaging\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/6\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"78\" caption_text=\"\" size=\"\" shape=\"circle\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][bt_header superheadline=\"June 2016\" headline=\"Alan Jones\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][/bt_column_inner][bt_column_inner width=\"5/6\"][bt_text]\r\n<blockquote>If you chose to stay with us you will enjoy modern home comforts in a traditional setting. Whether you are looking for a short weekend break or a longer holiday, we offer a range of packages that we think cater for all.</blockquote>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/6\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"447\" caption_text=\"\" size=\"\" shape=\"circle\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][/bt_image][bt_header superheadline=\"July 2016\" headline=\"Adrianne White\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][bt_column_inner width=\"5/6\"][bt_text]\r\n<blockquote>If you chose to stay with us you will enjoy modern home comforts in a traditional setting. Whether you are looking for a short weekend break or a longer holiday, we offer a range of packages that we think cater for all.</blockquote>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/1\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_text]\r\n<blockquote>Our mission: to connect our members and our diverse community to the boundless recreational opportunities and proper stewardship of the Monterey Bay and the Pacific Ocean.</blockquote>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][/bt_slider][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/3\" align=\"left\" vertical_align=\"btMiddleVertical\" border=\"no_border\" cell_padding=\"btDoublePadding\" animation=\"animate animate-fadein\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"#e5e5e5\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"IN A NUTSHELL\" headline=\"Hotel California\" headline_size=\"large\" dash=\"bottom\" subheadline=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer mollis viverra diam ac ornare. Donec rhoncus nisi in felis congue, at pulvinar nibh dapibus.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_button text=\"READ MORE\" icon=\"no_icon\" url=\"\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"ExtraSmall\" width=\"Normal\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"2/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_slider height=\"auto\" auto_play=\"\" hide_arrows=\"\" hide_paging=\"btSliderHidePaging\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"81\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"82\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"83\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"84\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"85\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][/bt_slider][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\"][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"2/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_gmaps latitude=\"36.602383\" longitude=\"-121.879245 \" zoom=\"11\" icon=\"342\" height=\"400px\" primary_color=\"\" secondary_color=\"\" water_color=\"\" custom_style=\"WwogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJhZG1pbmlzdHJhdGl2ZSIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImxhYmVscy50ZXh0LmZpbGwiLAogICAgICAgICJzdHlsZXJzIjogWwogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAiY29sb3IiOiAiIzQ0NDQ0NCIKICAgICAgICAgICAgfQogICAgICAgIF0KICAgIH0sCiAgICB7CiAgICAgICAgImZlYXR1cmVUeXBlIjogImxhbmRzY2FwZSIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJjb2xvciI6ICIjZjJmMmYyIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAicG9pIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiYWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInZpc2liaWxpdHkiOiAib2ZmIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAicm9hZCIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJzYXR1cmF0aW9uIjogLTEwMAogICAgICAgICAgICB9LAogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAibGlnaHRuZXNzIjogNDUKICAgICAgICAgICAgfQogICAgICAgIF0KICAgIH0sCiAgICB7CiAgICAgICAgImZlYXR1cmVUeXBlIjogInJvYWQuaGlnaHdheSIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogInNpbXBsaWZpZWQiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJyb2FkLmhpZ2h3YXkiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJnZW9tZXRyeSIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogInNpbXBsaWZpZWQiCiAgICAgICAgICAgIH0sCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJjb2xvciI6ICIjZDc3Mjg3IgogICAgICAgICAgICB9LAogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAibGlnaHRuZXNzIjogIjAiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJyb2FkLmhpZ2h3YXkiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJsYWJlbHMudGV4dCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogIm9uIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAicm9hZC5oaWdod2F5IiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAibGFiZWxzLmljb24iLAogICAgICAgICJzdHlsZXJzIjogWwogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAidmlzaWJpbGl0eSI6ICJvbiIKICAgICAgICAgICAgfQogICAgICAgIF0KICAgIH0sCiAgICB7CiAgICAgICAgImZlYXR1cmVUeXBlIjogInJvYWQuYXJ0ZXJpYWwiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJhbGwiLAogICAgICAgICJzdHlsZXJzIjogWwogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAidmlzaWJpbGl0eSI6ICJvbiIKICAgICAgICAgICAgfQogICAgICAgIF0KICAgIH0sCiAgICB7CiAgICAgICAgImZlYXR1cmVUeXBlIjogInJvYWQuYXJ0ZXJpYWwiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJnZW9tZXRyeS5maWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgImNvbG9yIjogIiNkNzcyODciCiAgICAgICAgICAgIH0sCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJsaWdodG5lc3MiOiAiNzUiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJyb2FkLmFydGVyaWFsIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAibGFiZWxzLmljb24iLAogICAgICAgICJzdHlsZXJzIjogWwogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAidmlzaWJpbGl0eSI6ICJvZmYiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJyb2FkLmxvY2FsIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiZ2VvbWV0cnkuZmlsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJsaWdodG5lc3MiOiAiNzUiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJ0cmFuc2l0IiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiYWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInZpc2liaWxpdHkiOiAib2ZmIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAidHJhbnNpdC5saW5lIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiYWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInZpc2liaWxpdHkiOiAib24iCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJ0cmFuc2l0LnN0YXRpb24uYnVzIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiYWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInZpc2liaWxpdHkiOiAib24iCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJ0cmFuc2l0LnN0YXRpb24ucmFpbCIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogIm9uIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAidHJhbnNpdC5zdGF0aW9uLnJhaWwiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJsYWJlbHMuaWNvbiIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ3ZWlnaHQiOiAiMC4wMSIKICAgICAgICAgICAgfSwKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgImh1ZSI6ICIjZmYwMDM1IgogICAgICAgICAgICB9LAogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAibGlnaHRuZXNzIjogIjAiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJ3YXRlciIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogIm9uIgogICAgICAgICAgICB9LAogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAiY29sb3IiOiAiIzgwZTRkOCIKICAgICAgICAgICAgfSwKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgImxpZ2h0bmVzcyI6ICIyNSIKICAgICAgICAgICAgfSwKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInNhdHVyYXRpb24iOiAiLTIzIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfQpd\" el_class=\"\" el_style=\"\" api_key=\"AIzaSyBda9LxQ-Wztqsk6aFI7SkcdiypnKTPfiI\"][/bt_gmaps][/bt_column][bt_column width=\"1/3\" align=\"left\" vertical_align=\"btMiddleVertical\" border=\"no_border\" cell_padding=\"btDoublePadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"#e5e5e5\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_service icon=\"s7_e638\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoMediumSize\" url=\"\" headline=\"Address\" dash=\"\" text=\"3216 W Highland Boulevard\r\nSan Diego, California\" el_class=\"\" el_style=\"\" superheadline=\"\"][/bt_service][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSemiSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_service icon=\"s7_e670\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoMediumSize\" url=\"\" headline=\"Phone\" dash=\"\" text=\"+555-40-220-6672\" el_class=\"\" el_style=\"\" superheadline=\"\"][/bt_service][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSemiSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_service icon=\"s7_e63a\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoMediumSize\" url=\"\" headline=\"Email\" dash=\"\" text=\"office@california.hotel\" el_class=\"\" el_style=\"\" superheadline=\"\"][/bt_service][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"yes\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"7/12\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"News <i>&</i> Blog\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Morbi pharetra faucibus purus, nec pretium enim luctus quis. Pellentesque aliquet venenatis ante, quis pretium neque tristique eget. Integer in luctus urna. Aenean rutrum sodales pharetra.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"5/12\"][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_latest_posts number=\"3\" category=\"\" format=\"horizontal\" post_type=\"blog\" show_excerpt=\"yes\" show_date=\"yes\" show_author=\"yes\" el_class=\"\" el_style=\"\"][/bt_latest_posts][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"321\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"0.3\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Follow us\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Find out what’s hot and new, and get discounts for being a loyal customer and a Hotel California fan.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_icons][bt_icon icon=\"fa_f09a\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f099\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f0d5\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_column][/bt_row][/bt_section]','Street view','\n ','inherit','closed','closed','','837-revision-v1','','','2021-04-07 05:46:28','2021-04-07 05:46:28','',837,'http://mpycdev.theomggroup.com/?p=1065',0,'revision','',0);
INSERT INTO `smrc_posts` VALUES (1066,1,'2021-04-07 05:49:40','2021-04-07 05:49:40','[bt_section layout=\"wide\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\"][bt_slider height=\"medium\" auto_play=\"5000\" hide_arrows=\"\" hide_paging=\"\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item image=\"1048\" el_class=\"\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1025\" el_class=\"\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1026\" el_class=\"btLightSkin\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1035\" el_class=\"btLightSkin\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1050\" el_class=\"btLightSkin\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1049\" el_class=\"btLightSkin\" el_style=\"\"][/bt_slider_item][/bt_slider][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"dark\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#000080\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\"][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\r\n\r\n<em>founded 1953 in historic Monterey, California</em>\r\n\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSemiSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"2/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Our Club\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"A non-profit organization, MPYC is a yachting and social club comprised of over 400 adult and junior members with an interest in coming together to share in boating, sailing, yacht racing and social activities. Membership is not limited to boat owners.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/3\"][/bt_column][/bt_row][bt_row][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"44\" caption_text=\"View\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption=\"Double room\" show_titles=\"no\" caption_title=\"Room details\"][bt_header superheadline=\"CORINTHIAN SPIRIT\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Racing\" headline_size=\"medium\" dash=\"top\" subheadline=\"MPYC has built a reputation for top-notch competitive sailing. We host over 100 races per year and have hosted a variety of national championships.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"43\" caption_text=\"\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"PASSION\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Cruising\" headline_size=\"medium\" dash=\"top\" subheadline=\"Our members feature both power and sailboat owners. It\'s our great honor to live along California\'s Monterey Bay and enjoy the scenic vistas and marine wildlife.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"42\" caption_text=\"\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"COMMITMENT\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Youth Sailing\" headline_size=\"medium\" dash=\"top\" subheadline=\"Since its inception, Monterey Peninsula Yacht Club\'s membership has been proud to invest in the future of sailing and our youth to foster a better future for all.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"41\" caption_text=\"\" size=\"medium\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"RESPONSIBILITY\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Stewardship\" headline_size=\"medium\" dash=\"top\" subheadline=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer mollis viverra diam ac ornare. Donec rhoncus nisi in felis congue, at pulvinar nibh dapibus.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"66\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"0.7\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"special-offers\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"323\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"width: 60px; margin-top: -28px;\"][/bt_image][bt_hr top_spaced=\"topSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"1/2\"][/bt_column][bt_column width=\"1/2\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"GET THE BEST RATE\" headline=\"Offers <i>&</i> Deals\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"If you chose to stay with us you will enjoy modern home comforts in a traditional setting. Whether you are looking for a short weekend break or a longer holiday, we offer a range of packages that we think cater for all.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"1/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"0.7\" inner_background_color=\"#ffffff\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"67\" caption_text=\"Get together\" size=\"\" shape=\"square\" url=\"special-offers\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"Family vacation\" show_titles=\"no\"][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"Get together\" headline=\"Family vacation\" headline_size=\"medium\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"fa_f207\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f13d\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f1eb\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f206\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f1ae\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\r\n\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Integer mollis viverra diam ac ornare. Donec rhoncus nisi in felis congue, at pulvinar nibh dapibus.\r\n\r\n[/bt_text][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/3\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"special-offers\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"2/3\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"0.7\" inner_background_color=\"#ffffff\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"68\" caption_text=\"Celebrate\" size=\"\" shape=\"square\" url=\"special-offers\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"Newlyweds weekend\" show_titles=\"no\"][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"Celebrate\" headline=\"Newlyweds weekend\" headline_size=\"medium\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"fa_f1ba\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f072\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f228\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\r\n\r\nSed ut metus eu neque commodo fringilla imperdiet sed nibh. Sed volutpat fermentum ligula, et maximus ex ultricies sit amet.\r\n\r\n[/bt_text][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/3\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"special-offers\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"2/3\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"0.7\" inner_background_color=\"#ffffff\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"725\" caption_text=\"Procrastinate\" size=\"\" shape=\"square\" url=\"special-offers\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"Lazy weekend\" show_titles=\"no\"][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"Procrastinate\" headline=\"Lazy weekend\" headline_size=\"medium\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"fa_f1ba\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f072\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f1eb\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f000\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f185\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\r\n\r\nPhasellus non bibendum augue. Duis nibh felis, volutpat vitae pulvinar at, tincidunt eget mi. Donec venenatis condimentum fermentum.\r\n\r\n[/bt_text][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/3\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"special-offers\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"2/3\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#e5e5e5\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"322\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"width: 60px; margin-top: -28px;\"][/bt_image][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"7/12\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Activities\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Phasellus blandit a massa vitae congue. Nam ex massa, mattis ut sapien sit amet, consequat sodales risus. Sed interdum, ligula et lobortis faucibus, sem sem placerat augue, eget scelerisque turpis lorem et tellus.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][/bt_column][bt_column width=\"5/12\"][/bt_column][/bt_row][/bt_section][bt_section layout=\"wide\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"dark\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#e5e5e5\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"73\" caption_title=\"Beach voleyball\" caption_text=\"Enjoy the game\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"ENJOY THE GAME\" headline=\"Beach Voleyball\" headline_size=\"medium\" dash=\"top\" subheadline=\"Beach volleyball is ouy visitors favourite sport, highly enjoyable for everyone young or old. Just gather your team on the beach and find the opponents in a matter of minutes. And show what you can do, be a winner!\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_e9ac\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e040\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e041\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"74\" el_class=\"\" el_style=\"\"][bt_image image=\"74\" caption_title=\"Horseback riding\" caption_text=\"Enjoy the beach\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Enjoy the beach\" headline=\"Horseback riding\" headline_size=\"medium\" dash=\"top\" subheadline=\"How about a lazy afternoon with your friends on a hors, while the sun goes down? If you want to chill out, our horse riding team will teach you in a matter of minutes and help you wind down after a good day on the sun.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_ea13\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1e\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e05b\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"75\" el_class=\"\" el_style=\"\"][bt_image image=\"75\" caption_title=\"Waterskiing\" caption_text=\"Enjoy the sea\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Enjoy the sea\" headline=\"Waterskiing\" headline_size=\"medium\" dash=\"top\" subheadline=\"If you are a big fan of water sports, then why not try the waterskiing or waterboarding? At hotel California you will find there\'s an amateur champoionship every year. Rated as the most fun activity by our visitors.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_e05b\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9a3\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9e5\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"76\" el_class=\"\" el_style=\"\"][bt_image image=\"76\" caption_title=\"Paragliding\" caption_text=\"Enjoy the sky\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Enjoy the sky\" headline=\"Parasailing\" headline_size=\"medium\" dash=\"top\" subheadline=\"Enjoy the thrill on the sky with our parasailing team and feel the California sun on your face. The team will help you get your adrenaline high and will be capuring your moments on a high-definition camera.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_ea2f\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"s7_e67b\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9f3\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_slider height=\"auto\" auto_play=\"\" hide_arrows=\"\" hide_paging=\"btSliderHidePaging\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/6\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"78\" caption_text=\"\" size=\"\" shape=\"circle\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][bt_header superheadline=\"June 2016\" headline=\"Alan Jones\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][/bt_column_inner][bt_column_inner width=\"5/6\"][bt_text]\r\n<blockquote>If you chose to stay with us you will enjoy modern home comforts in a traditional setting. Whether you are looking for a short weekend break or a longer holiday, we offer a range of packages that we think cater for all.</blockquote>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/6\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"447\" caption_text=\"\" size=\"\" shape=\"circle\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][/bt_image][bt_header superheadline=\"July 2016\" headline=\"Adrianne White\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][bt_column_inner width=\"5/6\"][bt_text]\r\n<blockquote>If you chose to stay with us you will enjoy modern home comforts in a traditional setting. Whether you are looking for a short weekend break or a longer holiday, we offer a range of packages that we think cater for all.</blockquote>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/1\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_text]\r\n<blockquote>Our mission: to connect our members and our diverse community to the boundless recreational opportunities and proper stewardship of the Monterey Bay and the Pacific Ocean.</blockquote>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][/bt_slider][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/3\" align=\"left\" vertical_align=\"btMiddleVertical\" border=\"no_border\" cell_padding=\"btDoublePadding\" animation=\"animate animate-fadein\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"#e5e5e5\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"IN A NUTSHELL\" headline=\"Hotel California\" headline_size=\"large\" dash=\"bottom\" subheadline=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer mollis viverra diam ac ornare. Donec rhoncus nisi in felis congue, at pulvinar nibh dapibus.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_button text=\"READ MORE\" icon=\"no_icon\" url=\"\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"ExtraSmall\" width=\"Normal\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"2/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_slider height=\"auto\" auto_play=\"\" hide_arrows=\"\" hide_paging=\"btSliderHidePaging\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"81\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"82\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"83\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"84\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"85\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][/bt_slider][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\"][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"2/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_gmaps latitude=\"36.602383\" longitude=\"-121.879245 \" zoom=\"11\" icon=\"342\" height=\"400px\" primary_color=\"\" secondary_color=\"\" water_color=\"\" custom_style=\"WwogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJhZG1pbmlzdHJhdGl2ZSIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImxhYmVscy50ZXh0LmZpbGwiLAogICAgICAgICJzdHlsZXJzIjogWwogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAiY29sb3IiOiAiIzQ0NDQ0NCIKICAgICAgICAgICAgfQogICAgICAgIF0KICAgIH0sCiAgICB7CiAgICAgICAgImZlYXR1cmVUeXBlIjogImxhbmRzY2FwZSIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJjb2xvciI6ICIjZjJmMmYyIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAicG9pIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiYWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInZpc2liaWxpdHkiOiAib2ZmIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAicm9hZCIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJzYXR1cmF0aW9uIjogLTEwMAogICAgICAgICAgICB9LAogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAibGlnaHRuZXNzIjogNDUKICAgICAgICAgICAgfQogICAgICAgIF0KICAgIH0sCiAgICB7CiAgICAgICAgImZlYXR1cmVUeXBlIjogInJvYWQuaGlnaHdheSIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogInNpbXBsaWZpZWQiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJyb2FkLmhpZ2h3YXkiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJnZW9tZXRyeSIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogInNpbXBsaWZpZWQiCiAgICAgICAgICAgIH0sCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJjb2xvciI6ICIjZDc3Mjg3IgogICAgICAgICAgICB9LAogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAibGlnaHRuZXNzIjogIjAiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJyb2FkLmhpZ2h3YXkiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJsYWJlbHMudGV4dCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogIm9uIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAicm9hZC5oaWdod2F5IiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAibGFiZWxzLmljb24iLAogICAgICAgICJzdHlsZXJzIjogWwogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAidmlzaWJpbGl0eSI6ICJvbiIKICAgICAgICAgICAgfQogICAgICAgIF0KICAgIH0sCiAgICB7CiAgICAgICAgImZlYXR1cmVUeXBlIjogInJvYWQuYXJ0ZXJpYWwiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJhbGwiLAogICAgICAgICJzdHlsZXJzIjogWwogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAidmlzaWJpbGl0eSI6ICJvbiIKICAgICAgICAgICAgfQogICAgICAgIF0KICAgIH0sCiAgICB7CiAgICAgICAgImZlYXR1cmVUeXBlIjogInJvYWQuYXJ0ZXJpYWwiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJnZW9tZXRyeS5maWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgImNvbG9yIjogIiNkNzcyODciCiAgICAgICAgICAgIH0sCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJsaWdodG5lc3MiOiAiNzUiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJyb2FkLmFydGVyaWFsIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAibGFiZWxzLmljb24iLAogICAgICAgICJzdHlsZXJzIjogWwogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAidmlzaWJpbGl0eSI6ICJvZmYiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJyb2FkLmxvY2FsIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiZ2VvbWV0cnkuZmlsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJsaWdodG5lc3MiOiAiNzUiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJ0cmFuc2l0IiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiYWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInZpc2liaWxpdHkiOiAib2ZmIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAidHJhbnNpdC5saW5lIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiYWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInZpc2liaWxpdHkiOiAib24iCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJ0cmFuc2l0LnN0YXRpb24uYnVzIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiYWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInZpc2liaWxpdHkiOiAib24iCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJ0cmFuc2l0LnN0YXRpb24ucmFpbCIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogIm9uIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAidHJhbnNpdC5zdGF0aW9uLnJhaWwiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJsYWJlbHMuaWNvbiIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ3ZWlnaHQiOiAiMC4wMSIKICAgICAgICAgICAgfSwKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgImh1ZSI6ICIjZmYwMDM1IgogICAgICAgICAgICB9LAogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAibGlnaHRuZXNzIjogIjAiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJ3YXRlciIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogIm9uIgogICAgICAgICAgICB9LAogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAiY29sb3IiOiAiIzgwZTRkOCIKICAgICAgICAgICAgfSwKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgImxpZ2h0bmVzcyI6ICIyNSIKICAgICAgICAgICAgfSwKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInNhdHVyYXRpb24iOiAiLTIzIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfQpd\" el_class=\"\" el_style=\"\" api_key=\"AIzaSyBda9LxQ-Wztqsk6aFI7SkcdiypnKTPfiI\"][/bt_gmaps][/bt_column][bt_column width=\"1/3\" align=\"left\" vertical_align=\"btMiddleVertical\" border=\"no_border\" cell_padding=\"btDoublePadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"#e5e5e5\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_service icon=\"s7_e638\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoMediumSize\" url=\"\" headline=\"Address\" dash=\"\" text=\"3216 W Highland Boulevard\r\nSan Diego, California\" el_class=\"\" el_style=\"\" superheadline=\"\"][/bt_service][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSemiSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_service icon=\"s7_e670\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoMediumSize\" url=\"\" headline=\"Phone\" dash=\"\" text=\"+555-40-220-6672\" el_class=\"\" el_style=\"\" superheadline=\"\"][/bt_service][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSemiSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_service icon=\"s7_e63a\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoMediumSize\" url=\"\" headline=\"Email\" dash=\"\" text=\"office@california.hotel\" el_class=\"\" el_style=\"\" superheadline=\"\"][/bt_service][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"yes\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"7/12\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"News <i>&</i> Blog\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Morbi pharetra faucibus purus, nec pretium enim luctus quis. Pellentesque aliquet venenatis ante, quis pretium neque tristique eget. Integer in luctus urna. Aenean rutrum sodales pharetra.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"5/12\"][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_latest_posts number=\"3\" category=\"\" format=\"horizontal\" post_type=\"blog\" show_excerpt=\"yes\" show_date=\"yes\" show_author=\"yes\" el_class=\"\" el_style=\"\"][/bt_latest_posts][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"321\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"0.3\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Follow us\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Find out what’s hot and new, and get discounts for being a loyal customer and a Hotel California fan.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_icons][bt_icon icon=\"fa_f09a\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f099\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f0d5\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_column][/bt_row][/bt_section]','Street view','\n ','inherit','closed','closed','','837-revision-v1','','','2021-04-07 05:49:40','2021-04-07 05:49:40','',837,'http://mpycdev.theomggroup.com/?p=1066',0,'revision','',0);
INSERT INTO `smrc_posts` VALUES (1067,1,'2021-04-07 05:50:30','2021-04-07 05:50:30','[bt_section layout=\"wide\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\"][bt_slider height=\"medium\" auto_play=\"5000\" hide_arrows=\"\" hide_paging=\"\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item image=\"1048\" el_class=\"\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1025\" el_class=\"\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1026\" el_class=\"btLightSkin\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1035\" el_class=\"btLightSkin\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1050\" el_class=\"btLightSkin\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1049\" el_class=\"btLightSkin\" el_style=\"\"][/bt_slider_item][/bt_slider][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"dark\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#000080\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\"][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\r\n\r\n<em>founded 1953 in historic Monterey, California</em>\r\n\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSemiSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"2/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Our Club\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"A non-profit organization, MPYC is a yachting and social club comprised of over 400 adult and junior members with an interest in coming together to share in boating, sailing, yacht racing and social activities. Membership is not limited to boat owners.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/3\"][/bt_column][/bt_row][bt_row][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"44\" caption_text=\"View\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption=\"Double room\" show_titles=\"no\" caption_title=\"Room details\"][bt_header superheadline=\"CORINTHIAN SPIRIT\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Racing\" headline_size=\"medium\" dash=\"top\" subheadline=\"MPYC has built a reputation for top-notch competitive sailing. We host over 100 races per year and have hosted a variety of national championships.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"43\" caption_text=\"\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"PASSION\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Cruising\" headline_size=\"medium\" dash=\"top\" subheadline=\"Our members feature both power and sailboat owners. It\'s our great honor to live along California\'s Monterey Bay and enjoy the scenic vistas and marine wildlife.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"42\" caption_text=\"\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"COMMITMENT\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Youth Sailing\" headline_size=\"medium\" dash=\"top\" subheadline=\"Since its inception, Monterey Peninsula Yacht Club\'s has been proud to invest in the future of sailing and our youth to foster a better future for all us, and our club.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"41\" caption_text=\"\" size=\"medium\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"RESPONSIBILITY\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Stewardship\" headline_size=\"medium\" dash=\"top\" subheadline=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer mollis viverra diam ac ornare. Donec rhoncus nisi in felis congue, at pulvinar nibh dapibus.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"66\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"0.7\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"special-offers\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"323\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"width: 60px; margin-top: -28px;\"][/bt_image][bt_hr top_spaced=\"topSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"1/2\"][/bt_column][bt_column width=\"1/2\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"GET THE BEST RATE\" headline=\"Offers <i>&</i> Deals\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"If you chose to stay with us you will enjoy modern home comforts in a traditional setting. Whether you are looking for a short weekend break or a longer holiday, we offer a range of packages that we think cater for all.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"1/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"0.7\" inner_background_color=\"#ffffff\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"67\" caption_text=\"Get together\" size=\"\" shape=\"square\" url=\"special-offers\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"Family vacation\" show_titles=\"no\"][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"Get together\" headline=\"Family vacation\" headline_size=\"medium\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"fa_f207\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f13d\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f1eb\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f206\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f1ae\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\r\n\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Integer mollis viverra diam ac ornare. Donec rhoncus nisi in felis congue, at pulvinar nibh dapibus.\r\n\r\n[/bt_text][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/3\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"special-offers\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"2/3\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"0.7\" inner_background_color=\"#ffffff\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"68\" caption_text=\"Celebrate\" size=\"\" shape=\"square\" url=\"special-offers\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"Newlyweds weekend\" show_titles=\"no\"][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"Celebrate\" headline=\"Newlyweds weekend\" headline_size=\"medium\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"fa_f1ba\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f072\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f228\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\r\n\r\nSed ut metus eu neque commodo fringilla imperdiet sed nibh. Sed volutpat fermentum ligula, et maximus ex ultricies sit amet.\r\n\r\n[/bt_text][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/3\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"special-offers\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"2/3\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"0.7\" inner_background_color=\"#ffffff\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"725\" caption_text=\"Procrastinate\" size=\"\" shape=\"square\" url=\"special-offers\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"Lazy weekend\" show_titles=\"no\"][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"Procrastinate\" headline=\"Lazy weekend\" headline_size=\"medium\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"fa_f1ba\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f072\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f1eb\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f000\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f185\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\r\n\r\nPhasellus non bibendum augue. Duis nibh felis, volutpat vitae pulvinar at, tincidunt eget mi. Donec venenatis condimentum fermentum.\r\n\r\n[/bt_text][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/3\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"special-offers\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"2/3\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#e5e5e5\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"322\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"width: 60px; margin-top: -28px;\"][/bt_image][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"7/12\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Activities\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Phasellus blandit a massa vitae congue. Nam ex massa, mattis ut sapien sit amet, consequat sodales risus. Sed interdum, ligula et lobortis faucibus, sem sem placerat augue, eget scelerisque turpis lorem et tellus.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][/bt_column][bt_column width=\"5/12\"][/bt_column][/bt_row][/bt_section][bt_section layout=\"wide\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"dark\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#e5e5e5\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"73\" caption_title=\"Beach voleyball\" caption_text=\"Enjoy the game\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"ENJOY THE GAME\" headline=\"Beach Voleyball\" headline_size=\"medium\" dash=\"top\" subheadline=\"Beach volleyball is ouy visitors favourite sport, highly enjoyable for everyone young or old. Just gather your team on the beach and find the opponents in a matter of minutes. And show what you can do, be a winner!\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_e9ac\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e040\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e041\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"74\" el_class=\"\" el_style=\"\"][bt_image image=\"74\" caption_title=\"Horseback riding\" caption_text=\"Enjoy the beach\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Enjoy the beach\" headline=\"Horseback riding\" headline_size=\"medium\" dash=\"top\" subheadline=\"How about a lazy afternoon with your friends on a hors, while the sun goes down? If you want to chill out, our horse riding team will teach you in a matter of minutes and help you wind down after a good day on the sun.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_ea13\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1e\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e05b\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"75\" el_class=\"\" el_style=\"\"][bt_image image=\"75\" caption_title=\"Waterskiing\" caption_text=\"Enjoy the sea\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Enjoy the sea\" headline=\"Waterskiing\" headline_size=\"medium\" dash=\"top\" subheadline=\"If you are a big fan of water sports, then why not try the waterskiing or waterboarding? At hotel California you will find there\'s an amateur champoionship every year. Rated as the most fun activity by our visitors.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_e05b\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9a3\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9e5\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"76\" el_class=\"\" el_style=\"\"][bt_image image=\"76\" caption_title=\"Paragliding\" caption_text=\"Enjoy the sky\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Enjoy the sky\" headline=\"Parasailing\" headline_size=\"medium\" dash=\"top\" subheadline=\"Enjoy the thrill on the sky with our parasailing team and feel the California sun on your face. The team will help you get your adrenaline high and will be capuring your moments on a high-definition camera.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_ea2f\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"s7_e67b\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9f3\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_slider height=\"auto\" auto_play=\"\" hide_arrows=\"\" hide_paging=\"btSliderHidePaging\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/6\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"78\" caption_text=\"\" size=\"\" shape=\"circle\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][bt_header superheadline=\"June 2016\" headline=\"Alan Jones\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][/bt_column_inner][bt_column_inner width=\"5/6\"][bt_text]\r\n<blockquote>If you chose to stay with us you will enjoy modern home comforts in a traditional setting. Whether you are looking for a short weekend break or a longer holiday, we offer a range of packages that we think cater for all.</blockquote>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/6\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"447\" caption_text=\"\" size=\"\" shape=\"circle\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][/bt_image][bt_header superheadline=\"July 2016\" headline=\"Adrianne White\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][bt_column_inner width=\"5/6\"][bt_text]\r\n<blockquote>If you chose to stay with us you will enjoy modern home comforts in a traditional setting. Whether you are looking for a short weekend break or a longer holiday, we offer a range of packages that we think cater for all.</blockquote>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/1\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_text]\r\n<blockquote>Our mission: to connect our members and our diverse community to the boundless recreational opportunities and proper stewardship of the Monterey Bay and the Pacific Ocean.</blockquote>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][/bt_slider][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/3\" align=\"left\" vertical_align=\"btMiddleVertical\" border=\"no_border\" cell_padding=\"btDoublePadding\" animation=\"animate animate-fadein\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"#e5e5e5\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"IN A NUTSHELL\" headline=\"Hotel California\" headline_size=\"large\" dash=\"bottom\" subheadline=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer mollis viverra diam ac ornare. Donec rhoncus nisi in felis congue, at pulvinar nibh dapibus.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_button text=\"READ MORE\" icon=\"no_icon\" url=\"\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"ExtraSmall\" width=\"Normal\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"2/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_slider height=\"auto\" auto_play=\"\" hide_arrows=\"\" hide_paging=\"btSliderHidePaging\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"81\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"82\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"83\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"84\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"85\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][/bt_slider][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\"][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"2/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_gmaps latitude=\"36.602383\" longitude=\"-121.879245 \" zoom=\"11\" icon=\"342\" height=\"400px\" primary_color=\"\" secondary_color=\"\" water_color=\"\" custom_style=\"WwogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJhZG1pbmlzdHJhdGl2ZSIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImxhYmVscy50ZXh0LmZpbGwiLAogICAgICAgICJzdHlsZXJzIjogWwogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAiY29sb3IiOiAiIzQ0NDQ0NCIKICAgICAgICAgICAgfQogICAgICAgIF0KICAgIH0sCiAgICB7CiAgICAgICAgImZlYXR1cmVUeXBlIjogImxhbmRzY2FwZSIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJjb2xvciI6ICIjZjJmMmYyIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAicG9pIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiYWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInZpc2liaWxpdHkiOiAib2ZmIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAicm9hZCIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJzYXR1cmF0aW9uIjogLTEwMAogICAgICAgICAgICB9LAogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAibGlnaHRuZXNzIjogNDUKICAgICAgICAgICAgfQogICAgICAgIF0KICAgIH0sCiAgICB7CiAgICAgICAgImZlYXR1cmVUeXBlIjogInJvYWQuaGlnaHdheSIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogInNpbXBsaWZpZWQiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJyb2FkLmhpZ2h3YXkiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJnZW9tZXRyeSIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogInNpbXBsaWZpZWQiCiAgICAgICAgICAgIH0sCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJjb2xvciI6ICIjZDc3Mjg3IgogICAgICAgICAgICB9LAogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAibGlnaHRuZXNzIjogIjAiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJyb2FkLmhpZ2h3YXkiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJsYWJlbHMudGV4dCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogIm9uIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAicm9hZC5oaWdod2F5IiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAibGFiZWxzLmljb24iLAogICAgICAgICJzdHlsZXJzIjogWwogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAidmlzaWJpbGl0eSI6ICJvbiIKICAgICAgICAgICAgfQogICAgICAgIF0KICAgIH0sCiAgICB7CiAgICAgICAgImZlYXR1cmVUeXBlIjogInJvYWQuYXJ0ZXJpYWwiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJhbGwiLAogICAgICAgICJzdHlsZXJzIjogWwogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAidmlzaWJpbGl0eSI6ICJvbiIKICAgICAgICAgICAgfQogICAgICAgIF0KICAgIH0sCiAgICB7CiAgICAgICAgImZlYXR1cmVUeXBlIjogInJvYWQuYXJ0ZXJpYWwiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJnZW9tZXRyeS5maWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgImNvbG9yIjogIiNkNzcyODciCiAgICAgICAgICAgIH0sCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJsaWdodG5lc3MiOiAiNzUiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJyb2FkLmFydGVyaWFsIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAibGFiZWxzLmljb24iLAogICAgICAgICJzdHlsZXJzIjogWwogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAidmlzaWJpbGl0eSI6ICJvZmYiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJyb2FkLmxvY2FsIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiZ2VvbWV0cnkuZmlsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJsaWdodG5lc3MiOiAiNzUiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJ0cmFuc2l0IiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiYWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInZpc2liaWxpdHkiOiAib2ZmIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAidHJhbnNpdC5saW5lIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiYWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInZpc2liaWxpdHkiOiAib24iCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJ0cmFuc2l0LnN0YXRpb24uYnVzIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiYWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInZpc2liaWxpdHkiOiAib24iCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJ0cmFuc2l0LnN0YXRpb24ucmFpbCIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogIm9uIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAidHJhbnNpdC5zdGF0aW9uLnJhaWwiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJsYWJlbHMuaWNvbiIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ3ZWlnaHQiOiAiMC4wMSIKICAgICAgICAgICAgfSwKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgImh1ZSI6ICIjZmYwMDM1IgogICAgICAgICAgICB9LAogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAibGlnaHRuZXNzIjogIjAiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJ3YXRlciIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogIm9uIgogICAgICAgICAgICB9LAogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAiY29sb3IiOiAiIzgwZTRkOCIKICAgICAgICAgICAgfSwKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgImxpZ2h0bmVzcyI6ICIyNSIKICAgICAgICAgICAgfSwKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInNhdHVyYXRpb24iOiAiLTIzIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfQpd\" el_class=\"\" el_style=\"\" api_key=\"AIzaSyBda9LxQ-Wztqsk6aFI7SkcdiypnKTPfiI\"][/bt_gmaps][/bt_column][bt_column width=\"1/3\" align=\"left\" vertical_align=\"btMiddleVertical\" border=\"no_border\" cell_padding=\"btDoublePadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"#e5e5e5\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_service icon=\"s7_e638\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoMediumSize\" url=\"\" headline=\"Address\" dash=\"\" text=\"3216 W Highland Boulevard\r\nSan Diego, California\" el_class=\"\" el_style=\"\" superheadline=\"\"][/bt_service][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSemiSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_service icon=\"s7_e670\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoMediumSize\" url=\"\" headline=\"Phone\" dash=\"\" text=\"+555-40-220-6672\" el_class=\"\" el_style=\"\" superheadline=\"\"][/bt_service][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSemiSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_service icon=\"s7_e63a\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoMediumSize\" url=\"\" headline=\"Email\" dash=\"\" text=\"office@california.hotel\" el_class=\"\" el_style=\"\" superheadline=\"\"][/bt_service][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"yes\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"7/12\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"News <i>&</i> Blog\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Morbi pharetra faucibus purus, nec pretium enim luctus quis. Pellentesque aliquet venenatis ante, quis pretium neque tristique eget. Integer in luctus urna. Aenean rutrum sodales pharetra.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"5/12\"][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_latest_posts number=\"3\" category=\"\" format=\"horizontal\" post_type=\"blog\" show_excerpt=\"yes\" show_date=\"yes\" show_author=\"yes\" el_class=\"\" el_style=\"\"][/bt_latest_posts][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"321\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"0.3\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Follow us\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Find out what’s hot and new, and get discounts for being a loyal customer and a Hotel California fan.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_icons][bt_icon icon=\"fa_f09a\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f099\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f0d5\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_column][/bt_row][/bt_section]','Street view','\n ','inherit','closed','closed','','837-revision-v1','','','2021-04-07 05:50:30','2021-04-07 05:50:30','',837,'http://mpycdev.theomggroup.com/?p=1067',0,'revision','',0);
INSERT INTO `smrc_posts` VALUES (1068,1,'2021-04-07 08:00:39','2021-04-07 08:00:39','','race-12a','','inherit','open','closed','','race-12a','','','2021-04-07 08:00:39','2021-04-07 08:00:39','',837,'http://mpycdev.theomggroup.com/wp-content/uploads/2021/04/race-12a.jpg',0,'attachment','image/jpeg',0);
INSERT INTO `smrc_posts` VALUES (1069,1,'2021-04-07 08:00:40','2021-04-07 08:00:40','','rowing_in_marina','','inherit','open','closed','','rowing_in_marina','','','2021-04-07 08:00:40','2021-04-07 08:00:40','',837,'http://mpycdev.theomggroup.com/wp-content/uploads/2021/04/rowing_in_marina.jpg',0,'attachment','image/jpeg',0);
INSERT INTO `smrc_posts` VALUES (1070,1,'2021-04-07 08:01:16','2021-04-07 08:01:16','','juniors_racing','','inherit','open','closed','','juniors_racing','','','2021-04-07 08:01:16','2021-04-07 08:01:16','',837,'http://mpycdev.theomggroup.com/wp-content/uploads/2021/04/juniors_racing.jpg',0,'attachment','image/jpeg',0);
INSERT INTO `smrc_posts` VALUES (1071,1,'2021-04-07 08:01:17','2021-04-07 08:01:17','','lounging_on_deck','','inherit','open','closed','','lounging_on_deck','','','2021-04-07 08:01:17','2021-04-07 08:01:17','',837,'http://mpycdev.theomggroup.com/wp-content/uploads/2021/04/lounging_on_deck.jpg',0,'attachment','image/jpeg',0);
INSERT INTO `smrc_posts` VALUES (1072,1,'2021-04-07 08:04:09','2021-04-07 08:04:09','[bt_section layout=\"wide\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\"][bt_slider height=\"medium\" auto_play=\"5000\" hide_arrows=\"\" hide_paging=\"\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item image=\"1048\" el_class=\"\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1025\" el_class=\"\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1026\" el_class=\"btLightSkin\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1035\" el_class=\"btLightSkin\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1050\" el_class=\"btLightSkin\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1049\" el_class=\"btLightSkin\" el_style=\"\"][/bt_slider_item][/bt_slider][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"dark\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#000080\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\"][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\r\n\r\n<em>founded 1953 in historic Monterey, California</em>\r\n\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSemiSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"2/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Our Club\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"A non-profit organization, MPYC is a yachting and social club comprised of over 400 adult and junior members with an interest in coming together to share in boating, sailing, yacht racing and social activities. Membership is not limited to boat owners.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/3\"][/bt_column][/bt_row][bt_row][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1068\" caption_text=\"View\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption=\"Double room\" show_titles=\"no\" caption_title=\"Room details\"][bt_header superheadline=\"CORINTHIAN SPIRIT\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Racing\" headline_size=\"medium\" dash=\"top\" subheadline=\"MPYC has built a reputation for top-notch competitive sailing. We host over 100 races per year and have hosted a variety of national championships.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1071\" caption_text=\"\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"PASSION\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Cruising\" headline_size=\"medium\" dash=\"top\" subheadline=\"Our members feature both power and sailboat owners. It\'s our great honor to live along California\'s Monterey Bay and enjoy the scenic vistas and marine wildlife.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1069\" caption_text=\"\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"DRIVE\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Youth Sailing\" headline_size=\"medium\" dash=\"top\" subheadline=\"Since its inception, Monterey Peninsula Yacht Club\'s has been proud to invest in the future of sailing and our youth to foster a better future for all us, and our club.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1070\" caption_text=\"\" size=\"medium\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"COMMITMENT\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Stewardship\" headline_size=\"medium\" dash=\"top\" subheadline=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer mollis viverra diam ac ornare. Donec rhoncus nisi in felis congue, at pulvinar nibh dapibus.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"66\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"0.7\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"special-offers\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"323\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"width: 60px; margin-top: -28px;\"][/bt_image][bt_hr top_spaced=\"topSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"1/2\"][/bt_column][bt_column width=\"1/2\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"GET THE BEST RATE\" headline=\"Offers <i>&</i> Deals\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"If you chose to stay with us you will enjoy modern home comforts in a traditional setting. Whether you are looking for a short weekend break or a longer holiday, we offer a range of packages that we think cater for all.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"1/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"0.7\" inner_background_color=\"#ffffff\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"67\" caption_text=\"Get together\" size=\"\" shape=\"square\" url=\"special-offers\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"Family vacation\" show_titles=\"no\"][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"Get together\" headline=\"Family vacation\" headline_size=\"medium\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"fa_f207\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f13d\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f1eb\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f206\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f1ae\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\r\n\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Integer mollis viverra diam ac ornare. Donec rhoncus nisi in felis congue, at pulvinar nibh dapibus.\r\n\r\n[/bt_text][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/3\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"special-offers\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"2/3\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"0.7\" inner_background_color=\"#ffffff\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"68\" caption_text=\"Celebrate\" size=\"\" shape=\"square\" url=\"special-offers\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"Newlyweds weekend\" show_titles=\"no\"][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"Celebrate\" headline=\"Newlyweds weekend\" headline_size=\"medium\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"fa_f1ba\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f072\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f228\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\r\n\r\nSed ut metus eu neque commodo fringilla imperdiet sed nibh. Sed volutpat fermentum ligula, et maximus ex ultricies sit amet.\r\n\r\n[/bt_text][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/3\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"special-offers\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"2/3\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"0.7\" inner_background_color=\"#ffffff\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"725\" caption_text=\"Procrastinate\" size=\"\" shape=\"square\" url=\"special-offers\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"Lazy weekend\" show_titles=\"no\"][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"Procrastinate\" headline=\"Lazy weekend\" headline_size=\"medium\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"fa_f1ba\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f072\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f1eb\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f000\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f185\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\r\n\r\nPhasellus non bibendum augue. Duis nibh felis, volutpat vitae pulvinar at, tincidunt eget mi. Donec venenatis condimentum fermentum.\r\n\r\n[/bt_text][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/3\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"special-offers\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"2/3\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#e5e5e5\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"322\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"width: 60px; margin-top: -28px;\"][/bt_image][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"7/12\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Activities\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Phasellus blandit a massa vitae congue. Nam ex massa, mattis ut sapien sit amet, consequat sodales risus. Sed interdum, ligula et lobortis faucibus, sem sem placerat augue, eget scelerisque turpis lorem et tellus.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][/bt_column][bt_column width=\"5/12\"][/bt_column][/bt_row][/bt_section][bt_section layout=\"wide\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"dark\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#e5e5e5\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"73\" caption_title=\"Beach voleyball\" caption_text=\"Enjoy the game\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"ENJOY THE GAME\" headline=\"Beach Voleyball\" headline_size=\"medium\" dash=\"top\" subheadline=\"Beach volleyball is ouy visitors favourite sport, highly enjoyable for everyone young or old. Just gather your team on the beach and find the opponents in a matter of minutes. And show what you can do, be a winner!\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_e9ac\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e040\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e041\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"74\" el_class=\"\" el_style=\"\"][bt_image image=\"74\" caption_title=\"Horseback riding\" caption_text=\"Enjoy the beach\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Enjoy the beach\" headline=\"Horseback riding\" headline_size=\"medium\" dash=\"top\" subheadline=\"How about a lazy afternoon with your friends on a hors, while the sun goes down? If you want to chill out, our horse riding team will teach you in a matter of minutes and help you wind down after a good day on the sun.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_ea13\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1e\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e05b\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"75\" el_class=\"\" el_style=\"\"][bt_image image=\"75\" caption_title=\"Waterskiing\" caption_text=\"Enjoy the sea\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Enjoy the sea\" headline=\"Waterskiing\" headline_size=\"medium\" dash=\"top\" subheadline=\"If you are a big fan of water sports, then why not try the waterskiing or waterboarding? At hotel California you will find there\'s an amateur champoionship every year. Rated as the most fun activity by our visitors.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_e05b\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9a3\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9e5\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"76\" el_class=\"\" el_style=\"\"][bt_image image=\"76\" caption_title=\"Paragliding\" caption_text=\"Enjoy the sky\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Enjoy the sky\" headline=\"Parasailing\" headline_size=\"medium\" dash=\"top\" subheadline=\"Enjoy the thrill on the sky with our parasailing team and feel the California sun on your face. The team will help you get your adrenaline high and will be capuring your moments on a high-definition camera.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_ea2f\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"s7_e67b\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9f3\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_slider height=\"auto\" auto_play=\"\" hide_arrows=\"\" hide_paging=\"btSliderHidePaging\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/6\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"78\" caption_text=\"\" size=\"\" shape=\"circle\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][bt_header superheadline=\"June 2016\" headline=\"Alan Jones\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][/bt_column_inner][bt_column_inner width=\"5/6\"][bt_text]\r\n<blockquote>If you chose to stay with us you will enjoy modern home comforts in a traditional setting. Whether you are looking for a short weekend break or a longer holiday, we offer a range of packages that we think cater for all.</blockquote>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/6\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"447\" caption_text=\"\" size=\"\" shape=\"circle\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][/bt_image][bt_header superheadline=\"July 2016\" headline=\"Adrianne White\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][bt_column_inner width=\"5/6\"][bt_text]\r\n<blockquote>If you chose to stay with us you will enjoy modern home comforts in a traditional setting. Whether you are looking for a short weekend break or a longer holiday, we offer a range of packages that we think cater for all.</blockquote>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/1\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_text]\r\n<blockquote>Our mission: to connect our members and our diverse community to the boundless recreational opportunities and proper stewardship of the Monterey Bay and the Pacific Ocean.</blockquote>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][/bt_slider][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/3\" align=\"left\" vertical_align=\"btMiddleVertical\" border=\"no_border\" cell_padding=\"btDoublePadding\" animation=\"animate animate-fadein\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"#e5e5e5\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"IN A NUTSHELL\" headline=\"Hotel California\" headline_size=\"large\" dash=\"bottom\" subheadline=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer mollis viverra diam ac ornare. Donec rhoncus nisi in felis congue, at pulvinar nibh dapibus.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_button text=\"READ MORE\" icon=\"no_icon\" url=\"\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"ExtraSmall\" width=\"Normal\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"2/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_slider height=\"auto\" auto_play=\"\" hide_arrows=\"\" hide_paging=\"btSliderHidePaging\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"81\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"82\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"83\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"84\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"85\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][/bt_slider][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\"][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"2/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_gmaps latitude=\"36.602383\" longitude=\"-121.879245 \" zoom=\"11\" icon=\"342\" height=\"400px\" primary_color=\"\" secondary_color=\"\" water_color=\"\" custom_style=\"WwogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJhZG1pbmlzdHJhdGl2ZSIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImxhYmVscy50ZXh0LmZpbGwiLAogICAgICAgICJzdHlsZXJzIjogWwogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAiY29sb3IiOiAiIzQ0NDQ0NCIKICAgICAgICAgICAgfQogICAgICAgIF0KICAgIH0sCiAgICB7CiAgICAgICAgImZlYXR1cmVUeXBlIjogImxhbmRzY2FwZSIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJjb2xvciI6ICIjZjJmMmYyIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAicG9pIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiYWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInZpc2liaWxpdHkiOiAib2ZmIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAicm9hZCIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJzYXR1cmF0aW9uIjogLTEwMAogICAgICAgICAgICB9LAogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAibGlnaHRuZXNzIjogNDUKICAgICAgICAgICAgfQogICAgICAgIF0KICAgIH0sCiAgICB7CiAgICAgICAgImZlYXR1cmVUeXBlIjogInJvYWQuaGlnaHdheSIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogInNpbXBsaWZpZWQiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJyb2FkLmhpZ2h3YXkiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJnZW9tZXRyeSIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogInNpbXBsaWZpZWQiCiAgICAgICAgICAgIH0sCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJjb2xvciI6ICIjZDc3Mjg3IgogICAgICAgICAgICB9LAogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAibGlnaHRuZXNzIjogIjAiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJyb2FkLmhpZ2h3YXkiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJsYWJlbHMudGV4dCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogIm9uIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAicm9hZC5oaWdod2F5IiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAibGFiZWxzLmljb24iLAogICAgICAgICJzdHlsZXJzIjogWwogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAidmlzaWJpbGl0eSI6ICJvbiIKICAgICAgICAgICAgfQogICAgICAgIF0KICAgIH0sCiAgICB7CiAgICAgICAgImZlYXR1cmVUeXBlIjogInJvYWQuYXJ0ZXJpYWwiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJhbGwiLAogICAgICAgICJzdHlsZXJzIjogWwogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAidmlzaWJpbGl0eSI6ICJvbiIKICAgICAgICAgICAgfQogICAgICAgIF0KICAgIH0sCiAgICB7CiAgICAgICAgImZlYXR1cmVUeXBlIjogInJvYWQuYXJ0ZXJpYWwiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJnZW9tZXRyeS5maWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgImNvbG9yIjogIiNkNzcyODciCiAgICAgICAgICAgIH0sCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJsaWdodG5lc3MiOiAiNzUiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJyb2FkLmFydGVyaWFsIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAibGFiZWxzLmljb24iLAogICAgICAgICJzdHlsZXJzIjogWwogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAidmlzaWJpbGl0eSI6ICJvZmYiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJyb2FkLmxvY2FsIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiZ2VvbWV0cnkuZmlsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJsaWdodG5lc3MiOiAiNzUiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJ0cmFuc2l0IiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiYWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInZpc2liaWxpdHkiOiAib2ZmIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAidHJhbnNpdC5saW5lIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiYWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInZpc2liaWxpdHkiOiAib24iCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJ0cmFuc2l0LnN0YXRpb24uYnVzIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiYWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInZpc2liaWxpdHkiOiAib24iCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJ0cmFuc2l0LnN0YXRpb24ucmFpbCIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogIm9uIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAidHJhbnNpdC5zdGF0aW9uLnJhaWwiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJsYWJlbHMuaWNvbiIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ3ZWlnaHQiOiAiMC4wMSIKICAgICAgICAgICAgfSwKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgImh1ZSI6ICIjZmYwMDM1IgogICAgICAgICAgICB9LAogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAibGlnaHRuZXNzIjogIjAiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJ3YXRlciIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogIm9uIgogICAgICAgICAgICB9LAogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAiY29sb3IiOiAiIzgwZTRkOCIKICAgICAgICAgICAgfSwKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgImxpZ2h0bmVzcyI6ICIyNSIKICAgICAgICAgICAgfSwKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInNhdHVyYXRpb24iOiAiLTIzIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfQpd\" el_class=\"\" el_style=\"\" api_key=\"AIzaSyBda9LxQ-Wztqsk6aFI7SkcdiypnKTPfiI\"][/bt_gmaps][/bt_column][bt_column width=\"1/3\" align=\"left\" vertical_align=\"btMiddleVertical\" border=\"no_border\" cell_padding=\"btDoublePadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"#e5e5e5\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_service icon=\"s7_e638\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoMediumSize\" url=\"\" headline=\"Address\" dash=\"\" text=\"3216 W Highland Boulevard\r\nSan Diego, California\" el_class=\"\" el_style=\"\" superheadline=\"\"][/bt_service][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSemiSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_service icon=\"s7_e670\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoMediumSize\" url=\"\" headline=\"Phone\" dash=\"\" text=\"+555-40-220-6672\" el_class=\"\" el_style=\"\" superheadline=\"\"][/bt_service][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSemiSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_service icon=\"s7_e63a\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoMediumSize\" url=\"\" headline=\"Email\" dash=\"\" text=\"office@california.hotel\" el_class=\"\" el_style=\"\" superheadline=\"\"][/bt_service][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"yes\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"7/12\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"News <i>&</i> Blog\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Morbi pharetra faucibus purus, nec pretium enim luctus quis. Pellentesque aliquet venenatis ante, quis pretium neque tristique eget. Integer in luctus urna. Aenean rutrum sodales pharetra.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"5/12\"][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_latest_posts number=\"3\" category=\"\" format=\"horizontal\" post_type=\"blog\" show_excerpt=\"yes\" show_date=\"yes\" show_author=\"yes\" el_class=\"\" el_style=\"\"][/bt_latest_posts][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"321\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"0.3\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Follow us\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Find out what’s hot and new, and get discounts for being a loyal customer and a Hotel California fan.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_icons][bt_icon icon=\"fa_f09a\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f099\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f0d5\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_column][/bt_row][/bt_section]','Street view','\n ','inherit','closed','closed','','837-revision-v1','','','2021-04-07 08:04:09','2021-04-07 08:04:09','',837,'http://mpycdev.theomggroup.com/?p=1072',0,'revision','',0);
INSERT INTO `smrc_posts` VALUES (1073,1,'2021-04-07 08:15:38','2021-04-07 08:15:38','[bt_section layout=\"wide\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\"][bt_slider height=\"medium\" auto_play=\"5000\" hide_arrows=\"\" hide_paging=\"\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item image=\"1048\" el_class=\"\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1025\" el_class=\"\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1026\" el_class=\"btLightSkin\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1035\" el_class=\"btLightSkin\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1050\" el_class=\"btLightSkin\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1049\" el_class=\"btLightSkin\" el_style=\"\"][/bt_slider_item][/bt_slider][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"dark\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#000080\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\"][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\r\n\r\n<em>founded 1953 in historic Monterey, California</em>\r\n\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSemiSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"2/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Our Club\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"A non-profit organization, MPYC is a yachting and social club comprised of over 400 adult and junior members with an interest in coming together to share in boating, sailing, yacht racing and social activities. Membership is not limited to boat owners.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/3\"][/bt_column][/bt_row][bt_row][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1068\" caption_text=\"View\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption=\"Double room\" show_titles=\"no\" caption_title=\"Room details\"][bt_header superheadline=\"CORINTHIAN SPIRIT\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Racing\" headline_size=\"medium\" dash=\"top\" subheadline=\"MPYC has built a reputation for top-notch competitive sailing. We host over 100 races per year and have hosted a variety of national championships.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1071\" caption_text=\"\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"PASSION\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Cruising\" headline_size=\"medium\" dash=\"top\" subheadline=\"Our members feature both power and sailboat owners. It\'s our great honor to live along California\'s Monterey Bay and enjoy the scenic vistas and marine wildlife.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1069\" caption_text=\"\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"DRIVE\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Rowing\" headline_size=\"medium\" dash=\"top\" subheadline=\"Our beginning, recreational and advanced rowers enjoy short and long distance local routes along Monterey and Pacific Grove and compete in local, West Coast and U.S. regattas. \" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1070\" caption_text=\"\" size=\"medium\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"COMMITMENT\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Youth Sailing\" headline_size=\"medium\" dash=\"top\" subheadline=\"Since its inception, Monterey Peninsula Yacht Club\'s has been proud to invest in the future of sailing and our youth to foster a better future for all us, and our club.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"66\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"0.7\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"special-offers\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"323\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"width: 60px; margin-top: -28px;\"][/bt_image][bt_hr top_spaced=\"topSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"1/2\"][/bt_column][bt_column width=\"1/2\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"GET THE BEST RATE\" headline=\"Offers <i>&</i> Deals\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"If you chose to stay with us you will enjoy modern home comforts in a traditional setting. Whether you are looking for a short weekend break or a longer holiday, we offer a range of packages that we think cater for all.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"1/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"0.7\" inner_background_color=\"#ffffff\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"67\" caption_text=\"Get together\" size=\"\" shape=\"square\" url=\"special-offers\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"Family vacation\" show_titles=\"no\"][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"Get together\" headline=\"Family vacation\" headline_size=\"medium\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"fa_f207\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f13d\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f1eb\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f206\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f1ae\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\r\n\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Integer mollis viverra diam ac ornare. Donec rhoncus nisi in felis congue, at pulvinar nibh dapibus.\r\n\r\n[/bt_text][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/3\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"special-offers\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"2/3\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"0.7\" inner_background_color=\"#ffffff\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"68\" caption_text=\"Celebrate\" size=\"\" shape=\"square\" url=\"special-offers\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"Newlyweds weekend\" show_titles=\"no\"][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"Celebrate\" headline=\"Newlyweds weekend\" headline_size=\"medium\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"fa_f1ba\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f072\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f228\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\r\n\r\nSed ut metus eu neque commodo fringilla imperdiet sed nibh. Sed volutpat fermentum ligula, et maximus ex ultricies sit amet.\r\n\r\n[/bt_text][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/3\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"special-offers\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"2/3\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"0.7\" inner_background_color=\"#ffffff\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"725\" caption_text=\"Procrastinate\" size=\"\" shape=\"square\" url=\"special-offers\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"Lazy weekend\" show_titles=\"no\"][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"Procrastinate\" headline=\"Lazy weekend\" headline_size=\"medium\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"fa_f1ba\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f072\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f1eb\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f000\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f185\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\r\n\r\nPhasellus non bibendum augue. Duis nibh felis, volutpat vitae pulvinar at, tincidunt eget mi. Donec venenatis condimentum fermentum.\r\n\r\n[/bt_text][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/3\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"special-offers\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"2/3\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#e5e5e5\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"322\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"width: 60px; margin-top: -28px;\"][/bt_image][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"7/12\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Activities\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Phasellus blandit a massa vitae congue. Nam ex massa, mattis ut sapien sit amet, consequat sodales risus. Sed interdum, ligula et lobortis faucibus, sem sem placerat augue, eget scelerisque turpis lorem et tellus.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][/bt_column][bt_column width=\"5/12\"][/bt_column][/bt_row][/bt_section][bt_section layout=\"wide\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"dark\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#e5e5e5\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"73\" caption_title=\"Beach voleyball\" caption_text=\"Enjoy the game\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"ENJOY THE GAME\" headline=\"Beach Voleyball\" headline_size=\"medium\" dash=\"top\" subheadline=\"Beach volleyball is ouy visitors favourite sport, highly enjoyable for everyone young or old. Just gather your team on the beach and find the opponents in a matter of minutes. And show what you can do, be a winner!\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_e9ac\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e040\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e041\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"74\" el_class=\"\" el_style=\"\"][bt_image image=\"74\" caption_title=\"Horseback riding\" caption_text=\"Enjoy the beach\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Enjoy the beach\" headline=\"Horseback riding\" headline_size=\"medium\" dash=\"top\" subheadline=\"How about a lazy afternoon with your friends on a hors, while the sun goes down? If you want to chill out, our horse riding team will teach you in a matter of minutes and help you wind down after a good day on the sun.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_ea13\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1e\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e05b\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"75\" el_class=\"\" el_style=\"\"][bt_image image=\"75\" caption_title=\"Waterskiing\" caption_text=\"Enjoy the sea\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Enjoy the sea\" headline=\"Waterskiing\" headline_size=\"medium\" dash=\"top\" subheadline=\"If you are a big fan of water sports, then why not try the waterskiing or waterboarding? At hotel California you will find there\'s an amateur champoionship every year. Rated as the most fun activity by our visitors.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_e05b\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9a3\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9e5\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"76\" el_class=\"\" el_style=\"\"][bt_image image=\"76\" caption_title=\"Paragliding\" caption_text=\"Enjoy the sky\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Enjoy the sky\" headline=\"Parasailing\" headline_size=\"medium\" dash=\"top\" subheadline=\"Enjoy the thrill on the sky with our parasailing team and feel the California sun on your face. The team will help you get your adrenaline high and will be capuring your moments on a high-definition camera.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_ea2f\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"s7_e67b\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9f3\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_slider height=\"auto\" auto_play=\"\" hide_arrows=\"\" hide_paging=\"btSliderHidePaging\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/6\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"78\" caption_text=\"\" size=\"\" shape=\"circle\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][bt_header superheadline=\"June 2016\" headline=\"Alan Jones\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][/bt_column_inner][bt_column_inner width=\"5/6\"][bt_text]\r\n<blockquote>If you chose to stay with us you will enjoy modern home comforts in a traditional setting. Whether you are looking for a short weekend break or a longer holiday, we offer a range of packages that we think cater for all.</blockquote>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/6\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"447\" caption_text=\"\" size=\"\" shape=\"circle\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][/bt_image][bt_header superheadline=\"July 2016\" headline=\"Adrianne White\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][bt_column_inner width=\"5/6\"][bt_text]\r\n<blockquote>If you chose to stay with us you will enjoy modern home comforts in a traditional setting. Whether you are looking for a short weekend break or a longer holiday, we offer a range of packages that we think cater for all.</blockquote>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/1\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_text]\r\n<blockquote>Our mission: to connect our members and our diverse community to the boundless recreational opportunities and proper stewardship of the Monterey Bay and the Pacific Ocean.</blockquote>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][/bt_slider][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/3\" align=\"left\" vertical_align=\"btMiddleVertical\" border=\"no_border\" cell_padding=\"btDoublePadding\" animation=\"animate animate-fadein\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"#e5e5e5\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"IN A NUTSHELL\" headline=\"Hotel California\" headline_size=\"large\" dash=\"bottom\" subheadline=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer mollis viverra diam ac ornare. Donec rhoncus nisi in felis congue, at pulvinar nibh dapibus.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_button text=\"READ MORE\" icon=\"no_icon\" url=\"\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"ExtraSmall\" width=\"Normal\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"2/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_slider height=\"auto\" auto_play=\"\" hide_arrows=\"\" hide_paging=\"btSliderHidePaging\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"81\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"82\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"83\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"84\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"85\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][/bt_slider][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\"][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"2/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_gmaps latitude=\"36.602383\" longitude=\"-121.879245 \" zoom=\"11\" icon=\"342\" height=\"400px\" primary_color=\"\" secondary_color=\"\" water_color=\"\" custom_style=\"WwogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJhZG1pbmlzdHJhdGl2ZSIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImxhYmVscy50ZXh0LmZpbGwiLAogICAgICAgICJzdHlsZXJzIjogWwogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAiY29sb3IiOiAiIzQ0NDQ0NCIKICAgICAgICAgICAgfQogICAgICAgIF0KICAgIH0sCiAgICB7CiAgICAgICAgImZlYXR1cmVUeXBlIjogImxhbmRzY2FwZSIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJjb2xvciI6ICIjZjJmMmYyIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAicG9pIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiYWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInZpc2liaWxpdHkiOiAib2ZmIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAicm9hZCIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJzYXR1cmF0aW9uIjogLTEwMAogICAgICAgICAgICB9LAogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAibGlnaHRuZXNzIjogNDUKICAgICAgICAgICAgfQogICAgICAgIF0KICAgIH0sCiAgICB7CiAgICAgICAgImZlYXR1cmVUeXBlIjogInJvYWQuaGlnaHdheSIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogInNpbXBsaWZpZWQiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJyb2FkLmhpZ2h3YXkiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJnZW9tZXRyeSIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogInNpbXBsaWZpZWQiCiAgICAgICAgICAgIH0sCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJjb2xvciI6ICIjZDc3Mjg3IgogICAgICAgICAgICB9LAogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAibGlnaHRuZXNzIjogIjAiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJyb2FkLmhpZ2h3YXkiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJsYWJlbHMudGV4dCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogIm9uIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAicm9hZC5oaWdod2F5IiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAibGFiZWxzLmljb24iLAogICAgICAgICJzdHlsZXJzIjogWwogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAidmlzaWJpbGl0eSI6ICJvbiIKICAgICAgICAgICAgfQogICAgICAgIF0KICAgIH0sCiAgICB7CiAgICAgICAgImZlYXR1cmVUeXBlIjogInJvYWQuYXJ0ZXJpYWwiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJhbGwiLAogICAgICAgICJzdHlsZXJzIjogWwogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAidmlzaWJpbGl0eSI6ICJvbiIKICAgICAgICAgICAgfQogICAgICAgIF0KICAgIH0sCiAgICB7CiAgICAgICAgImZlYXR1cmVUeXBlIjogInJvYWQuYXJ0ZXJpYWwiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJnZW9tZXRyeS5maWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgImNvbG9yIjogIiNkNzcyODciCiAgICAgICAgICAgIH0sCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJsaWdodG5lc3MiOiAiNzUiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJyb2FkLmFydGVyaWFsIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAibGFiZWxzLmljb24iLAogICAgICAgICJzdHlsZXJzIjogWwogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAidmlzaWJpbGl0eSI6ICJvZmYiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJyb2FkLmxvY2FsIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiZ2VvbWV0cnkuZmlsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJsaWdodG5lc3MiOiAiNzUiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJ0cmFuc2l0IiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiYWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInZpc2liaWxpdHkiOiAib2ZmIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAidHJhbnNpdC5saW5lIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiYWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInZpc2liaWxpdHkiOiAib24iCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJ0cmFuc2l0LnN0YXRpb24uYnVzIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiYWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInZpc2liaWxpdHkiOiAib24iCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJ0cmFuc2l0LnN0YXRpb24ucmFpbCIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogIm9uIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAidHJhbnNpdC5zdGF0aW9uLnJhaWwiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJsYWJlbHMuaWNvbiIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ3ZWlnaHQiOiAiMC4wMSIKICAgICAgICAgICAgfSwKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgImh1ZSI6ICIjZmYwMDM1IgogICAgICAgICAgICB9LAogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAibGlnaHRuZXNzIjogIjAiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJ3YXRlciIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogIm9uIgogICAgICAgICAgICB9LAogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAiY29sb3IiOiAiIzgwZTRkOCIKICAgICAgICAgICAgfSwKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgImxpZ2h0bmVzcyI6ICIyNSIKICAgICAgICAgICAgfSwKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInNhdHVyYXRpb24iOiAiLTIzIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfQpd\" el_class=\"\" el_style=\"\" api_key=\"AIzaSyBda9LxQ-Wztqsk6aFI7SkcdiypnKTPfiI\"][/bt_gmaps][/bt_column][bt_column width=\"1/3\" align=\"left\" vertical_align=\"btMiddleVertical\" border=\"no_border\" cell_padding=\"btDoublePadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"#e5e5e5\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_service icon=\"s7_e638\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoMediumSize\" url=\"\" headline=\"Address\" dash=\"\" text=\"3216 W Highland Boulevard\r\nSan Diego, California\" el_class=\"\" el_style=\"\" superheadline=\"\"][/bt_service][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSemiSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_service icon=\"s7_e670\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoMediumSize\" url=\"\" headline=\"Phone\" dash=\"\" text=\"+555-40-220-6672\" el_class=\"\" el_style=\"\" superheadline=\"\"][/bt_service][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSemiSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_service icon=\"s7_e63a\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoMediumSize\" url=\"\" headline=\"Email\" dash=\"\" text=\"office@california.hotel\" el_class=\"\" el_style=\"\" superheadline=\"\"][/bt_service][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"yes\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"7/12\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"News <i>&</i> Blog\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Morbi pharetra faucibus purus, nec pretium enim luctus quis. Pellentesque aliquet venenatis ante, quis pretium neque tristique eget. Integer in luctus urna. Aenean rutrum sodales pharetra.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"5/12\"][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_latest_posts number=\"3\" category=\"\" format=\"horizontal\" post_type=\"blog\" show_excerpt=\"yes\" show_date=\"yes\" show_author=\"yes\" el_class=\"\" el_style=\"\"][/bt_latest_posts][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"321\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"0.3\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Follow us\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Find out what’s hot and new, and get discounts for being a loyal customer and a Hotel California fan.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_icons][bt_icon icon=\"fa_f09a\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f099\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f0d5\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_column][/bt_row][/bt_section]','Street view','\n ','inherit','closed','closed','','837-revision-v1','','','2021-04-07 08:15:38','2021-04-07 08:15:38','',837,'http://mpycdev.theomggroup.com/?p=1073',0,'revision','',0);
INSERT INTO `smrc_posts` VALUES (1074,1,'2021-04-07 08:16:03','2021-04-07 08:16:03','','rowing_in_bay','','inherit','open','closed','','rowing_in_bay','','','2021-04-07 08:16:03','2021-04-07 08:16:03','',837,'http://mpycdev.theomggroup.com/wp-content/uploads/2021/04/rowing_in_bay.jpg',0,'attachment','image/jpeg',0);
INSERT INTO `smrc_posts` VALUES (1075,1,'2021-04-07 08:16:19','2021-04-07 08:16:19','[bt_section layout=\"wide\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\"][bt_slider height=\"medium\" auto_play=\"5000\" hide_arrows=\"\" hide_paging=\"\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item image=\"1048\" el_class=\"\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1025\" el_class=\"\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1026\" el_class=\"btLightSkin\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1035\" el_class=\"btLightSkin\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1050\" el_class=\"btLightSkin\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1049\" el_class=\"btLightSkin\" el_style=\"\"][/bt_slider_item][/bt_slider][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"dark\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#000080\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\"][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\r\n\r\n<em>founded 1953 in historic Monterey, California</em>\r\n\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSemiSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"2/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Our Club\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"A non-profit organization, MPYC is a yachting and social club comprised of over 400 adult and junior members with an interest in coming together to share in boating, sailing, yacht racing and social activities. Membership is not limited to boat owners.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/3\"][/bt_column][/bt_row][bt_row][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1068\" caption_text=\"View\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption=\"Double room\" show_titles=\"no\" caption_title=\"Room details\"][bt_header superheadline=\"CORINTHIAN SPIRIT\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Racing\" headline_size=\"medium\" dash=\"top\" subheadline=\"MPYC has built a reputation for top-notch competitive sailing. We host over 100 races per year and have hosted a variety of national championships.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1071\" caption_text=\"\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"PASSION\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Cruising\" headline_size=\"medium\" dash=\"top\" subheadline=\"Our members feature both power and sailboat owners. It\'s our great honor to live along California\'s Monterey Bay and enjoy the scenic vistas and marine wildlife.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1074\" caption_text=\"\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"DRIVE\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Rowing\" headline_size=\"medium\" dash=\"top\" subheadline=\"Our beginning, recreational and advanced rowers enjoy short and long distance local routes along Monterey and Pacific Grove and compete in local, West Coast and U.S. regattas. \" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1070\" caption_text=\"\" size=\"medium\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"COMMITMENT\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Youth Sailing\" headline_size=\"medium\" dash=\"top\" subheadline=\"Since its inception, Monterey Peninsula Yacht Club\'s has been proud to invest in the future of sailing and our youth to foster a better future for all us, and our club.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"66\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"0.7\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"special-offers\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"323\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"width: 60px; margin-top: -28px;\"][/bt_image][bt_hr top_spaced=\"topSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"1/2\"][/bt_column][bt_column width=\"1/2\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"GET THE BEST RATE\" headline=\"Offers <i>&</i> Deals\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"If you chose to stay with us you will enjoy modern home comforts in a traditional setting. Whether you are looking for a short weekend break or a longer holiday, we offer a range of packages that we think cater for all.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"1/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"0.7\" inner_background_color=\"#ffffff\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"67\" caption_text=\"Get together\" size=\"\" shape=\"square\" url=\"special-offers\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"Family vacation\" show_titles=\"no\"][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"Get together\" headline=\"Family vacation\" headline_size=\"medium\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"fa_f207\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f13d\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f1eb\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f206\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f1ae\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\r\n\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Integer mollis viverra diam ac ornare. Donec rhoncus nisi in felis congue, at pulvinar nibh dapibus.\r\n\r\n[/bt_text][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/3\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"special-offers\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"2/3\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"0.7\" inner_background_color=\"#ffffff\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"68\" caption_text=\"Celebrate\" size=\"\" shape=\"square\" url=\"special-offers\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"Newlyweds weekend\" show_titles=\"no\"][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"Celebrate\" headline=\"Newlyweds weekend\" headline_size=\"medium\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"fa_f1ba\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f072\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f228\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\r\n\r\nSed ut metus eu neque commodo fringilla imperdiet sed nibh. Sed volutpat fermentum ligula, et maximus ex ultricies sit amet.\r\n\r\n[/bt_text][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/3\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"special-offers\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"2/3\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"0.7\" inner_background_color=\"#ffffff\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"725\" caption_text=\"Procrastinate\" size=\"\" shape=\"square\" url=\"special-offers\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"Lazy weekend\" show_titles=\"no\"][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"Procrastinate\" headline=\"Lazy weekend\" headline_size=\"medium\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"fa_f1ba\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f072\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f1eb\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f000\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f185\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\r\n\r\nPhasellus non bibendum augue. Duis nibh felis, volutpat vitae pulvinar at, tincidunt eget mi. Donec venenatis condimentum fermentum.\r\n\r\n[/bt_text][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/3\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"special-offers\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"2/3\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#e5e5e5\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"322\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"width: 60px; margin-top: -28px;\"][/bt_image][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"7/12\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Activities\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Phasellus blandit a massa vitae congue. Nam ex massa, mattis ut sapien sit amet, consequat sodales risus. Sed interdum, ligula et lobortis faucibus, sem sem placerat augue, eget scelerisque turpis lorem et tellus.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][/bt_column][bt_column width=\"5/12\"][/bt_column][/bt_row][/bt_section][bt_section layout=\"wide\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"dark\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#e5e5e5\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"73\" caption_title=\"Beach voleyball\" caption_text=\"Enjoy the game\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"ENJOY THE GAME\" headline=\"Beach Voleyball\" headline_size=\"medium\" dash=\"top\" subheadline=\"Beach volleyball is ouy visitors favourite sport, highly enjoyable for everyone young or old. Just gather your team on the beach and find the opponents in a matter of minutes. And show what you can do, be a winner!\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_e9ac\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e040\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e041\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"74\" el_class=\"\" el_style=\"\"][bt_image image=\"74\" caption_title=\"Horseback riding\" caption_text=\"Enjoy the beach\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Enjoy the beach\" headline=\"Horseback riding\" headline_size=\"medium\" dash=\"top\" subheadline=\"How about a lazy afternoon with your friends on a hors, while the sun goes down? If you want to chill out, our horse riding team will teach you in a matter of minutes and help you wind down after a good day on the sun.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_ea13\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1e\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e05b\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"75\" el_class=\"\" el_style=\"\"][bt_image image=\"75\" caption_title=\"Waterskiing\" caption_text=\"Enjoy the sea\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Enjoy the sea\" headline=\"Waterskiing\" headline_size=\"medium\" dash=\"top\" subheadline=\"If you are a big fan of water sports, then why not try the waterskiing or waterboarding? At hotel California you will find there\'s an amateur champoionship every year. Rated as the most fun activity by our visitors.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_e05b\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9a3\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9e5\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"76\" el_class=\"\" el_style=\"\"][bt_image image=\"76\" caption_title=\"Paragliding\" caption_text=\"Enjoy the sky\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Enjoy the sky\" headline=\"Parasailing\" headline_size=\"medium\" dash=\"top\" subheadline=\"Enjoy the thrill on the sky with our parasailing team and feel the California sun on your face. The team will help you get your adrenaline high and will be capuring your moments on a high-definition camera.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_ea2f\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"s7_e67b\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9f3\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_slider height=\"auto\" auto_play=\"\" hide_arrows=\"\" hide_paging=\"btSliderHidePaging\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/6\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"78\" caption_text=\"\" size=\"\" shape=\"circle\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][bt_header superheadline=\"June 2016\" headline=\"Alan Jones\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][/bt_column_inner][bt_column_inner width=\"5/6\"][bt_text]\r\n<blockquote>If you chose to stay with us you will enjoy modern home comforts in a traditional setting. Whether you are looking for a short weekend break or a longer holiday, we offer a range of packages that we think cater for all.</blockquote>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/6\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"447\" caption_text=\"\" size=\"\" shape=\"circle\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][/bt_image][bt_header superheadline=\"July 2016\" headline=\"Adrianne White\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][bt_column_inner width=\"5/6\"][bt_text]\r\n<blockquote>If you chose to stay with us you will enjoy modern home comforts in a traditional setting. Whether you are looking for a short weekend break or a longer holiday, we offer a range of packages that we think cater for all.</blockquote>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/1\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_text]\r\n<blockquote>Our mission: to connect our members and our diverse community to the boundless recreational opportunities and proper stewardship of the Monterey Bay and the Pacific Ocean.</blockquote>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][/bt_slider][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/3\" align=\"left\" vertical_align=\"btMiddleVertical\" border=\"no_border\" cell_padding=\"btDoublePadding\" animation=\"animate animate-fadein\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"#e5e5e5\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"IN A NUTSHELL\" headline=\"Hotel California\" headline_size=\"large\" dash=\"bottom\" subheadline=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer mollis viverra diam ac ornare. Donec rhoncus nisi in felis congue, at pulvinar nibh dapibus.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_button text=\"READ MORE\" icon=\"no_icon\" url=\"\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"ExtraSmall\" width=\"Normal\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"2/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_slider height=\"auto\" auto_play=\"\" hide_arrows=\"\" hide_paging=\"btSliderHidePaging\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"81\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"82\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"83\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"84\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"85\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][/bt_slider][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\"][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"2/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_gmaps latitude=\"36.602383\" longitude=\"-121.879245 \" zoom=\"11\" icon=\"342\" height=\"400px\" primary_color=\"\" secondary_color=\"\" water_color=\"\" custom_style=\"WwogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJhZG1pbmlzdHJhdGl2ZSIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImxhYmVscy50ZXh0LmZpbGwiLAogICAgICAgICJzdHlsZXJzIjogWwogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAiY29sb3IiOiAiIzQ0NDQ0NCIKICAgICAgICAgICAgfQogICAgICAgIF0KICAgIH0sCiAgICB7CiAgICAgICAgImZlYXR1cmVUeXBlIjogImxhbmRzY2FwZSIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJjb2xvciI6ICIjZjJmMmYyIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAicG9pIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiYWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInZpc2liaWxpdHkiOiAib2ZmIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAicm9hZCIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJzYXR1cmF0aW9uIjogLTEwMAogICAgICAgICAgICB9LAogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAibGlnaHRuZXNzIjogNDUKICAgICAgICAgICAgfQogICAgICAgIF0KICAgIH0sCiAgICB7CiAgICAgICAgImZlYXR1cmVUeXBlIjogInJvYWQuaGlnaHdheSIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogInNpbXBsaWZpZWQiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJyb2FkLmhpZ2h3YXkiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJnZW9tZXRyeSIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogInNpbXBsaWZpZWQiCiAgICAgICAgICAgIH0sCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJjb2xvciI6ICIjZDc3Mjg3IgogICAgICAgICAgICB9LAogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAibGlnaHRuZXNzIjogIjAiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJyb2FkLmhpZ2h3YXkiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJsYWJlbHMudGV4dCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogIm9uIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAicm9hZC5oaWdod2F5IiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAibGFiZWxzLmljb24iLAogICAgICAgICJzdHlsZXJzIjogWwogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAidmlzaWJpbGl0eSI6ICJvbiIKICAgICAgICAgICAgfQogICAgICAgIF0KICAgIH0sCiAgICB7CiAgICAgICAgImZlYXR1cmVUeXBlIjogInJvYWQuYXJ0ZXJpYWwiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJhbGwiLAogICAgICAgICJzdHlsZXJzIjogWwogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAidmlzaWJpbGl0eSI6ICJvbiIKICAgICAgICAgICAgfQogICAgICAgIF0KICAgIH0sCiAgICB7CiAgICAgICAgImZlYXR1cmVUeXBlIjogInJvYWQuYXJ0ZXJpYWwiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJnZW9tZXRyeS5maWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgImNvbG9yIjogIiNkNzcyODciCiAgICAgICAgICAgIH0sCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJsaWdodG5lc3MiOiAiNzUiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJyb2FkLmFydGVyaWFsIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAibGFiZWxzLmljb24iLAogICAgICAgICJzdHlsZXJzIjogWwogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAidmlzaWJpbGl0eSI6ICJvZmYiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJyb2FkLmxvY2FsIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiZ2VvbWV0cnkuZmlsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJsaWdodG5lc3MiOiAiNzUiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJ0cmFuc2l0IiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiYWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInZpc2liaWxpdHkiOiAib2ZmIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAidHJhbnNpdC5saW5lIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiYWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInZpc2liaWxpdHkiOiAib24iCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJ0cmFuc2l0LnN0YXRpb24uYnVzIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiYWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInZpc2liaWxpdHkiOiAib24iCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJ0cmFuc2l0LnN0YXRpb24ucmFpbCIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogIm9uIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAidHJhbnNpdC5zdGF0aW9uLnJhaWwiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJsYWJlbHMuaWNvbiIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ3ZWlnaHQiOiAiMC4wMSIKICAgICAgICAgICAgfSwKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgImh1ZSI6ICIjZmYwMDM1IgogICAgICAgICAgICB9LAogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAibGlnaHRuZXNzIjogIjAiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJ3YXRlciIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogIm9uIgogICAgICAgICAgICB9LAogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAiY29sb3IiOiAiIzgwZTRkOCIKICAgICAgICAgICAgfSwKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgImxpZ2h0bmVzcyI6ICIyNSIKICAgICAgICAgICAgfSwKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInNhdHVyYXRpb24iOiAiLTIzIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfQpd\" el_class=\"\" el_style=\"\" api_key=\"AIzaSyBda9LxQ-Wztqsk6aFI7SkcdiypnKTPfiI\"][/bt_gmaps][/bt_column][bt_column width=\"1/3\" align=\"left\" vertical_align=\"btMiddleVertical\" border=\"no_border\" cell_padding=\"btDoublePadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"#e5e5e5\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_service icon=\"s7_e638\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoMediumSize\" url=\"\" headline=\"Address\" dash=\"\" text=\"3216 W Highland Boulevard\r\nSan Diego, California\" el_class=\"\" el_style=\"\" superheadline=\"\"][/bt_service][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSemiSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_service icon=\"s7_e670\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoMediumSize\" url=\"\" headline=\"Phone\" dash=\"\" text=\"+555-40-220-6672\" el_class=\"\" el_style=\"\" superheadline=\"\"][/bt_service][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSemiSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_service icon=\"s7_e63a\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoMediumSize\" url=\"\" headline=\"Email\" dash=\"\" text=\"office@california.hotel\" el_class=\"\" el_style=\"\" superheadline=\"\"][/bt_service][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"yes\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"7/12\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"News <i>&</i> Blog\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Morbi pharetra faucibus purus, nec pretium enim luctus quis. Pellentesque aliquet venenatis ante, quis pretium neque tristique eget. Integer in luctus urna. Aenean rutrum sodales pharetra.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"5/12\"][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_latest_posts number=\"3\" category=\"\" format=\"horizontal\" post_type=\"blog\" show_excerpt=\"yes\" show_date=\"yes\" show_author=\"yes\" el_class=\"\" el_style=\"\"][/bt_latest_posts][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"321\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"0.3\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Follow us\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Find out what’s hot and new, and get discounts for being a loyal customer and a Hotel California fan.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_icons][bt_icon icon=\"fa_f09a\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f099\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f0d5\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_column][/bt_row][/bt_section]','Street view','\n ','inherit','closed','closed','','837-revision-v1','','','2021-04-07 08:16:19','2021-04-07 08:16:19','',837,'http://mpycdev.theomggroup.com/?p=1075',0,'revision','',0);
INSERT INTO `smrc_posts` VALUES (1076,1,'2021-04-07 08:17:38','2021-04-07 08:17:38','[bt_section layout=\"wide\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\"][bt_slider height=\"medium\" auto_play=\"5000\" hide_arrows=\"\" hide_paging=\"\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item image=\"1048\" el_class=\"\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1025\" el_class=\"\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1026\" el_class=\"btLightSkin\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1035\" el_class=\"btLightSkin\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1050\" el_class=\"btLightSkin\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1049\" el_class=\"btLightSkin\" el_style=\"\"][/bt_slider_item][/bt_slider][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"dark\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#000080\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\"][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\r\n\r\n<em>founded 1953 in historic Monterey, California</em>\r\n\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSemiSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"2/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Our Club\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"A non-profit organization, MPYC is a yachting and social club comprised of over 400 adult and junior members with an interest in coming together to share in boating, sailing, yacht racing and social activities. Membership is not limited to boat owners.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/3\"][/bt_column][/bt_row][bt_row][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1068\" caption_text=\"View\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption=\"Double room\" show_titles=\"no\" caption_title=\"Room details\"][bt_header superheadline=\"CORINTHIAN SPIRIT\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Racing\" headline_size=\"medium\" dash=\"top\" subheadline=\"MPYC has built a reputation for top-notch competitive sailing. We host over 100 races per year and have hosted a variety of national championships.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1071\" caption_text=\"\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"PASSION\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Cruising\" headline_size=\"medium\" dash=\"top\" subheadline=\"Our members feature both power and sailboat owners. It\'s our great honor to live along California\'s Monterey Bay and enjoy the scenic vistas and marine wildlife.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1074\" caption_text=\"\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"DRIVE\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Rowing\" headline_size=\"medium\" dash=\"top\" subheadline=\"Our beginning, recreational and advanced rowers enjoy short and long distance local routes in addition to competition in local, West Coast and U.S. regattas. \" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1070\" caption_text=\"\" size=\"medium\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"COMMITMENT\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Youth Sailing\" headline_size=\"medium\" dash=\"top\" subheadline=\"Since its inception, Monterey Peninsula Yacht Club\'s has been proud to invest in the future of sailing and our youth to foster a better future for all us, and our club.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"66\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"0.7\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"special-offers\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"323\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"width: 60px; margin-top: -28px;\"][/bt_image][bt_hr top_spaced=\"topSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"1/2\"][/bt_column][bt_column width=\"1/2\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"GET THE BEST RATE\" headline=\"Offers <i>&</i> Deals\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"If you chose to stay with us you will enjoy modern home comforts in a traditional setting. Whether you are looking for a short weekend break or a longer holiday, we offer a range of packages that we think cater for all.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"1/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"0.7\" inner_background_color=\"#ffffff\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"67\" caption_text=\"Get together\" size=\"\" shape=\"square\" url=\"special-offers\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"Family vacation\" show_titles=\"no\"][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"Get together\" headline=\"Family vacation\" headline_size=\"medium\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"fa_f207\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f13d\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f1eb\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f206\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f1ae\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\r\n\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Integer mollis viverra diam ac ornare. Donec rhoncus nisi in felis congue, at pulvinar nibh dapibus.\r\n\r\n[/bt_text][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/3\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"special-offers\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"2/3\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"0.7\" inner_background_color=\"#ffffff\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"68\" caption_text=\"Celebrate\" size=\"\" shape=\"square\" url=\"special-offers\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"Newlyweds weekend\" show_titles=\"no\"][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"Celebrate\" headline=\"Newlyweds weekend\" headline_size=\"medium\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"fa_f1ba\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f072\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f228\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\r\n\r\nSed ut metus eu neque commodo fringilla imperdiet sed nibh. Sed volutpat fermentum ligula, et maximus ex ultricies sit amet.\r\n\r\n[/bt_text][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/3\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"special-offers\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"2/3\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"0.7\" inner_background_color=\"#ffffff\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"725\" caption_text=\"Procrastinate\" size=\"\" shape=\"square\" url=\"special-offers\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"Lazy weekend\" show_titles=\"no\"][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"Procrastinate\" headline=\"Lazy weekend\" headline_size=\"medium\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"fa_f1ba\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f072\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f1eb\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f000\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f185\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\r\n\r\nPhasellus non bibendum augue. Duis nibh felis, volutpat vitae pulvinar at, tincidunt eget mi. Donec venenatis condimentum fermentum.\r\n\r\n[/bt_text][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/3\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"special-offers\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"2/3\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#e5e5e5\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"322\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"width: 60px; margin-top: -28px;\"][/bt_image][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"7/12\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Activities\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Phasellus blandit a massa vitae congue. Nam ex massa, mattis ut sapien sit amet, consequat sodales risus. Sed interdum, ligula et lobortis faucibus, sem sem placerat augue, eget scelerisque turpis lorem et tellus.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][/bt_column][bt_column width=\"5/12\"][/bt_column][/bt_row][/bt_section][bt_section layout=\"wide\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"dark\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#e5e5e5\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"73\" caption_title=\"Beach voleyball\" caption_text=\"Enjoy the game\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"ENJOY THE GAME\" headline=\"Beach Voleyball\" headline_size=\"medium\" dash=\"top\" subheadline=\"Beach volleyball is ouy visitors favourite sport, highly enjoyable for everyone young or old. Just gather your team on the beach and find the opponents in a matter of minutes. And show what you can do, be a winner!\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_e9ac\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e040\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e041\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"74\" el_class=\"\" el_style=\"\"][bt_image image=\"74\" caption_title=\"Horseback riding\" caption_text=\"Enjoy the beach\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Enjoy the beach\" headline=\"Horseback riding\" headline_size=\"medium\" dash=\"top\" subheadline=\"How about a lazy afternoon with your friends on a hors, while the sun goes down? If you want to chill out, our horse riding team will teach you in a matter of minutes and help you wind down after a good day on the sun.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_ea13\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1e\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e05b\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"75\" el_class=\"\" el_style=\"\"][bt_image image=\"75\" caption_title=\"Waterskiing\" caption_text=\"Enjoy the sea\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Enjoy the sea\" headline=\"Waterskiing\" headline_size=\"medium\" dash=\"top\" subheadline=\"If you are a big fan of water sports, then why not try the waterskiing or waterboarding? At hotel California you will find there\'s an amateur champoionship every year. Rated as the most fun activity by our visitors.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_e05b\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9a3\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9e5\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"76\" el_class=\"\" el_style=\"\"][bt_image image=\"76\" caption_title=\"Paragliding\" caption_text=\"Enjoy the sky\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Enjoy the sky\" headline=\"Parasailing\" headline_size=\"medium\" dash=\"top\" subheadline=\"Enjoy the thrill on the sky with our parasailing team and feel the California sun on your face. The team will help you get your adrenaline high and will be capuring your moments on a high-definition camera.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_ea2f\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"s7_e67b\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9f3\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_slider height=\"auto\" auto_play=\"\" hide_arrows=\"\" hide_paging=\"btSliderHidePaging\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/6\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"78\" caption_text=\"\" size=\"\" shape=\"circle\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][bt_header superheadline=\"June 2016\" headline=\"Alan Jones\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][/bt_column_inner][bt_column_inner width=\"5/6\"][bt_text]\r\n<blockquote>If you chose to stay with us you will enjoy modern home comforts in a traditional setting. Whether you are looking for a short weekend break or a longer holiday, we offer a range of packages that we think cater for all.</blockquote>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/6\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"447\" caption_text=\"\" size=\"\" shape=\"circle\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][/bt_image][bt_header superheadline=\"July 2016\" headline=\"Adrianne White\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][bt_column_inner width=\"5/6\"][bt_text]\r\n<blockquote>If you chose to stay with us you will enjoy modern home comforts in a traditional setting. Whether you are looking for a short weekend break or a longer holiday, we offer a range of packages that we think cater for all.</blockquote>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/1\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_text]\r\n<blockquote>Our mission: to connect our members and our diverse community to the boundless recreational opportunities and proper stewardship of the Monterey Bay and the Pacific Ocean.</blockquote>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][/bt_slider][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/3\" align=\"left\" vertical_align=\"btMiddleVertical\" border=\"no_border\" cell_padding=\"btDoublePadding\" animation=\"animate animate-fadein\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"#e5e5e5\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"IN A NUTSHELL\" headline=\"Hotel California\" headline_size=\"large\" dash=\"bottom\" subheadline=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer mollis viverra diam ac ornare. Donec rhoncus nisi in felis congue, at pulvinar nibh dapibus.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_button text=\"READ MORE\" icon=\"no_icon\" url=\"\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"ExtraSmall\" width=\"Normal\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"2/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_slider height=\"auto\" auto_play=\"\" hide_arrows=\"\" hide_paging=\"btSliderHidePaging\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"81\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"82\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"83\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"84\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"85\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][/bt_slider][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\"][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"2/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_gmaps latitude=\"36.602383\" longitude=\"-121.879245 \" zoom=\"11\" icon=\"342\" height=\"400px\" primary_color=\"\" secondary_color=\"\" water_color=\"\" custom_style=\"WwogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJhZG1pbmlzdHJhdGl2ZSIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImxhYmVscy50ZXh0LmZpbGwiLAogICAgICAgICJzdHlsZXJzIjogWwogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAiY29sb3IiOiAiIzQ0NDQ0NCIKICAgICAgICAgICAgfQogICAgICAgIF0KICAgIH0sCiAgICB7CiAgICAgICAgImZlYXR1cmVUeXBlIjogImxhbmRzY2FwZSIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJjb2xvciI6ICIjZjJmMmYyIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAicG9pIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiYWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInZpc2liaWxpdHkiOiAib2ZmIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAicm9hZCIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJzYXR1cmF0aW9uIjogLTEwMAogICAgICAgICAgICB9LAogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAibGlnaHRuZXNzIjogNDUKICAgICAgICAgICAgfQogICAgICAgIF0KICAgIH0sCiAgICB7CiAgICAgICAgImZlYXR1cmVUeXBlIjogInJvYWQuaGlnaHdheSIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogInNpbXBsaWZpZWQiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJyb2FkLmhpZ2h3YXkiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJnZW9tZXRyeSIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogInNpbXBsaWZpZWQiCiAgICAgICAgICAgIH0sCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJjb2xvciI6ICIjZDc3Mjg3IgogICAgICAgICAgICB9LAogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAibGlnaHRuZXNzIjogIjAiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJyb2FkLmhpZ2h3YXkiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJsYWJlbHMudGV4dCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogIm9uIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAicm9hZC5oaWdod2F5IiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAibGFiZWxzLmljb24iLAogICAgICAgICJzdHlsZXJzIjogWwogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAidmlzaWJpbGl0eSI6ICJvbiIKICAgICAgICAgICAgfQogICAgICAgIF0KICAgIH0sCiAgICB7CiAgICAgICAgImZlYXR1cmVUeXBlIjogInJvYWQuYXJ0ZXJpYWwiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJhbGwiLAogICAgICAgICJzdHlsZXJzIjogWwogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAidmlzaWJpbGl0eSI6ICJvbiIKICAgICAgICAgICAgfQogICAgICAgIF0KICAgIH0sCiAgICB7CiAgICAgICAgImZlYXR1cmVUeXBlIjogInJvYWQuYXJ0ZXJpYWwiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJnZW9tZXRyeS5maWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgImNvbG9yIjogIiNkNzcyODciCiAgICAgICAgICAgIH0sCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJsaWdodG5lc3MiOiAiNzUiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJyb2FkLmFydGVyaWFsIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAibGFiZWxzLmljb24iLAogICAgICAgICJzdHlsZXJzIjogWwogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAidmlzaWJpbGl0eSI6ICJvZmYiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJyb2FkLmxvY2FsIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiZ2VvbWV0cnkuZmlsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJsaWdodG5lc3MiOiAiNzUiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJ0cmFuc2l0IiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiYWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInZpc2liaWxpdHkiOiAib2ZmIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAidHJhbnNpdC5saW5lIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiYWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInZpc2liaWxpdHkiOiAib24iCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJ0cmFuc2l0LnN0YXRpb24uYnVzIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiYWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInZpc2liaWxpdHkiOiAib24iCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJ0cmFuc2l0LnN0YXRpb24ucmFpbCIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogIm9uIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAidHJhbnNpdC5zdGF0aW9uLnJhaWwiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJsYWJlbHMuaWNvbiIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ3ZWlnaHQiOiAiMC4wMSIKICAgICAgICAgICAgfSwKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgImh1ZSI6ICIjZmYwMDM1IgogICAgICAgICAgICB9LAogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAibGlnaHRuZXNzIjogIjAiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJ3YXRlciIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogIm9uIgogICAgICAgICAgICB9LAogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAiY29sb3IiOiAiIzgwZTRkOCIKICAgICAgICAgICAgfSwKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgImxpZ2h0bmVzcyI6ICIyNSIKICAgICAgICAgICAgfSwKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInNhdHVyYXRpb24iOiAiLTIzIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfQpd\" el_class=\"\" el_style=\"\" api_key=\"AIzaSyBda9LxQ-Wztqsk6aFI7SkcdiypnKTPfiI\"][/bt_gmaps][/bt_column][bt_column width=\"1/3\" align=\"left\" vertical_align=\"btMiddleVertical\" border=\"no_border\" cell_padding=\"btDoublePadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"#e5e5e5\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_service icon=\"s7_e638\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoMediumSize\" url=\"\" headline=\"Address\" dash=\"\" text=\"3216 W Highland Boulevard\r\nSan Diego, California\" el_class=\"\" el_style=\"\" superheadline=\"\"][/bt_service][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSemiSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_service icon=\"s7_e670\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoMediumSize\" url=\"\" headline=\"Phone\" dash=\"\" text=\"+555-40-220-6672\" el_class=\"\" el_style=\"\" superheadline=\"\"][/bt_service][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSemiSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_service icon=\"s7_e63a\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoMediumSize\" url=\"\" headline=\"Email\" dash=\"\" text=\"office@california.hotel\" el_class=\"\" el_style=\"\" superheadline=\"\"][/bt_service][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"yes\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"7/12\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"News <i>&</i> Blog\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Morbi pharetra faucibus purus, nec pretium enim luctus quis. Pellentesque aliquet venenatis ante, quis pretium neque tristique eget. Integer in luctus urna. Aenean rutrum sodales pharetra.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"5/12\"][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_latest_posts number=\"3\" category=\"\" format=\"horizontal\" post_type=\"blog\" show_excerpt=\"yes\" show_date=\"yes\" show_author=\"yes\" el_class=\"\" el_style=\"\"][/bt_latest_posts][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"321\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"0.3\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Follow us\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Find out what’s hot and new, and get discounts for being a loyal customer and a Hotel California fan.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_icons][bt_icon icon=\"fa_f09a\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f099\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f0d5\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_column][/bt_row][/bt_section]','Street view','\n ','inherit','closed','closed','','837-revision-v1','','','2021-04-07 08:17:38','2021-04-07 08:17:38','',837,'http://mpycdev.theomggroup.com/?p=1076',0,'revision','',0);
INSERT INTO `smrc_posts` VALUES (1077,1,'2021-04-07 08:24:47','2021-04-07 08:24:47','[bt_section layout=\"wide\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\"][bt_slider height=\"medium\" auto_play=\"5000\" hide_arrows=\"\" hide_paging=\"\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item image=\"1048\" el_class=\"\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1025\" el_class=\"\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1026\" el_class=\"btLightSkin\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1035\" el_class=\"btLightSkin\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1050\" el_class=\"btLightSkin\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1049\" el_class=\"btLightSkin\" el_style=\"\"][/bt_slider_item][/bt_slider][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"dark\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#000080\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\"][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\r\n<h4 style=\"text-align: center;\"><em>founded 1953 in historic Monterey, California</em></h4>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSemiSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"2/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Our Club\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"A non-profit organization, MPYC is a yachting and social club comprised of over 400 adult and junior members with an interest in coming together to share in boating, sailing, yacht racing and social activities. Membership is not limited to boat owners.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/3\"][/bt_column][/bt_row][bt_row][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1068\" caption_text=\"View\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption=\"Double room\" show_titles=\"no\" caption_title=\"Room details\"][bt_header superheadline=\"CORINTHIAN SPIRIT\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Racing\" headline_size=\"medium\" dash=\"top\" subheadline=\"MPYC has built a reputation for top-notch competitive sailing. We host over 100 races per year and have hosted a variety of national championships.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1071\" caption_text=\"\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"PASSION\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Cruising\" headline_size=\"medium\" dash=\"top\" subheadline=\"Our members feature both power and sailboat owners. It\'s our great honor to live along California\'s Monterey Bay and enjoy the scenic vistas and marine wildlife.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1074\" caption_text=\"\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"DRIVE\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Rowing\" headline_size=\"medium\" dash=\"top\" subheadline=\"Our beginning, recreational and advanced rowers enjoy short and long distance local routes in addition to competition in local, West Coast and U.S. regattas. \" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1070\" caption_text=\"\" size=\"medium\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"COMMITMENT\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Youth Sailing\" headline_size=\"medium\" dash=\"top\" subheadline=\"Since its inception, Monterey Peninsula Yacht Club\'s has been proud to invest in the future of sailing and our youth to foster a better future for all us, and our club.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"66\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"0.7\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"special-offers\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"323\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"width: 60px; margin-top: -28px;\"][/bt_image][bt_hr top_spaced=\"topSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"1/2\"][/bt_column][bt_column width=\"1/2\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"GET THE BEST RATE\" headline=\"Offers <i>&</i> Deals\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"If you chose to stay with us you will enjoy modern home comforts in a traditional setting. Whether you are looking for a short weekend break or a longer holiday, we offer a range of packages that we think cater for all.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"1/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"0.7\" inner_background_color=\"#ffffff\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"67\" caption_text=\"Get together\" size=\"\" shape=\"square\" url=\"special-offers\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"Family vacation\" show_titles=\"no\"][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"Get together\" headline=\"Family vacation\" headline_size=\"medium\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"fa_f207\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f13d\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f1eb\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f206\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f1ae\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\r\n\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Integer mollis viverra diam ac ornare. Donec rhoncus nisi in felis congue, at pulvinar nibh dapibus.\r\n\r\n[/bt_text][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/3\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"special-offers\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"2/3\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"0.7\" inner_background_color=\"#ffffff\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"68\" caption_text=\"Celebrate\" size=\"\" shape=\"square\" url=\"special-offers\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"Newlyweds weekend\" show_titles=\"no\"][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"Celebrate\" headline=\"Newlyweds weekend\" headline_size=\"medium\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"fa_f1ba\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f072\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f228\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\r\n\r\nSed ut metus eu neque commodo fringilla imperdiet sed nibh. Sed volutpat fermentum ligula, et maximus ex ultricies sit amet.\r\n\r\n[/bt_text][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/3\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"special-offers\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"2/3\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"0.7\" inner_background_color=\"#ffffff\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"725\" caption_text=\"Procrastinate\" size=\"\" shape=\"square\" url=\"special-offers\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"Lazy weekend\" show_titles=\"no\"][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"Procrastinate\" headline=\"Lazy weekend\" headline_size=\"medium\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"fa_f1ba\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f072\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f1eb\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f000\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f185\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\r\n\r\nPhasellus non bibendum augue. Duis nibh felis, volutpat vitae pulvinar at, tincidunt eget mi. Donec venenatis condimentum fermentum.\r\n\r\n[/bt_text][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/3\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"special-offers\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"2/3\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#e5e5e5\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"322\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"width: 60px; margin-top: -28px;\"][/bt_image][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"7/12\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Activities\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Phasellus blandit a massa vitae congue. Nam ex massa, mattis ut sapien sit amet, consequat sodales risus. Sed interdum, ligula et lobortis faucibus, sem sem placerat augue, eget scelerisque turpis lorem et tellus.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][/bt_column][bt_column width=\"5/12\"][/bt_column][/bt_row][/bt_section][bt_section layout=\"wide\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"dark\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#e5e5e5\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"73\" caption_title=\"Beach voleyball\" caption_text=\"Enjoy the game\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"ENJOY THE GAME\" headline=\"Beach Voleyball\" headline_size=\"medium\" dash=\"top\" subheadline=\"Beach volleyball is ouy visitors favourite sport, highly enjoyable for everyone young or old. Just gather your team on the beach and find the opponents in a matter of minutes. And show what you can do, be a winner!\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_e9ac\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e040\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e041\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"74\" el_class=\"\" el_style=\"\"][bt_image image=\"74\" caption_title=\"Horseback riding\" caption_text=\"Enjoy the beach\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Enjoy the beach\" headline=\"Horseback riding\" headline_size=\"medium\" dash=\"top\" subheadline=\"How about a lazy afternoon with your friends on a hors, while the sun goes down? If you want to chill out, our horse riding team will teach you in a matter of minutes and help you wind down after a good day on the sun.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_ea13\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1e\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e05b\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"75\" el_class=\"\" el_style=\"\"][bt_image image=\"75\" caption_title=\"Waterskiing\" caption_text=\"Enjoy the sea\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Enjoy the sea\" headline=\"Waterskiing\" headline_size=\"medium\" dash=\"top\" subheadline=\"If you are a big fan of water sports, then why not try the waterskiing or waterboarding? At hotel California you will find there\'s an amateur champoionship every year. Rated as the most fun activity by our visitors.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_e05b\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9a3\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9e5\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"76\" el_class=\"\" el_style=\"\"][bt_image image=\"76\" caption_title=\"Paragliding\" caption_text=\"Enjoy the sky\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Enjoy the sky\" headline=\"Parasailing\" headline_size=\"medium\" dash=\"top\" subheadline=\"Enjoy the thrill on the sky with our parasailing team and feel the California sun on your face. The team will help you get your adrenaline high and will be capuring your moments on a high-definition camera.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_ea2f\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"s7_e67b\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9f3\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_slider height=\"auto\" auto_play=\"\" hide_arrows=\"\" hide_paging=\"btSliderHidePaging\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/6\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"78\" caption_text=\"\" size=\"\" shape=\"circle\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][bt_header superheadline=\"June 2016\" headline=\"Alan Jones\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][/bt_column_inner][bt_column_inner width=\"5/6\"][bt_text]\r\n<blockquote>If you chose to stay with us you will enjoy modern home comforts in a traditional setting. Whether you are looking for a short weekend break or a longer holiday, we offer a range of packages that we think cater for all.</blockquote>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/6\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"447\" caption_text=\"\" size=\"\" shape=\"circle\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][/bt_image][bt_header superheadline=\"July 2016\" headline=\"Adrianne White\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][bt_column_inner width=\"5/6\"][bt_text]\r\n<blockquote>If you chose to stay with us you will enjoy modern home comforts in a traditional setting. Whether you are looking for a short weekend break or a longer holiday, we offer a range of packages that we think cater for all.</blockquote>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/1\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_text]\r\n<blockquote>Our mission: to connect our members and our diverse community to the boundless recreational opportunities and proper stewardship of the Monterey Bay and the Pacific Ocean.</blockquote>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][/bt_slider][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/3\" align=\"left\" vertical_align=\"btMiddleVertical\" border=\"no_border\" cell_padding=\"btDoublePadding\" animation=\"animate animate-fadein\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"#e5e5e5\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"IN A NUTSHELL\" headline=\"Hotel California\" headline_size=\"large\" dash=\"bottom\" subheadline=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer mollis viverra diam ac ornare. Donec rhoncus nisi in felis congue, at pulvinar nibh dapibus.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_button text=\"READ MORE\" icon=\"no_icon\" url=\"\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"ExtraSmall\" width=\"Normal\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"2/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_slider height=\"auto\" auto_play=\"\" hide_arrows=\"\" hide_paging=\"btSliderHidePaging\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"81\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"82\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"83\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"84\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"85\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][/bt_slider][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\"][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"2/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_gmaps latitude=\"36.602383\" longitude=\"-121.879245 \" zoom=\"11\" icon=\"342\" height=\"400px\" primary_color=\"\" secondary_color=\"\" water_color=\"\" custom_style=\"WwogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJhZG1pbmlzdHJhdGl2ZSIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImxhYmVscy50ZXh0LmZpbGwiLAogICAgICAgICJzdHlsZXJzIjogWwogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAiY29sb3IiOiAiIzQ0NDQ0NCIKICAgICAgICAgICAgfQogICAgICAgIF0KICAgIH0sCiAgICB7CiAgICAgICAgImZlYXR1cmVUeXBlIjogImxhbmRzY2FwZSIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJjb2xvciI6ICIjZjJmMmYyIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAicG9pIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiYWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInZpc2liaWxpdHkiOiAib2ZmIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAicm9hZCIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJzYXR1cmF0aW9uIjogLTEwMAogICAgICAgICAgICB9LAogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAibGlnaHRuZXNzIjogNDUKICAgICAgICAgICAgfQogICAgICAgIF0KICAgIH0sCiAgICB7CiAgICAgICAgImZlYXR1cmVUeXBlIjogInJvYWQuaGlnaHdheSIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogInNpbXBsaWZpZWQiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJyb2FkLmhpZ2h3YXkiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJnZW9tZXRyeSIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogInNpbXBsaWZpZWQiCiAgICAgICAgICAgIH0sCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJjb2xvciI6ICIjZDc3Mjg3IgogICAgICAgICAgICB9LAogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAibGlnaHRuZXNzIjogIjAiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJyb2FkLmhpZ2h3YXkiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJsYWJlbHMudGV4dCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogIm9uIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAicm9hZC5oaWdod2F5IiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAibGFiZWxzLmljb24iLAogICAgICAgICJzdHlsZXJzIjogWwogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAidmlzaWJpbGl0eSI6ICJvbiIKICAgICAgICAgICAgfQogICAgICAgIF0KICAgIH0sCiAgICB7CiAgICAgICAgImZlYXR1cmVUeXBlIjogInJvYWQuYXJ0ZXJpYWwiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJhbGwiLAogICAgICAgICJzdHlsZXJzIjogWwogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAidmlzaWJpbGl0eSI6ICJvbiIKICAgICAgICAgICAgfQogICAgICAgIF0KICAgIH0sCiAgICB7CiAgICAgICAgImZlYXR1cmVUeXBlIjogInJvYWQuYXJ0ZXJpYWwiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJnZW9tZXRyeS5maWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgImNvbG9yIjogIiNkNzcyODciCiAgICAgICAgICAgIH0sCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJsaWdodG5lc3MiOiAiNzUiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJyb2FkLmFydGVyaWFsIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAibGFiZWxzLmljb24iLAogICAgICAgICJzdHlsZXJzIjogWwogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAidmlzaWJpbGl0eSI6ICJvZmYiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJyb2FkLmxvY2FsIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiZ2VvbWV0cnkuZmlsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJsaWdodG5lc3MiOiAiNzUiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJ0cmFuc2l0IiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiYWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInZpc2liaWxpdHkiOiAib2ZmIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAidHJhbnNpdC5saW5lIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiYWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInZpc2liaWxpdHkiOiAib24iCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJ0cmFuc2l0LnN0YXRpb24uYnVzIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiYWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInZpc2liaWxpdHkiOiAib24iCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJ0cmFuc2l0LnN0YXRpb24ucmFpbCIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogIm9uIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAidHJhbnNpdC5zdGF0aW9uLnJhaWwiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJsYWJlbHMuaWNvbiIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ3ZWlnaHQiOiAiMC4wMSIKICAgICAgICAgICAgfSwKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgImh1ZSI6ICIjZmYwMDM1IgogICAgICAgICAgICB9LAogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAibGlnaHRuZXNzIjogIjAiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJ3YXRlciIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogIm9uIgogICAgICAgICAgICB9LAogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAiY29sb3IiOiAiIzgwZTRkOCIKICAgICAgICAgICAgfSwKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgImxpZ2h0bmVzcyI6ICIyNSIKICAgICAgICAgICAgfSwKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInNhdHVyYXRpb24iOiAiLTIzIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfQpd\" el_class=\"\" el_style=\"\" api_key=\"AIzaSyBda9LxQ-Wztqsk6aFI7SkcdiypnKTPfiI\"][/bt_gmaps][/bt_column][bt_column width=\"1/3\" align=\"left\" vertical_align=\"btMiddleVertical\" border=\"no_border\" cell_padding=\"btDoublePadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"#e5e5e5\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_service icon=\"s7_e638\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoMediumSize\" url=\"\" headline=\"Address\" dash=\"\" text=\"3216 W Highland Boulevard\r\nSan Diego, California\" el_class=\"\" el_style=\"\" superheadline=\"\"][/bt_service][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSemiSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_service icon=\"s7_e670\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoMediumSize\" url=\"\" headline=\"Phone\" dash=\"\" text=\"+555-40-220-6672\" el_class=\"\" el_style=\"\" superheadline=\"\"][/bt_service][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSemiSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_service icon=\"s7_e63a\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoMediumSize\" url=\"\" headline=\"Email\" dash=\"\" text=\"office@california.hotel\" el_class=\"\" el_style=\"\" superheadline=\"\"][/bt_service][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"yes\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"7/12\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"News <i>&</i> Blog\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Morbi pharetra faucibus purus, nec pretium enim luctus quis. Pellentesque aliquet venenatis ante, quis pretium neque tristique eget. Integer in luctus urna. Aenean rutrum sodales pharetra.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"5/12\"][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_latest_posts number=\"3\" category=\"\" format=\"horizontal\" post_type=\"blog\" show_excerpt=\"yes\" show_date=\"yes\" show_author=\"yes\" el_class=\"\" el_style=\"\"][/bt_latest_posts][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"321\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"0.3\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Follow us\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Find out what’s hot and new, and get discounts for being a loyal customer and a Hotel California fan.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_icons][bt_icon icon=\"fa_f09a\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f099\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f0d5\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_column][/bt_row][/bt_section]','Street view','\n ','inherit','closed','closed','','837-revision-v1','','','2021-04-07 08:24:47','2021-04-07 08:24:47','',837,'http://mpycdev.theomggroup.com/?p=1077',0,'revision','',0);
INSERT INTO `smrc_posts` VALUES (1080,1,'2021-04-07 08:39:21','2021-04-07 08:39:21','','mpycfooterlogo','','inherit','open','closed','','mpycfooterlogo','','','2021-04-07 08:39:21','2021-04-07 08:39:21','',0,'http://mpycdev.theomggroup.com/wp-content/uploads/2021/04/mpycfooterlogo.png',0,'attachment','image/png',0);
INSERT INTO `smrc_posts` VALUES (1082,1,'2021-04-07 09:06:30','2021-04-07 09:06:30','','mpyc-ico','','inherit','open','closed','','mpyc-ico','','','2021-04-07 09:06:30','2021-04-07 09:06:30','',0,'http://mpycdev.theomggroup.com/wp-content/uploads/2021/04/mpyc-ico.png',0,'attachment','image/png',0);
INSERT INTO `smrc_posts` VALUES (1083,1,'2021-04-07 09:06:48','2021-04-07 09:06:48','http://mpycdev.theomggroup.com/wp-content/uploads/2021/04/cropped-mpyc-ico.png','cropped-mpyc-ico.png','','inherit','open','closed','','cropped-mpyc-ico-png','','','2021-04-07 09:06:48','2021-04-07 09:06:48','',0,'http://mpycdev.theomggroup.com/wp-content/uploads/2021/04/cropped-mpyc-ico.png',0,'attachment','image/png',0);
INSERT INTO `smrc_posts` VALUES (1088,1,'2021-04-07 09:33:51','2021-04-07 09:33:51','','burgee-quote','','inherit','open','closed','','burgee-quote','','','2021-04-07 09:33:51','2021-04-07 09:33:51','',837,'http://mpycdev.theomggroup.com/wp-content/uploads/2021/04/burgee-quote.png',0,'attachment','image/png',0);
INSERT INTO `smrc_posts` VALUES (1089,1,'2021-04-07 09:41:13','2021-04-07 09:41:13','[bt_section layout=\"wide\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\"][bt_slider height=\"medium\" auto_play=\"5000\" hide_arrows=\"\" hide_paging=\"\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item image=\"1048\" el_class=\"\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1025\" el_class=\"\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1026\" el_class=\"btLightSkin\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1035\" el_class=\"btLightSkin\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1050\" el_class=\"btLightSkin\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1049\" el_class=\"btLightSkin\" el_style=\"\"][/bt_slider_item][/bt_slider][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"dark\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#000080\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\"][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\r\n<h4 style=\"text-align: center;\"><em>founded 1953 in historic Monterey, California</em></h4>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSemiSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"2/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Our Club\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"A non-profit organization, MPYC is a yachting and social club comprised of over 400 adult and junior members with an interest in coming together to share in boating, sailing, yacht racing and social activities. Membership is not limited to boat owners.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/3\"][/bt_column][/bt_row][bt_row][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1068\" caption_text=\"View\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption=\"Double room\" show_titles=\"no\" caption_title=\"Room details\"][bt_header superheadline=\"CORINTHIAN SPIRIT\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Racing\" headline_size=\"medium\" dash=\"top\" subheadline=\"MPYC has built a reputation for top-notch competitive sailing. We host over 100 races per year and have hosted a variety of national championships.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1071\" caption_text=\"\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"PASSION\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Cruising\" headline_size=\"medium\" dash=\"top\" subheadline=\"Our members feature both power and sailboat owners. It\'s our great honor to live along California\'s Monterey Bay and enjoy the scenic vistas and marine wildlife.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1074\" caption_text=\"\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"DRIVE\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Rowing\" headline_size=\"medium\" dash=\"top\" subheadline=\"Our beginning, recreational and advanced rowers enjoy short and long distance local routes in addition to competition in local, West Coast and U.S. regattas. \" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1070\" caption_text=\"\" size=\"medium\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"COMMITMENT\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Youth Sailing\" headline_size=\"medium\" dash=\"top\" subheadline=\"Since its inception, Monterey Peninsula Yacht Club\'s has been proud to invest in the future of sailing and our youth to foster a better future for all us, and our club.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"66\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"0.7\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"special-offers\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"323\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"width: 60px; margin-top: -28px;\"][/bt_image][bt_hr top_spaced=\"topSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"1/2\"][/bt_column][bt_column width=\"1/2\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"GET THE BEST RATE\" headline=\"Offers <i>&</i> Deals\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"If you chose to stay with us you will enjoy modern home comforts in a traditional setting. Whether you are looking for a short weekend break or a longer holiday, we offer a range of packages that we think cater for all.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"1/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"0.7\" inner_background_color=\"#ffffff\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"67\" caption_text=\"Get together\" size=\"\" shape=\"square\" url=\"special-offers\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"Family vacation\" show_titles=\"no\"][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"Get together\" headline=\"Family vacation\" headline_size=\"medium\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"fa_f207\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f13d\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f1eb\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f206\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f1ae\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\r\n\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Integer mollis viverra diam ac ornare. Donec rhoncus nisi in felis congue, at pulvinar nibh dapibus.\r\n\r\n[/bt_text][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/3\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"special-offers\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"2/3\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"0.7\" inner_background_color=\"#ffffff\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"68\" caption_text=\"Celebrate\" size=\"\" shape=\"square\" url=\"special-offers\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"Newlyweds weekend\" show_titles=\"no\"][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"Celebrate\" headline=\"Newlyweds weekend\" headline_size=\"medium\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"fa_f1ba\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f072\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f228\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\r\n\r\nSed ut metus eu neque commodo fringilla imperdiet sed nibh. Sed volutpat fermentum ligula, et maximus ex ultricies sit amet.\r\n\r\n[/bt_text][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/3\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"special-offers\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"2/3\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"0.7\" inner_background_color=\"#ffffff\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"725\" caption_text=\"Procrastinate\" size=\"\" shape=\"square\" url=\"special-offers\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"Lazy weekend\" show_titles=\"no\"][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"Procrastinate\" headline=\"Lazy weekend\" headline_size=\"medium\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"fa_f1ba\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f072\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f1eb\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f000\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f185\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\r\n\r\nPhasellus non bibendum augue. Duis nibh felis, volutpat vitae pulvinar at, tincidunt eget mi. Donec venenatis condimentum fermentum.\r\n\r\n[/bt_text][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/3\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"special-offers\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"2/3\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#e5e5e5\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"322\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"width: 60px; margin-top: -28px;\"][/bt_image][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"7/12\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Activities\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Phasellus blandit a massa vitae congue. Nam ex massa, mattis ut sapien sit amet, consequat sodales risus. Sed interdum, ligula et lobortis faucibus, sem sem placerat augue, eget scelerisque turpis lorem et tellus.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][/bt_column][bt_column width=\"5/12\"][/bt_column][/bt_row][/bt_section][bt_section layout=\"wide\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"dark\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#e5e5e5\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"73\" caption_title=\"Beach voleyball\" caption_text=\"Enjoy the game\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"ENJOY THE GAME\" headline=\"Beach Voleyball\" headline_size=\"medium\" dash=\"top\" subheadline=\"Beach volleyball is ouy visitors favourite sport, highly enjoyable for everyone young or old. Just gather your team on the beach and find the opponents in a matter of minutes. And show what you can do, be a winner!\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_e9ac\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e040\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e041\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"74\" el_class=\"\" el_style=\"\"][bt_image image=\"74\" caption_title=\"Horseback riding\" caption_text=\"Enjoy the beach\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Enjoy the beach\" headline=\"Horseback riding\" headline_size=\"medium\" dash=\"top\" subheadline=\"How about a lazy afternoon with your friends on a hors, while the sun goes down? If you want to chill out, our horse riding team will teach you in a matter of minutes and help you wind down after a good day on the sun.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_ea13\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1e\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e05b\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"75\" el_class=\"\" el_style=\"\"][bt_image image=\"75\" caption_title=\"Waterskiing\" caption_text=\"Enjoy the sea\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Enjoy the sea\" headline=\"Waterskiing\" headline_size=\"medium\" dash=\"top\" subheadline=\"If you are a big fan of water sports, then why not try the waterskiing or waterboarding? At hotel California you will find there\'s an amateur champoionship every year. Rated as the most fun activity by our visitors.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_e05b\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9a3\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9e5\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"76\" el_class=\"\" el_style=\"\"][bt_image image=\"76\" caption_title=\"Paragliding\" caption_text=\"Enjoy the sky\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Enjoy the sky\" headline=\"Parasailing\" headline_size=\"medium\" dash=\"top\" subheadline=\"Enjoy the thrill on the sky with our parasailing team and feel the California sun on your face. The team will help you get your adrenaline high and will be capuring your moments on a high-definition camera.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_ea2f\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"s7_e67b\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9f3\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_slider height=\"auto\" auto_play=\"\" hide_arrows=\"\" hide_paging=\"btSliderHidePaging\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/6\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1088\" caption_text=\"\" size=\"\" shape=\"circle\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][/bt_image][bt_header superheadline=\"MPYC\" headline=\"Mission\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][bt_column_inner width=\"5/6\"][bt_text]\r\n<blockquote>To connect our members and our diverse community to the boundless recreational opportunities and proper stewardship of the Monterey Bay and the Pacific Ocean.</blockquote>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/6\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1088\" caption_text=\"\" size=\"\" shape=\"circle\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][/bt_image][bt_header superheadline=\"MPYC\" headline=\"Vision\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][bt_column_inner width=\"5/6\"][bt_text]\r\n<blockquote>To actively promote the Monterey Peninsula Yacht Club as a prominent West Coast destination of choice for Corinthian spirit yacht racing, recreational boating, rowing and cruising.</blockquote>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/6\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1088\" caption_text=\"\" size=\"\" shape=\"circle\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][/bt_image][bt_header superheadline=\"MPYC\" headline=\"Commitment\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][bt_column_inner width=\"5/6\"][bt_text]\r\n<blockquote>To developing the next generation of sailors and boaters, and supporting a diverse membership that fosters inclusiveness, camaraderie, friendship, community involvement and leadership with the goal of advancing safe and sustainable maritime ecological practices.</blockquote>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][/bt_slider][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/3\" align=\"left\" vertical_align=\"btMiddleVertical\" border=\"no_border\" cell_padding=\"btDoublePadding\" animation=\"animate animate-fadein\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"#e5e5e5\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"IN A NUTSHELL\" headline=\"Hotel California\" headline_size=\"large\" dash=\"bottom\" subheadline=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer mollis viverra diam ac ornare. Donec rhoncus nisi in felis congue, at pulvinar nibh dapibus.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_button text=\"READ MORE\" icon=\"no_icon\" url=\"\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"ExtraSmall\" width=\"Normal\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"2/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_slider height=\"auto\" auto_play=\"\" hide_arrows=\"\" hide_paging=\"btSliderHidePaging\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"81\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"82\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"83\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"84\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"85\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][/bt_slider][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\"][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"2/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_gmaps latitude=\"36.602383\" longitude=\"-121.879245 \" zoom=\"11\" icon=\"342\" height=\"400px\" primary_color=\"\" secondary_color=\"\" water_color=\"\" custom_style=\"WwogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJhZG1pbmlzdHJhdGl2ZSIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImxhYmVscy50ZXh0LmZpbGwiLAogICAgICAgICJzdHlsZXJzIjogWwogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAiY29sb3IiOiAiIzQ0NDQ0NCIKICAgICAgICAgICAgfQogICAgICAgIF0KICAgIH0sCiAgICB7CiAgICAgICAgImZlYXR1cmVUeXBlIjogImxhbmRzY2FwZSIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJjb2xvciI6ICIjZjJmMmYyIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAicG9pIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiYWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInZpc2liaWxpdHkiOiAib2ZmIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAicm9hZCIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJzYXR1cmF0aW9uIjogLTEwMAogICAgICAgICAgICB9LAogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAibGlnaHRuZXNzIjogNDUKICAgICAgICAgICAgfQogICAgICAgIF0KICAgIH0sCiAgICB7CiAgICAgICAgImZlYXR1cmVUeXBlIjogInJvYWQuaGlnaHdheSIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogInNpbXBsaWZpZWQiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJyb2FkLmhpZ2h3YXkiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJnZW9tZXRyeSIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogInNpbXBsaWZpZWQiCiAgICAgICAgICAgIH0sCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJjb2xvciI6ICIjZDc3Mjg3IgogICAgICAgICAgICB9LAogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAibGlnaHRuZXNzIjogIjAiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJyb2FkLmhpZ2h3YXkiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJsYWJlbHMudGV4dCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogIm9uIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAicm9hZC5oaWdod2F5IiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAibGFiZWxzLmljb24iLAogICAgICAgICJzdHlsZXJzIjogWwogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAidmlzaWJpbGl0eSI6ICJvbiIKICAgICAgICAgICAgfQogICAgICAgIF0KICAgIH0sCiAgICB7CiAgICAgICAgImZlYXR1cmVUeXBlIjogInJvYWQuYXJ0ZXJpYWwiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJhbGwiLAogICAgICAgICJzdHlsZXJzIjogWwogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAidmlzaWJpbGl0eSI6ICJvbiIKICAgICAgICAgICAgfQogICAgICAgIF0KICAgIH0sCiAgICB7CiAgICAgICAgImZlYXR1cmVUeXBlIjogInJvYWQuYXJ0ZXJpYWwiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJnZW9tZXRyeS5maWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgImNvbG9yIjogIiNkNzcyODciCiAgICAgICAgICAgIH0sCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJsaWdodG5lc3MiOiAiNzUiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJyb2FkLmFydGVyaWFsIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAibGFiZWxzLmljb24iLAogICAgICAgICJzdHlsZXJzIjogWwogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAidmlzaWJpbGl0eSI6ICJvZmYiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJyb2FkLmxvY2FsIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiZ2VvbWV0cnkuZmlsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJsaWdodG5lc3MiOiAiNzUiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJ0cmFuc2l0IiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiYWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInZpc2liaWxpdHkiOiAib2ZmIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAidHJhbnNpdC5saW5lIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiYWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInZpc2liaWxpdHkiOiAib24iCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJ0cmFuc2l0LnN0YXRpb24uYnVzIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiYWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInZpc2liaWxpdHkiOiAib24iCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJ0cmFuc2l0LnN0YXRpb24ucmFpbCIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogIm9uIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAidHJhbnNpdC5zdGF0aW9uLnJhaWwiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJsYWJlbHMuaWNvbiIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ3ZWlnaHQiOiAiMC4wMSIKICAgICAgICAgICAgfSwKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgImh1ZSI6ICIjZmYwMDM1IgogICAgICAgICAgICB9LAogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAibGlnaHRuZXNzIjogIjAiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJ3YXRlciIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogIm9uIgogICAgICAgICAgICB9LAogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAiY29sb3IiOiAiIzgwZTRkOCIKICAgICAgICAgICAgfSwKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgImxpZ2h0bmVzcyI6ICIyNSIKICAgICAgICAgICAgfSwKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInNhdHVyYXRpb24iOiAiLTIzIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfQpd\" el_class=\"\" el_style=\"\" api_key=\"AIzaSyBda9LxQ-Wztqsk6aFI7SkcdiypnKTPfiI\"][/bt_gmaps][/bt_column][bt_column width=\"1/3\" align=\"left\" vertical_align=\"btMiddleVertical\" border=\"no_border\" cell_padding=\"btDoublePadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"#e5e5e5\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_service icon=\"s7_e638\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoMediumSize\" url=\"\" headline=\"Address\" dash=\"\" text=\"3216 W Highland Boulevard\r\nSan Diego, California\" el_class=\"\" el_style=\"\" superheadline=\"\"][/bt_service][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSemiSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_service icon=\"s7_e670\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoMediumSize\" url=\"\" headline=\"Phone\" dash=\"\" text=\"+555-40-220-6672\" el_class=\"\" el_style=\"\" superheadline=\"\"][/bt_service][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSemiSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_service icon=\"s7_e63a\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoMediumSize\" url=\"\" headline=\"Email\" dash=\"\" text=\"office@california.hotel\" el_class=\"\" el_style=\"\" superheadline=\"\"][/bt_service][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"yes\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"7/12\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"News <i>&</i> Blog\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Morbi pharetra faucibus purus, nec pretium enim luctus quis. Pellentesque aliquet venenatis ante, quis pretium neque tristique eget. Integer in luctus urna. Aenean rutrum sodales pharetra.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"5/12\"][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_latest_posts number=\"3\" category=\"\" format=\"horizontal\" post_type=\"blog\" show_excerpt=\"yes\" show_date=\"yes\" show_author=\"yes\" el_class=\"\" el_style=\"\"][/bt_latest_posts][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"321\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"0.3\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Follow us\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Find out what’s hot and new, and get discounts for being a loyal customer and a Hotel California fan.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_icons][bt_icon icon=\"fa_f09a\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f099\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f0d5\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_column][/bt_row][/bt_section]','Street view','\n ','inherit','closed','closed','','837-revision-v1','','','2021-04-07 09:41:13','2021-04-07 09:41:13','',837,'http://mpycdev.theomggroup.com/?p=1089',0,'revision','',0);
INSERT INTO `smrc_posts` VALUES (1090,1,'2021-04-07 09:42:34','2021-04-07 09:42:34','[bt_section layout=\"wide\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\"][bt_slider height=\"medium\" auto_play=\"5000\" hide_arrows=\"\" hide_paging=\"\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item image=\"1048\" el_class=\"\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1025\" el_class=\"\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1026\" el_class=\"btLightSkin\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1035\" el_class=\"btLightSkin\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1050\" el_class=\"btLightSkin\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1049\" el_class=\"btLightSkin\" el_style=\"\"][/bt_slider_item][/bt_slider][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"dark\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#000080\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\"][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\r\n<h4 style=\"text-align: center;\"><em>founded 1953 in historic Monterey, California</em></h4>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSemiSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"2/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Our Club\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"A non-profit organization, MPYC is a yachting and social club comprised of over 400 adult and junior members with an interest in coming together to share in boating, sailing, yacht racing and social activities. Membership is not limited to boat owners.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/3\"][/bt_column][/bt_row][bt_row][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1068\" caption_text=\"View\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption=\"Double room\" show_titles=\"no\" caption_title=\"Room details\"][bt_header superheadline=\"CORINTHIAN SPIRIT\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Racing\" headline_size=\"medium\" dash=\"top\" subheadline=\"MPYC has built a reputation for top-notch competitive sailing. We host over 100 races per year and have hosted a variety of national championships.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1071\" caption_text=\"\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"PASSION\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Cruising\" headline_size=\"medium\" dash=\"top\" subheadline=\"Our members feature both power and sailboat owners. It\'s our great honor to live along California\'s Monterey Bay and enjoy the scenic vistas and marine wildlife.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1074\" caption_text=\"\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"DRIVE\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Rowing\" headline_size=\"medium\" dash=\"top\" subheadline=\"Our beginning, recreational and advanced rowers enjoy short and long distance local routes in addition to competition in local, West Coast and U.S. regattas. \" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1070\" caption_text=\"\" size=\"medium\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"COMMITMENT\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Youth Sailing\" headline_size=\"medium\" dash=\"top\" subheadline=\"Since its inception, Monterey Peninsula Yacht Club\'s has been proud to invest in the future of sailing and our youth to foster a better future for all us, and our club.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"66\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"0.7\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"special-offers\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"323\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"width: 60px; margin-top: -28px;\"][/bt_image][bt_hr top_spaced=\"topSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"1/2\"][/bt_column][bt_column width=\"1/2\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"GET THE BEST RATE\" headline=\"Offers <i>&</i> Deals\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"If you chose to stay with us you will enjoy modern home comforts in a traditional setting. Whether you are looking for a short weekend break or a longer holiday, we offer a range of packages that we think cater for all.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"1/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"0.7\" inner_background_color=\"#ffffff\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"67\" caption_text=\"Get together\" size=\"\" shape=\"square\" url=\"special-offers\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"Family vacation\" show_titles=\"no\"][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"Get together\" headline=\"Family vacation\" headline_size=\"medium\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"fa_f207\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f13d\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f1eb\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f206\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f1ae\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\r\n\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Integer mollis viverra diam ac ornare. Donec rhoncus nisi in felis congue, at pulvinar nibh dapibus.\r\n\r\n[/bt_text][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/3\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"special-offers\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"2/3\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"0.7\" inner_background_color=\"#ffffff\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"68\" caption_text=\"Celebrate\" size=\"\" shape=\"square\" url=\"special-offers\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"Newlyweds weekend\" show_titles=\"no\"][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"Celebrate\" headline=\"Newlyweds weekend\" headline_size=\"medium\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"fa_f1ba\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f072\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f228\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\r\n\r\nSed ut metus eu neque commodo fringilla imperdiet sed nibh. Sed volutpat fermentum ligula, et maximus ex ultricies sit amet.\r\n\r\n[/bt_text][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/3\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"special-offers\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"2/3\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"0.7\" inner_background_color=\"#ffffff\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"725\" caption_text=\"Procrastinate\" size=\"\" shape=\"square\" url=\"special-offers\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"Lazy weekend\" show_titles=\"no\"][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"Procrastinate\" headline=\"Lazy weekend\" headline_size=\"medium\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"fa_f1ba\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f072\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f1eb\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f000\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f185\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\r\n\r\nPhasellus non bibendum augue. Duis nibh felis, volutpat vitae pulvinar at, tincidunt eget mi. Donec venenatis condimentum fermentum.\r\n\r\n[/bt_text][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/3\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"special-offers\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"2/3\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#e5e5e5\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"322\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"width: 60px; margin-top: -28px;\"][/bt_image][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"7/12\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Activities\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Phasellus blandit a massa vitae congue. Nam ex massa, mattis ut sapien sit amet, consequat sodales risus. Sed interdum, ligula et lobortis faucibus, sem sem placerat augue, eget scelerisque turpis lorem et tellus.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][/bt_column][bt_column width=\"5/12\"][/bt_column][/bt_row][/bt_section][bt_section layout=\"wide\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"dark\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#e5e5e5\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"73\" caption_title=\"Beach voleyball\" caption_text=\"Enjoy the game\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"ENJOY THE GAME\" headline=\"Beach Voleyball\" headline_size=\"medium\" dash=\"top\" subheadline=\"Beach volleyball is ouy visitors favourite sport, highly enjoyable for everyone young or old. Just gather your team on the beach and find the opponents in a matter of minutes. And show what you can do, be a winner!\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_e9ac\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e040\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e041\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"74\" el_class=\"\" el_style=\"\"][bt_image image=\"74\" caption_title=\"Horseback riding\" caption_text=\"Enjoy the beach\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Enjoy the beach\" headline=\"Horseback riding\" headline_size=\"medium\" dash=\"top\" subheadline=\"How about a lazy afternoon with your friends on a hors, while the sun goes down? If you want to chill out, our horse riding team will teach you in a matter of minutes and help you wind down after a good day on the sun.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_ea13\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1e\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e05b\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"75\" el_class=\"\" el_style=\"\"][bt_image image=\"75\" caption_title=\"Waterskiing\" caption_text=\"Enjoy the sea\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Enjoy the sea\" headline=\"Waterskiing\" headline_size=\"medium\" dash=\"top\" subheadline=\"If you are a big fan of water sports, then why not try the waterskiing or waterboarding? At hotel California you will find there\'s an amateur champoionship every year. Rated as the most fun activity by our visitors.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_e05b\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9a3\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9e5\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"76\" el_class=\"\" el_style=\"\"][bt_image image=\"76\" caption_title=\"Paragliding\" caption_text=\"Enjoy the sky\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Enjoy the sky\" headline=\"Parasailing\" headline_size=\"medium\" dash=\"top\" subheadline=\"Enjoy the thrill on the sky with our parasailing team and feel the California sun on your face. The team will help you get your adrenaline high and will be capuring your moments on a high-definition camera.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_ea2f\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"s7_e67b\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9f3\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_slider height=\"auto\" auto_play=\"\" hide_arrows=\"\" hide_paging=\"btSliderHidePaging\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/6\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1088\" caption_text=\"\" size=\"\" shape=\"circle\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][/bt_image][bt_header superheadline=\"MPYC\" headline=\"Mission\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][bt_column_inner width=\"5/6\"][bt_text]\r\n<blockquote>To connect our members and our diverse community to the boundless recreational opportunities and proper stewardship of the Monterey Bay and the Pacific Ocean.</blockquote>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/6\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1088\" caption_text=\"\" size=\"\" shape=\"circle\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][/bt_image][bt_header superheadline=\"MPYC\" headline=\"Vision\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][bt_column_inner width=\"5/6\"][bt_text]\r\n<blockquote>To actively promote the Monterey Peninsula Yacht Club as a prominent West Coast destination of choice for Corinthian spirit yacht racing, recreational boating, rowing and cruising.</blockquote>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/6\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1088\" caption_text=\"\" size=\"\" shape=\"circle\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][/bt_image][bt_header superheadline=\"MPYC\" headline=\"Commitment\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][bt_column_inner width=\"5/6\"][bt_text]\r\n<blockquote>To supporting a diverse membership that fosters inclusiveness, camaraderie, friendship, community involvement and leadership with the goal of advancing safe and sustainable maritime ecological practices.</blockquote>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][/bt_slider][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/3\" align=\"left\" vertical_align=\"btMiddleVertical\" border=\"no_border\" cell_padding=\"btDoublePadding\" animation=\"animate animate-fadein\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"#e5e5e5\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"IN A NUTSHELL\" headline=\"Hotel California\" headline_size=\"large\" dash=\"bottom\" subheadline=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer mollis viverra diam ac ornare. Donec rhoncus nisi in felis congue, at pulvinar nibh dapibus.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_button text=\"READ MORE\" icon=\"no_icon\" url=\"\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"ExtraSmall\" width=\"Normal\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"2/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_slider height=\"auto\" auto_play=\"\" hide_arrows=\"\" hide_paging=\"btSliderHidePaging\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"81\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"82\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"83\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"84\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"85\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][/bt_slider][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\"][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"2/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_gmaps latitude=\"36.602383\" longitude=\"-121.879245 \" zoom=\"11\" icon=\"342\" height=\"400px\" primary_color=\"\" secondary_color=\"\" water_color=\"\" custom_style=\"WwogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJhZG1pbmlzdHJhdGl2ZSIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImxhYmVscy50ZXh0LmZpbGwiLAogICAgICAgICJzdHlsZXJzIjogWwogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAiY29sb3IiOiAiIzQ0NDQ0NCIKICAgICAgICAgICAgfQogICAgICAgIF0KICAgIH0sCiAgICB7CiAgICAgICAgImZlYXR1cmVUeXBlIjogImxhbmRzY2FwZSIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJjb2xvciI6ICIjZjJmMmYyIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAicG9pIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiYWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInZpc2liaWxpdHkiOiAib2ZmIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAicm9hZCIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJzYXR1cmF0aW9uIjogLTEwMAogICAgICAgICAgICB9LAogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAibGlnaHRuZXNzIjogNDUKICAgICAgICAgICAgfQogICAgICAgIF0KICAgIH0sCiAgICB7CiAgICAgICAgImZlYXR1cmVUeXBlIjogInJvYWQuaGlnaHdheSIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogInNpbXBsaWZpZWQiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJyb2FkLmhpZ2h3YXkiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJnZW9tZXRyeSIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogInNpbXBsaWZpZWQiCiAgICAgICAgICAgIH0sCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJjb2xvciI6ICIjZDc3Mjg3IgogICAgICAgICAgICB9LAogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAibGlnaHRuZXNzIjogIjAiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJyb2FkLmhpZ2h3YXkiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJsYWJlbHMudGV4dCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogIm9uIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAicm9hZC5oaWdod2F5IiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAibGFiZWxzLmljb24iLAogICAgICAgICJzdHlsZXJzIjogWwogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAidmlzaWJpbGl0eSI6ICJvbiIKICAgICAgICAgICAgfQogICAgICAgIF0KICAgIH0sCiAgICB7CiAgICAgICAgImZlYXR1cmVUeXBlIjogInJvYWQuYXJ0ZXJpYWwiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJhbGwiLAogICAgICAgICJzdHlsZXJzIjogWwogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAidmlzaWJpbGl0eSI6ICJvbiIKICAgICAgICAgICAgfQogICAgICAgIF0KICAgIH0sCiAgICB7CiAgICAgICAgImZlYXR1cmVUeXBlIjogInJvYWQuYXJ0ZXJpYWwiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJnZW9tZXRyeS5maWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgImNvbG9yIjogIiNkNzcyODciCiAgICAgICAgICAgIH0sCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJsaWdodG5lc3MiOiAiNzUiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJyb2FkLmFydGVyaWFsIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAibGFiZWxzLmljb24iLAogICAgICAgICJzdHlsZXJzIjogWwogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAidmlzaWJpbGl0eSI6ICJvZmYiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJyb2FkLmxvY2FsIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiZ2VvbWV0cnkuZmlsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJsaWdodG5lc3MiOiAiNzUiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJ0cmFuc2l0IiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiYWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInZpc2liaWxpdHkiOiAib2ZmIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAidHJhbnNpdC5saW5lIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiYWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInZpc2liaWxpdHkiOiAib24iCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJ0cmFuc2l0LnN0YXRpb24uYnVzIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiYWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInZpc2liaWxpdHkiOiAib24iCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJ0cmFuc2l0LnN0YXRpb24ucmFpbCIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogIm9uIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAidHJhbnNpdC5zdGF0aW9uLnJhaWwiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJsYWJlbHMuaWNvbiIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ3ZWlnaHQiOiAiMC4wMSIKICAgICAgICAgICAgfSwKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgImh1ZSI6ICIjZmYwMDM1IgogICAgICAgICAgICB9LAogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAibGlnaHRuZXNzIjogIjAiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJ3YXRlciIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogIm9uIgogICAgICAgICAgICB9LAogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAiY29sb3IiOiAiIzgwZTRkOCIKICAgICAgICAgICAgfSwKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgImxpZ2h0bmVzcyI6ICIyNSIKICAgICAgICAgICAgfSwKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInNhdHVyYXRpb24iOiAiLTIzIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfQpd\" el_class=\"\" el_style=\"\" api_key=\"AIzaSyBda9LxQ-Wztqsk6aFI7SkcdiypnKTPfiI\"][/bt_gmaps][/bt_column][bt_column width=\"1/3\" align=\"left\" vertical_align=\"btMiddleVertical\" border=\"no_border\" cell_padding=\"btDoublePadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"#e5e5e5\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_service icon=\"s7_e638\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoMediumSize\" url=\"\" headline=\"Address\" dash=\"\" text=\"3216 W Highland Boulevard\r\nSan Diego, California\" el_class=\"\" el_style=\"\" superheadline=\"\"][/bt_service][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSemiSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_service icon=\"s7_e670\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoMediumSize\" url=\"\" headline=\"Phone\" dash=\"\" text=\"+555-40-220-6672\" el_class=\"\" el_style=\"\" superheadline=\"\"][/bt_service][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSemiSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_service icon=\"s7_e63a\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoMediumSize\" url=\"\" headline=\"Email\" dash=\"\" text=\"office@california.hotel\" el_class=\"\" el_style=\"\" superheadline=\"\"][/bt_service][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"yes\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"7/12\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"News <i>&</i> Blog\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Morbi pharetra faucibus purus, nec pretium enim luctus quis. Pellentesque aliquet venenatis ante, quis pretium neque tristique eget. Integer in luctus urna. Aenean rutrum sodales pharetra.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"5/12\"][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_latest_posts number=\"3\" category=\"\" format=\"horizontal\" post_type=\"blog\" show_excerpt=\"yes\" show_date=\"yes\" show_author=\"yes\" el_class=\"\" el_style=\"\"][/bt_latest_posts][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"321\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"0.3\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Follow us\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Find out what’s hot and new, and get discounts for being a loyal customer and a Hotel California fan.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_icons][bt_icon icon=\"fa_f09a\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f099\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f0d5\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_column][/bt_row][/bt_section]','Street view','\n ','inherit','closed','closed','','837-revision-v1','','','2021-04-07 09:42:34','2021-04-07 09:42:34','',837,'http://mpycdev.theomggroup.com/?p=1090',0,'revision','',0);
INSERT INTO `smrc_posts` VALUES (1091,1,'2021-04-07 09:48:57','2021-04-07 09:48:57','[bt_section layout=\"wide\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\"][bt_slider height=\"medium\" auto_play=\"5000\" hide_arrows=\"\" hide_paging=\"\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item image=\"1048\" el_class=\"\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1025\" el_class=\"\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1026\" el_class=\"btLightSkin\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1035\" el_class=\"btLightSkin\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1050\" el_class=\"btLightSkin\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1049\" el_class=\"btLightSkin\" el_style=\"\"][/bt_slider_item][/bt_slider][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"dark\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#000080\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\"][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\r\n<h4 style=\"text-align: center;\"><em>founded 1953 in historic Monterey, California</em></h4>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSemiSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"2/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Our Club\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"A non-profit organization, MPYC is a yachting and social club comprised of adult and junior members with an interest in coming together to share in boating, sailing, yacht racing and social activities. Membership is not limited to boat owners.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/3\"][/bt_column][/bt_row][bt_row][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1068\" caption_text=\"View\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption=\"Double room\" show_titles=\"no\" caption_title=\"Room details\"][bt_header superheadline=\"CORINTHIAN SPIRIT\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Racing\" headline_size=\"medium\" dash=\"top\" subheadline=\"MPYC has built a reputation for top-notch competitive sailing. We host over 100 races per year and have hosted a variety of national championships.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1071\" caption_text=\"\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"PASSION\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Cruising\" headline_size=\"medium\" dash=\"top\" subheadline=\"Our members feature both power and sailboat owners. It\'s our great honor to live along California\'s Monterey Bay and enjoy the scenic vistas and marine wildlife.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1074\" caption_text=\"\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"DRIVE\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Rowing\" headline_size=\"medium\" dash=\"top\" subheadline=\"Our beginning, recreational and advanced rowers enjoy short and long distance local routes in addition to competition in local, West Coast and U.S. regattas. \" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1070\" caption_text=\"\" size=\"medium\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"COMMITMENT\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Youth Sailing\" headline_size=\"medium\" dash=\"top\" subheadline=\"Since its inception, Monterey Peninsula Yacht Club\'s has been proud to invest in the future of sailing and our youth to foster a better future for all us, and our club.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"66\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"0.7\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"special-offers\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"323\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"width: 60px; margin-top: -28px;\"][/bt_image][bt_hr top_spaced=\"topSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"1/2\"][/bt_column][bt_column width=\"1/2\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"GET THE BEST RATE\" headline=\"Offers <i>&</i> Deals\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"If you chose to stay with us you will enjoy modern home comforts in a traditional setting. Whether you are looking for a short weekend break or a longer holiday, we offer a range of packages that we think cater for all.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"1/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"0.7\" inner_background_color=\"#ffffff\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"67\" caption_text=\"Get together\" size=\"\" shape=\"square\" url=\"special-offers\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"Family vacation\" show_titles=\"no\"][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"Get together\" headline=\"Family vacation\" headline_size=\"medium\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"fa_f207\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f13d\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f1eb\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f206\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f1ae\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\r\n\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Integer mollis viverra diam ac ornare. Donec rhoncus nisi in felis congue, at pulvinar nibh dapibus.\r\n\r\n[/bt_text][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/3\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"special-offers\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"2/3\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"0.7\" inner_background_color=\"#ffffff\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"68\" caption_text=\"Celebrate\" size=\"\" shape=\"square\" url=\"special-offers\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"Newlyweds weekend\" show_titles=\"no\"][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"Celebrate\" headline=\"Newlyweds weekend\" headline_size=\"medium\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"fa_f1ba\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f072\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f228\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\r\n\r\nSed ut metus eu neque commodo fringilla imperdiet sed nibh. Sed volutpat fermentum ligula, et maximus ex ultricies sit amet.\r\n\r\n[/bt_text][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/3\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"special-offers\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"2/3\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"0.7\" inner_background_color=\"#ffffff\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"725\" caption_text=\"Procrastinate\" size=\"\" shape=\"square\" url=\"special-offers\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"Lazy weekend\" show_titles=\"no\"][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"Procrastinate\" headline=\"Lazy weekend\" headline_size=\"medium\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"fa_f1ba\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f072\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f1eb\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f000\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f185\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\r\n\r\nPhasellus non bibendum augue. Duis nibh felis, volutpat vitae pulvinar at, tincidunt eget mi. Donec venenatis condimentum fermentum.\r\n\r\n[/bt_text][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/3\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"special-offers\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"2/3\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#e5e5e5\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"322\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"width: 60px; margin-top: -28px;\"][/bt_image][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"7/12\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Activities\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Phasellus blandit a massa vitae congue. Nam ex massa, mattis ut sapien sit amet, consequat sodales risus. Sed interdum, ligula et lobortis faucibus, sem sem placerat augue, eget scelerisque turpis lorem et tellus.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][/bt_column][bt_column width=\"5/12\"][/bt_column][/bt_row][/bt_section][bt_section layout=\"wide\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"dark\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#e5e5e5\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"73\" caption_title=\"Beach voleyball\" caption_text=\"Enjoy the game\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"ENJOY THE GAME\" headline=\"Beach Voleyball\" headline_size=\"medium\" dash=\"top\" subheadline=\"Beach volleyball is ouy visitors favourite sport, highly enjoyable for everyone young or old. Just gather your team on the beach and find the opponents in a matter of minutes. And show what you can do, be a winner!\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_e9ac\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e040\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e041\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"74\" el_class=\"\" el_style=\"\"][bt_image image=\"74\" caption_title=\"Horseback riding\" caption_text=\"Enjoy the beach\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Enjoy the beach\" headline=\"Horseback riding\" headline_size=\"medium\" dash=\"top\" subheadline=\"How about a lazy afternoon with your friends on a hors, while the sun goes down? If you want to chill out, our horse riding team will teach you in a matter of minutes and help you wind down after a good day on the sun.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_ea13\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1e\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e05b\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"75\" el_class=\"\" el_style=\"\"][bt_image image=\"75\" caption_title=\"Waterskiing\" caption_text=\"Enjoy the sea\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Enjoy the sea\" headline=\"Waterskiing\" headline_size=\"medium\" dash=\"top\" subheadline=\"If you are a big fan of water sports, then why not try the waterskiing or waterboarding? At hotel California you will find there\'s an amateur champoionship every year. Rated as the most fun activity by our visitors.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_e05b\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9a3\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9e5\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"76\" el_class=\"\" el_style=\"\"][bt_image image=\"76\" caption_title=\"Paragliding\" caption_text=\"Enjoy the sky\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Enjoy the sky\" headline=\"Parasailing\" headline_size=\"medium\" dash=\"top\" subheadline=\"Enjoy the thrill on the sky with our parasailing team and feel the California sun on your face. The team will help you get your adrenaline high and will be capuring your moments on a high-definition camera.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_ea2f\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"s7_e67b\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9f3\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_slider height=\"auto\" auto_play=\"\" hide_arrows=\"\" hide_paging=\"btSliderHidePaging\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/6\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1088\" caption_text=\"\" size=\"\" shape=\"circle\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][/bt_image][bt_header superheadline=\"MPYC\" headline=\"Mission\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][bt_column_inner width=\"5/6\"][bt_text]\r\n<blockquote>To connect our members and our diverse community to the boundless recreational opportunities and proper stewardship of the Monterey Bay and the Pacific Ocean.</blockquote>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/6\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1088\" caption_text=\"\" size=\"\" shape=\"circle\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][/bt_image][bt_header superheadline=\"MPYC\" headline=\"Vision\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][bt_column_inner width=\"5/6\"][bt_text]\r\n<blockquote>To actively promote the Monterey Peninsula Yacht Club as a prominent West Coast destination of choice for Corinthian spirit yacht racing, recreational boating, rowing and cruising.</blockquote>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/6\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1088\" caption_text=\"\" size=\"\" shape=\"circle\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][/bt_image][bt_header superheadline=\"MPYC\" headline=\"Commitment\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][bt_column_inner width=\"5/6\"][bt_text]\r\n<blockquote>To supporting a diverse membership that fosters inclusiveness, camaraderie, friendship, community involvement and leadership with the goal of advancing safe and sustainable maritime ecological practices.</blockquote>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][/bt_slider][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/3\" align=\"left\" vertical_align=\"btMiddleVertical\" border=\"no_border\" cell_padding=\"btDoublePadding\" animation=\"animate animate-fadein\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"#e5e5e5\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"IN A NUTSHELL\" headline=\"Hotel California\" headline_size=\"large\" dash=\"bottom\" subheadline=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer mollis viverra diam ac ornare. Donec rhoncus nisi in felis congue, at pulvinar nibh dapibus.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_button text=\"READ MORE\" icon=\"no_icon\" url=\"\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"ExtraSmall\" width=\"Normal\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"2/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_slider height=\"auto\" auto_play=\"\" hide_arrows=\"\" hide_paging=\"btSliderHidePaging\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"81\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"82\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"83\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"84\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"85\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][/bt_slider][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\"][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"2/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_gmaps latitude=\"36.602383\" longitude=\"-121.879245 \" zoom=\"11\" icon=\"342\" height=\"400px\" primary_color=\"\" secondary_color=\"\" water_color=\"\" custom_style=\"WwogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJhZG1pbmlzdHJhdGl2ZSIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImxhYmVscy50ZXh0LmZpbGwiLAogICAgICAgICJzdHlsZXJzIjogWwogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAiY29sb3IiOiAiIzQ0NDQ0NCIKICAgICAgICAgICAgfQogICAgICAgIF0KICAgIH0sCiAgICB7CiAgICAgICAgImZlYXR1cmVUeXBlIjogImxhbmRzY2FwZSIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJjb2xvciI6ICIjZjJmMmYyIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAicG9pIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiYWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInZpc2liaWxpdHkiOiAib2ZmIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAicm9hZCIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJzYXR1cmF0aW9uIjogLTEwMAogICAgICAgICAgICB9LAogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAibGlnaHRuZXNzIjogNDUKICAgICAgICAgICAgfQogICAgICAgIF0KICAgIH0sCiAgICB7CiAgICAgICAgImZlYXR1cmVUeXBlIjogInJvYWQuaGlnaHdheSIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogInNpbXBsaWZpZWQiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJyb2FkLmhpZ2h3YXkiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJnZW9tZXRyeSIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogInNpbXBsaWZpZWQiCiAgICAgICAgICAgIH0sCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJjb2xvciI6ICIjZDc3Mjg3IgogICAgICAgICAgICB9LAogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAibGlnaHRuZXNzIjogIjAiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJyb2FkLmhpZ2h3YXkiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJsYWJlbHMudGV4dCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogIm9uIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAicm9hZC5oaWdod2F5IiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAibGFiZWxzLmljb24iLAogICAgICAgICJzdHlsZXJzIjogWwogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAidmlzaWJpbGl0eSI6ICJvbiIKICAgICAgICAgICAgfQogICAgICAgIF0KICAgIH0sCiAgICB7CiAgICAgICAgImZlYXR1cmVUeXBlIjogInJvYWQuYXJ0ZXJpYWwiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJhbGwiLAogICAgICAgICJzdHlsZXJzIjogWwogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAidmlzaWJpbGl0eSI6ICJvbiIKICAgICAgICAgICAgfQogICAgICAgIF0KICAgIH0sCiAgICB7CiAgICAgICAgImZlYXR1cmVUeXBlIjogInJvYWQuYXJ0ZXJpYWwiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJnZW9tZXRyeS5maWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgImNvbG9yIjogIiNkNzcyODciCiAgICAgICAgICAgIH0sCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJsaWdodG5lc3MiOiAiNzUiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJyb2FkLmFydGVyaWFsIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAibGFiZWxzLmljb24iLAogICAgICAgICJzdHlsZXJzIjogWwogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAidmlzaWJpbGl0eSI6ICJvZmYiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJyb2FkLmxvY2FsIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiZ2VvbWV0cnkuZmlsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJsaWdodG5lc3MiOiAiNzUiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJ0cmFuc2l0IiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiYWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInZpc2liaWxpdHkiOiAib2ZmIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAidHJhbnNpdC5saW5lIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiYWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInZpc2liaWxpdHkiOiAib24iCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJ0cmFuc2l0LnN0YXRpb24uYnVzIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiYWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInZpc2liaWxpdHkiOiAib24iCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJ0cmFuc2l0LnN0YXRpb24ucmFpbCIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogIm9uIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAidHJhbnNpdC5zdGF0aW9uLnJhaWwiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJsYWJlbHMuaWNvbiIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ3ZWlnaHQiOiAiMC4wMSIKICAgICAgICAgICAgfSwKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgImh1ZSI6ICIjZmYwMDM1IgogICAgICAgICAgICB9LAogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAibGlnaHRuZXNzIjogIjAiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJ3YXRlciIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogIm9uIgogICAgICAgICAgICB9LAogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAiY29sb3IiOiAiIzgwZTRkOCIKICAgICAgICAgICAgfSwKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgImxpZ2h0bmVzcyI6ICIyNSIKICAgICAgICAgICAgfSwKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInNhdHVyYXRpb24iOiAiLTIzIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfQpd\" el_class=\"\" el_style=\"\" api_key=\"AIzaSyBda9LxQ-Wztqsk6aFI7SkcdiypnKTPfiI\"][/bt_gmaps][/bt_column][bt_column width=\"1/3\" align=\"left\" vertical_align=\"btMiddleVertical\" border=\"no_border\" cell_padding=\"btDoublePadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"#e5e5e5\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_service icon=\"s7_e638\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoMediumSize\" url=\"\" headline=\"Address\" dash=\"\" text=\"3216 W Highland Boulevard\r\nSan Diego, California\" el_class=\"\" el_style=\"\" superheadline=\"\"][/bt_service][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSemiSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_service icon=\"s7_e670\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoMediumSize\" url=\"\" headline=\"Phone\" dash=\"\" text=\"+555-40-220-6672\" el_class=\"\" el_style=\"\" superheadline=\"\"][/bt_service][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSemiSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_service icon=\"s7_e63a\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoMediumSize\" url=\"\" headline=\"Email\" dash=\"\" text=\"office@california.hotel\" el_class=\"\" el_style=\"\" superheadline=\"\"][/bt_service][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"yes\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"7/12\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"News <i>&</i> Blog\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Morbi pharetra faucibus purus, nec pretium enim luctus quis. Pellentesque aliquet venenatis ante, quis pretium neque tristique eget. Integer in luctus urna. Aenean rutrum sodales pharetra.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"5/12\"][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_latest_posts number=\"3\" category=\"\" format=\"horizontal\" post_type=\"blog\" show_excerpt=\"yes\" show_date=\"yes\" show_author=\"yes\" el_class=\"\" el_style=\"\"][/bt_latest_posts][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"321\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"0.3\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Follow us\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Find out what’s hot and new, and get discounts for being a loyal customer and a Hotel California fan.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_icons][bt_icon icon=\"fa_f09a\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f099\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f0d5\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_column][/bt_row][/bt_section]','Street view','\n ','inherit','closed','closed','','837-revision-v1','','','2021-04-07 09:48:57','2021-04-07 09:48:57','',837,'http://mpycdev.theomggroup.com/?p=1091',0,'revision','',0);
INSERT INTO `smrc_posts` VALUES (1092,1,'2021-04-07 11:08:30','2021-04-07 11:08:30','','burgee-parallax-bkg','','inherit','open','closed','','burgee-parallax-bkg','','','2021-04-07 11:08:30','2021-04-07 11:08:30','',837,'http://mpycdev.theomggroup.com/wp-content/uploads/2021/04/burgee-parallax-bkg.png',0,'attachment','image/png',0);
INSERT INTO `smrc_posts` VALUES (1093,1,'2021-04-07 11:09:20','2021-04-07 11:09:20','[bt_section layout=\"wide\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\"][bt_slider height=\"medium\" auto_play=\"5000\" hide_arrows=\"\" hide_paging=\"\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item image=\"1048\" el_class=\"\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1025\" el_class=\"\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1026\" el_class=\"btLightSkin\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1035\" el_class=\"btLightSkin\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1050\" el_class=\"btLightSkin\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1049\" el_class=\"btLightSkin\" el_style=\"\"][/bt_slider_item][/bt_slider][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"dark\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#000080\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\"][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\r\n<h4 style=\"text-align: center;\"><em>founded 1953 in historic Monterey, California</em></h4>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSemiSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"2/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Our Club\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"A non-profit organization, MPYC is a yachting and social club comprised of adult and junior members with an interest in coming together to share in boating, sailing, yacht racing and social activities. Membership is not limited to boat owners.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/3\"][/bt_column][/bt_row][bt_row][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1068\" caption_text=\"View\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption=\"Double room\" show_titles=\"no\" caption_title=\"Room details\"][bt_header superheadline=\"CORINTHIAN SPIRIT\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Racing\" headline_size=\"medium\" dash=\"top\" subheadline=\"MPYC has built a reputation for top-notch competitive sailing. We host over 100 races per year and have hosted a variety of national championships.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1071\" caption_text=\"\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"PASSION\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Cruising\" headline_size=\"medium\" dash=\"top\" subheadline=\"Our members feature both power and sailboat owners. It\'s our great honor to live along California\'s Monterey Bay and enjoy the scenic vistas and marine wildlife.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1074\" caption_text=\"\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"DRIVE\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Rowing\" headline_size=\"medium\" dash=\"top\" subheadline=\"Our beginning, recreational and advanced rowers enjoy short and long distance local routes in addition to competition in local, West Coast and U.S. regattas. \" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1070\" caption_text=\"\" size=\"medium\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"COMMITMENT\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Youth Sailing\" headline_size=\"medium\" dash=\"top\" subheadline=\"Since its inception, Monterey Peninsula Yacht Club\'s has been proud to invest in the future of sailing and our youth to foster a better future for all us, and our club.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"66\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"0.7\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"special-offers\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"323\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"width: 60px; margin-top: -28px;\"][/bt_image][bt_hr top_spaced=\"topSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"1/2\"][/bt_column][bt_column width=\"1/2\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"GET THE BEST RATE\" headline=\"Offers <i>&</i> Deals\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"If you chose to stay with us you will enjoy modern home comforts in a traditional setting. Whether you are looking for a short weekend break or a longer holiday, we offer a range of packages that we think cater for all.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"1/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"0.7\" inner_background_color=\"#ffffff\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"67\" caption_text=\"Get together\" size=\"\" shape=\"square\" url=\"special-offers\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"Family vacation\" show_titles=\"no\"][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"Get together\" headline=\"Family vacation\" headline_size=\"medium\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"fa_f207\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f13d\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f1eb\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f206\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f1ae\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\r\n\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Integer mollis viverra diam ac ornare. Donec rhoncus nisi in felis congue, at pulvinar nibh dapibus.\r\n\r\n[/bt_text][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/3\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"special-offers\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"2/3\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"0.7\" inner_background_color=\"#ffffff\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"68\" caption_text=\"Celebrate\" size=\"\" shape=\"square\" url=\"special-offers\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"Newlyweds weekend\" show_titles=\"no\"][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"Celebrate\" headline=\"Newlyweds weekend\" headline_size=\"medium\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"fa_f1ba\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f072\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f228\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\r\n\r\nSed ut metus eu neque commodo fringilla imperdiet sed nibh. Sed volutpat fermentum ligula, et maximus ex ultricies sit amet.\r\n\r\n[/bt_text][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/3\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"special-offers\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"2/3\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"0.7\" inner_background_color=\"#ffffff\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"725\" caption_text=\"Procrastinate\" size=\"\" shape=\"square\" url=\"special-offers\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"Lazy weekend\" show_titles=\"no\"][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"Procrastinate\" headline=\"Lazy weekend\" headline_size=\"medium\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"fa_f1ba\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f072\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f1eb\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f000\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f185\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\r\n\r\nPhasellus non bibendum augue. Duis nibh felis, volutpat vitae pulvinar at, tincidunt eget mi. Donec venenatis condimentum fermentum.\r\n\r\n[/bt_text][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/3\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"special-offers\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"2/3\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#e5e5e5\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"322\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"width: 60px; margin-top: -28px;\"][/bt_image][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"7/12\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Activities\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Phasellus blandit a massa vitae congue. Nam ex massa, mattis ut sapien sit amet, consequat sodales risus. Sed interdum, ligula et lobortis faucibus, sem sem placerat augue, eget scelerisque turpis lorem et tellus.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][/bt_column][bt_column width=\"5/12\"][/bt_column][/bt_row][/bt_section][bt_section layout=\"wide\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"dark\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#e5e5e5\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"73\" caption_title=\"Beach voleyball\" caption_text=\"Enjoy the game\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"ENJOY THE GAME\" headline=\"Beach Voleyball\" headline_size=\"medium\" dash=\"top\" subheadline=\"Beach volleyball is ouy visitors favourite sport, highly enjoyable for everyone young or old. Just gather your team on the beach and find the opponents in a matter of minutes. And show what you can do, be a winner!\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_e9ac\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e040\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e041\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"74\" el_class=\"\" el_style=\"\"][bt_image image=\"74\" caption_title=\"Horseback riding\" caption_text=\"Enjoy the beach\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Enjoy the beach\" headline=\"Horseback riding\" headline_size=\"medium\" dash=\"top\" subheadline=\"How about a lazy afternoon with your friends on a hors, while the sun goes down? If you want to chill out, our horse riding team will teach you in a matter of minutes and help you wind down after a good day on the sun.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_ea13\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1e\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e05b\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"75\" el_class=\"\" el_style=\"\"][bt_image image=\"75\" caption_title=\"Waterskiing\" caption_text=\"Enjoy the sea\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Enjoy the sea\" headline=\"Waterskiing\" headline_size=\"medium\" dash=\"top\" subheadline=\"If you are a big fan of water sports, then why not try the waterskiing or waterboarding? At hotel California you will find there\'s an amateur champoionship every year. Rated as the most fun activity by our visitors.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_e05b\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9a3\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9e5\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"76\" el_class=\"\" el_style=\"\"][bt_image image=\"76\" caption_title=\"Paragliding\" caption_text=\"Enjoy the sky\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Enjoy the sky\" headline=\"Parasailing\" headline_size=\"medium\" dash=\"top\" subheadline=\"Enjoy the thrill on the sky with our parasailing team and feel the California sun on your face. The team will help you get your adrenaline high and will be capuring your moments on a high-definition camera.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_ea2f\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"s7_e67b\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9f3\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_slider height=\"auto\" auto_play=\"\" hide_arrows=\"\" hide_paging=\"btSliderHidePaging\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/6\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1088\" caption_text=\"\" size=\"\" shape=\"circle\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][/bt_image][bt_header superheadline=\"MPYC\" headline=\"Mission\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][bt_column_inner width=\"5/6\"][bt_text]\r\n<blockquote>To connect our members and our diverse community to the boundless recreational opportunities and proper stewardship of the Monterey Bay and the Pacific Ocean.</blockquote>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/6\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1088\" caption_text=\"\" size=\"\" shape=\"circle\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][/bt_image][bt_header superheadline=\"MPYC\" headline=\"Vision\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][bt_column_inner width=\"5/6\"][bt_text]\r\n<blockquote>To actively promote the Monterey Peninsula Yacht Club as a prominent West Coast destination of choice for Corinthian spirit yacht racing, recreational boating, rowing and cruising.</blockquote>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/6\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1088\" caption_text=\"\" size=\"\" shape=\"circle\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][/bt_image][bt_header superheadline=\"MPYC\" headline=\"Commitment\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][bt_column_inner width=\"5/6\"][bt_text]\r\n<blockquote>To supporting a diverse membership that fosters inclusiveness, camaraderie, friendship, community involvement and leadership with the goal of advancing safe and sustainable maritime ecological practices.</blockquote>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][/bt_slider][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/3\" align=\"left\" vertical_align=\"btMiddleVertical\" border=\"no_border\" cell_padding=\"btDoublePadding\" animation=\"animate animate-fadein\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"#e5e5e5\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"IN A NUTSHELL\" headline=\"Hotel California\" headline_size=\"large\" dash=\"bottom\" subheadline=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer mollis viverra diam ac ornare. Donec rhoncus nisi in felis congue, at pulvinar nibh dapibus.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_button text=\"READ MORE\" icon=\"no_icon\" url=\"\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"ExtraSmall\" width=\"Normal\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"2/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_slider height=\"auto\" auto_play=\"\" hide_arrows=\"\" hide_paging=\"btSliderHidePaging\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"81\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"82\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"83\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"84\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"85\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][/bt_slider][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\"][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"2/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_gmaps latitude=\"36.602383\" longitude=\"-121.879245 \" zoom=\"11\" icon=\"342\" height=\"400px\" primary_color=\"\" secondary_color=\"\" water_color=\"\" custom_style=\"WwogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJhZG1pbmlzdHJhdGl2ZSIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImxhYmVscy50ZXh0LmZpbGwiLAogICAgICAgICJzdHlsZXJzIjogWwogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAiY29sb3IiOiAiIzQ0NDQ0NCIKICAgICAgICAgICAgfQogICAgICAgIF0KICAgIH0sCiAgICB7CiAgICAgICAgImZlYXR1cmVUeXBlIjogImxhbmRzY2FwZSIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJjb2xvciI6ICIjZjJmMmYyIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAicG9pIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiYWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInZpc2liaWxpdHkiOiAib2ZmIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAicm9hZCIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJzYXR1cmF0aW9uIjogLTEwMAogICAgICAgICAgICB9LAogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAibGlnaHRuZXNzIjogNDUKICAgICAgICAgICAgfQogICAgICAgIF0KICAgIH0sCiAgICB7CiAgICAgICAgImZlYXR1cmVUeXBlIjogInJvYWQuaGlnaHdheSIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogInNpbXBsaWZpZWQiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJyb2FkLmhpZ2h3YXkiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJnZW9tZXRyeSIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogInNpbXBsaWZpZWQiCiAgICAgICAgICAgIH0sCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJjb2xvciI6ICIjZDc3Mjg3IgogICAgICAgICAgICB9LAogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAibGlnaHRuZXNzIjogIjAiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJyb2FkLmhpZ2h3YXkiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJsYWJlbHMudGV4dCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogIm9uIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAicm9hZC5oaWdod2F5IiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAibGFiZWxzLmljb24iLAogICAgICAgICJzdHlsZXJzIjogWwogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAidmlzaWJpbGl0eSI6ICJvbiIKICAgICAgICAgICAgfQogICAgICAgIF0KICAgIH0sCiAgICB7CiAgICAgICAgImZlYXR1cmVUeXBlIjogInJvYWQuYXJ0ZXJpYWwiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJhbGwiLAogICAgICAgICJzdHlsZXJzIjogWwogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAidmlzaWJpbGl0eSI6ICJvbiIKICAgICAgICAgICAgfQogICAgICAgIF0KICAgIH0sCiAgICB7CiAgICAgICAgImZlYXR1cmVUeXBlIjogInJvYWQuYXJ0ZXJpYWwiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJnZW9tZXRyeS5maWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgImNvbG9yIjogIiNkNzcyODciCiAgICAgICAgICAgIH0sCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJsaWdodG5lc3MiOiAiNzUiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJyb2FkLmFydGVyaWFsIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAibGFiZWxzLmljb24iLAogICAgICAgICJzdHlsZXJzIjogWwogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAidmlzaWJpbGl0eSI6ICJvZmYiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJyb2FkLmxvY2FsIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiZ2VvbWV0cnkuZmlsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJsaWdodG5lc3MiOiAiNzUiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJ0cmFuc2l0IiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiYWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInZpc2liaWxpdHkiOiAib2ZmIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAidHJhbnNpdC5saW5lIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiYWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInZpc2liaWxpdHkiOiAib24iCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJ0cmFuc2l0LnN0YXRpb24uYnVzIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiYWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInZpc2liaWxpdHkiOiAib24iCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJ0cmFuc2l0LnN0YXRpb24ucmFpbCIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogIm9uIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAidHJhbnNpdC5zdGF0aW9uLnJhaWwiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJsYWJlbHMuaWNvbiIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ3ZWlnaHQiOiAiMC4wMSIKICAgICAgICAgICAgfSwKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgImh1ZSI6ICIjZmYwMDM1IgogICAgICAgICAgICB9LAogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAibGlnaHRuZXNzIjogIjAiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJ3YXRlciIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogIm9uIgogICAgICAgICAgICB9LAogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAiY29sb3IiOiAiIzgwZTRkOCIKICAgICAgICAgICAgfSwKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgImxpZ2h0bmVzcyI6ICIyNSIKICAgICAgICAgICAgfSwKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInNhdHVyYXRpb24iOiAiLTIzIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfQpd\" el_class=\"\" el_style=\"\" api_key=\"AIzaSyBda9LxQ-Wztqsk6aFI7SkcdiypnKTPfiI\"][/bt_gmaps][/bt_column][bt_column width=\"1/3\" align=\"left\" vertical_align=\"btMiddleVertical\" border=\"no_border\" cell_padding=\"btDoublePadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"#e5e5e5\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_service icon=\"s7_e638\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoMediumSize\" url=\"\" headline=\"Address\" dash=\"\" text=\"3216 W Highland Boulevard\r\nSan Diego, California\" el_class=\"\" el_style=\"\" superheadline=\"\"][/bt_service][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSemiSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_service icon=\"s7_e670\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoMediumSize\" url=\"\" headline=\"Phone\" dash=\"\" text=\"+555-40-220-6672\" el_class=\"\" el_style=\"\" superheadline=\"\"][/bt_service][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSemiSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_service icon=\"s7_e63a\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoMediumSize\" url=\"\" headline=\"Email\" dash=\"\" text=\"office@california.hotel\" el_class=\"\" el_style=\"\" superheadline=\"\"][/bt_service][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"yes\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"7/12\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"News <i>&</i> Blog\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Morbi pharetra faucibus purus, nec pretium enim luctus quis. Pellentesque aliquet venenatis ante, quis pretium neque tristique eget. Integer in luctus urna. Aenean rutrum sodales pharetra.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"5/12\"][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_latest_posts number=\"3\" category=\"\" format=\"horizontal\" post_type=\"blog\" show_excerpt=\"yes\" show_date=\"yes\" show_author=\"yes\" el_class=\"\" el_style=\"\"][/bt_latest_posts][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"1092\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"0.3\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Follow us\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Find out what’s hot and new, and get discounts for being a loyal customer and a Hotel California fan.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_icons][bt_icon icon=\"fa_f09a\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f099\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f0d5\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_column][/bt_row][/bt_section]','Street view','\n ','inherit','closed','closed','','837-revision-v1','','','2021-04-07 11:09:20','2021-04-07 11:09:20','',837,'http://mpycdev.theomggroup.com/?p=1093',0,'revision','',0);
INSERT INTO `smrc_posts` VALUES (1094,1,'2021-04-07 11:12:48','2021-04-07 11:12:48','[bt_section layout=\"wide\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\"][bt_slider height=\"medium\" auto_play=\"5000\" hide_arrows=\"\" hide_paging=\"\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item image=\"1048\" el_class=\"\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1025\" el_class=\"\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1026\" el_class=\"btLightSkin\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1035\" el_class=\"btLightSkin\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1050\" el_class=\"btLightSkin\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1049\" el_class=\"btLightSkin\" el_style=\"\"][/bt_slider_item][/bt_slider][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"dark\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#000080\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\"][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\r\n<h4 style=\"text-align: center;\"><em>founded 1953 in historic Monterey, California</em></h4>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSemiSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"2/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Our Club\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"A non-profit organization, MPYC is a yachting and social club comprised of adult and junior members with an interest in coming together to share in boating, sailing, yacht racing and social activities. Membership is not limited to boat owners.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/3\"][/bt_column][/bt_row][bt_row][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1068\" caption_text=\"View\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption=\"Double room\" show_titles=\"no\" caption_title=\"Room details\"][bt_header superheadline=\"CORINTHIAN SPIRIT\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Racing\" headline_size=\"medium\" dash=\"top\" subheadline=\"MPYC has built a reputation for top-notch competitive sailing. We host over 100 races per year and have hosted a variety of national championships.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1071\" caption_text=\"\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"PASSION\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Cruising\" headline_size=\"medium\" dash=\"top\" subheadline=\"Our members feature both power and sailboat owners. It\'s our great honor to live along California\'s Monterey Bay and enjoy the scenic vistas and marine wildlife.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1074\" caption_text=\"\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"DRIVE\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Rowing\" headline_size=\"medium\" dash=\"top\" subheadline=\"Our beginning, recreational and advanced rowers enjoy short and long distance local routes in addition to competition in local, West Coast and U.S. regattas. \" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1070\" caption_text=\"\" size=\"medium\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"COMMITMENT\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Youth Sailing\" headline_size=\"medium\" dash=\"top\" subheadline=\"Since its inception, Monterey Peninsula Yacht Club\'s has been proud to invest in the future of sailing and our youth to foster a better future for all us, and our club.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"66\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"0.7\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"special-offers\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"323\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"width: 60px; margin-top: -28px;\"][/bt_image][bt_hr top_spaced=\"topSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"1/2\"][/bt_column][bt_column width=\"1/2\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"GET THE BEST RATE\" headline=\"Offers <i>&</i> Deals\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"If you chose to stay with us you will enjoy modern home comforts in a traditional setting. Whether you are looking for a short weekend break or a longer holiday, we offer a range of packages that we think cater for all.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"1/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"0.7\" inner_background_color=\"#ffffff\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"67\" caption_text=\"Get together\" size=\"\" shape=\"square\" url=\"special-offers\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"Family vacation\" show_titles=\"no\"][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"Get together\" headline=\"Family vacation\" headline_size=\"medium\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"fa_f207\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f13d\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f1eb\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f206\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f1ae\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\r\n\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Integer mollis viverra diam ac ornare. Donec rhoncus nisi in felis congue, at pulvinar nibh dapibus.\r\n\r\n[/bt_text][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/3\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"special-offers\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"2/3\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"0.7\" inner_background_color=\"#ffffff\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"68\" caption_text=\"Celebrate\" size=\"\" shape=\"square\" url=\"special-offers\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"Newlyweds weekend\" show_titles=\"no\"][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"Celebrate\" headline=\"Newlyweds weekend\" headline_size=\"medium\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"fa_f1ba\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f072\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f228\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\r\n\r\nSed ut metus eu neque commodo fringilla imperdiet sed nibh. Sed volutpat fermentum ligula, et maximus ex ultricies sit amet.\r\n\r\n[/bt_text][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/3\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"special-offers\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"2/3\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"0.7\" inner_background_color=\"#ffffff\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"725\" caption_text=\"Procrastinate\" size=\"\" shape=\"square\" url=\"special-offers\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"Lazy weekend\" show_titles=\"no\"][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"Procrastinate\" headline=\"Lazy weekend\" headline_size=\"medium\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"fa_f1ba\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f072\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f1eb\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f000\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f185\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\r\n\r\nPhasellus non bibendum augue. Duis nibh felis, volutpat vitae pulvinar at, tincidunt eget mi. Donec venenatis condimentum fermentum.\r\n\r\n[/bt_text][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/3\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"special-offers\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"2/3\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#e5e5e5\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"322\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"width: 60px; margin-top: -28px;\"][/bt_image][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"7/12\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Activities\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Phasellus blandit a massa vitae congue. Nam ex massa, mattis ut sapien sit amet, consequat sodales risus. Sed interdum, ligula et lobortis faucibus, sem sem placerat augue, eget scelerisque turpis lorem et tellus.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][/bt_column][bt_column width=\"5/12\"][/bt_column][/bt_row][/bt_section][bt_section layout=\"wide\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"dark\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#e5e5e5\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"73\" caption_title=\"Beach voleyball\" caption_text=\"Enjoy the game\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"ENJOY THE GAME\" headline=\"Beach Voleyball\" headline_size=\"medium\" dash=\"top\" subheadline=\"Beach volleyball is ouy visitors favourite sport, highly enjoyable for everyone young or old. Just gather your team on the beach and find the opponents in a matter of minutes. And show what you can do, be a winner!\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_e9ac\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e040\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e041\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"74\" el_class=\"\" el_style=\"\"][bt_image image=\"74\" caption_title=\"Horseback riding\" caption_text=\"Enjoy the beach\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Enjoy the beach\" headline=\"Horseback riding\" headline_size=\"medium\" dash=\"top\" subheadline=\"How about a lazy afternoon with your friends on a hors, while the sun goes down? If you want to chill out, our horse riding team will teach you in a matter of minutes and help you wind down after a good day on the sun.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_ea13\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1e\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e05b\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"75\" el_class=\"\" el_style=\"\"][bt_image image=\"75\" caption_title=\"Waterskiing\" caption_text=\"Enjoy the sea\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Enjoy the sea\" headline=\"Waterskiing\" headline_size=\"medium\" dash=\"top\" subheadline=\"If you are a big fan of water sports, then why not try the waterskiing or waterboarding? At hotel California you will find there\'s an amateur champoionship every year. Rated as the most fun activity by our visitors.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_e05b\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9a3\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9e5\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"76\" el_class=\"\" el_style=\"\"][bt_image image=\"76\" caption_title=\"Paragliding\" caption_text=\"Enjoy the sky\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Enjoy the sky\" headline=\"Parasailing\" headline_size=\"medium\" dash=\"top\" subheadline=\"Enjoy the thrill on the sky with our parasailing team and feel the California sun on your face. The team will help you get your adrenaline high and will be capuring your moments on a high-definition camera.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_ea2f\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"s7_e67b\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9f3\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_slider height=\"auto\" auto_play=\"\" hide_arrows=\"\" hide_paging=\"btSliderHidePaging\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/6\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1088\" caption_text=\"\" size=\"\" shape=\"circle\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][/bt_image][bt_header superheadline=\"MPYC\" headline=\"Mission\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][bt_column_inner width=\"5/6\"][bt_text]\r\n<blockquote>To connect our members and our diverse community to the boundless recreational opportunities and proper stewardship of the Monterey Bay and the Pacific Ocean.</blockquote>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/6\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1088\" caption_text=\"\" size=\"\" shape=\"circle\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][/bt_image][bt_header superheadline=\"MPYC\" headline=\"Vision\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][bt_column_inner width=\"5/6\"][bt_text]\r\n<blockquote>To actively promote the Monterey Peninsula Yacht Club as a prominent West Coast destination of choice for Corinthian spirit yacht racing, recreational boating, rowing and cruising.</blockquote>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/6\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1088\" caption_text=\"\" size=\"\" shape=\"circle\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][/bt_image][bt_header superheadline=\"MPYC\" headline=\"Commitment\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][bt_column_inner width=\"5/6\"][bt_text]\r\n<blockquote>To supporting a diverse membership that fosters inclusiveness, camaraderie, friendship, community involvement and leadership with the goal of advancing safe and sustainable maritime ecological practices.</blockquote>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][/bt_slider][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/3\" align=\"left\" vertical_align=\"btMiddleVertical\" border=\"no_border\" cell_padding=\"btDoublePadding\" animation=\"animate animate-fadein\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"#e5e5e5\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"IN A NUTSHELL\" headline=\"Hotel California\" headline_size=\"large\" dash=\"bottom\" subheadline=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer mollis viverra diam ac ornare. Donec rhoncus nisi in felis congue, at pulvinar nibh dapibus.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_button text=\"READ MORE\" icon=\"no_icon\" url=\"\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"ExtraSmall\" width=\"Normal\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"2/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_slider height=\"auto\" auto_play=\"\" hide_arrows=\"\" hide_paging=\"btSliderHidePaging\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"81\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"82\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"83\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"84\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"85\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][/bt_slider][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\"][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"2/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_gmaps latitude=\"36.602383\" longitude=\"-121.879245 \" zoom=\"11\" icon=\"342\" height=\"400px\" primary_color=\"\" secondary_color=\"\" water_color=\"\" custom_style=\"WwogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJhZG1pbmlzdHJhdGl2ZSIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImxhYmVscy50ZXh0LmZpbGwiLAogICAgICAgICJzdHlsZXJzIjogWwogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAiY29sb3IiOiAiIzQ0NDQ0NCIKICAgICAgICAgICAgfQogICAgICAgIF0KICAgIH0sCiAgICB7CiAgICAgICAgImZlYXR1cmVUeXBlIjogImxhbmRzY2FwZSIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJjb2xvciI6ICIjZjJmMmYyIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAicG9pIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiYWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInZpc2liaWxpdHkiOiAib2ZmIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAicm9hZCIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJzYXR1cmF0aW9uIjogLTEwMAogICAgICAgICAgICB9LAogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAibGlnaHRuZXNzIjogNDUKICAgICAgICAgICAgfQogICAgICAgIF0KICAgIH0sCiAgICB7CiAgICAgICAgImZlYXR1cmVUeXBlIjogInJvYWQuaGlnaHdheSIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogInNpbXBsaWZpZWQiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJyb2FkLmhpZ2h3YXkiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJnZW9tZXRyeSIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogInNpbXBsaWZpZWQiCiAgICAgICAgICAgIH0sCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJjb2xvciI6ICIjZDc3Mjg3IgogICAgICAgICAgICB9LAogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAibGlnaHRuZXNzIjogIjAiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJyb2FkLmhpZ2h3YXkiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJsYWJlbHMudGV4dCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogIm9uIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAicm9hZC5oaWdod2F5IiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAibGFiZWxzLmljb24iLAogICAgICAgICJzdHlsZXJzIjogWwogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAidmlzaWJpbGl0eSI6ICJvbiIKICAgICAgICAgICAgfQogICAgICAgIF0KICAgIH0sCiAgICB7CiAgICAgICAgImZlYXR1cmVUeXBlIjogInJvYWQuYXJ0ZXJpYWwiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJhbGwiLAogICAgICAgICJzdHlsZXJzIjogWwogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAidmlzaWJpbGl0eSI6ICJvbiIKICAgICAgICAgICAgfQogICAgICAgIF0KICAgIH0sCiAgICB7CiAgICAgICAgImZlYXR1cmVUeXBlIjogInJvYWQuYXJ0ZXJpYWwiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJnZW9tZXRyeS5maWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgImNvbG9yIjogIiNkNzcyODciCiAgICAgICAgICAgIH0sCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJsaWdodG5lc3MiOiAiNzUiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJyb2FkLmFydGVyaWFsIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAibGFiZWxzLmljb24iLAogICAgICAgICJzdHlsZXJzIjogWwogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAidmlzaWJpbGl0eSI6ICJvZmYiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJyb2FkLmxvY2FsIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiZ2VvbWV0cnkuZmlsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJsaWdodG5lc3MiOiAiNzUiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJ0cmFuc2l0IiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiYWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInZpc2liaWxpdHkiOiAib2ZmIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAidHJhbnNpdC5saW5lIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiYWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInZpc2liaWxpdHkiOiAib24iCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJ0cmFuc2l0LnN0YXRpb24uYnVzIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiYWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInZpc2liaWxpdHkiOiAib24iCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJ0cmFuc2l0LnN0YXRpb24ucmFpbCIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogIm9uIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAidHJhbnNpdC5zdGF0aW9uLnJhaWwiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJsYWJlbHMuaWNvbiIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ3ZWlnaHQiOiAiMC4wMSIKICAgICAgICAgICAgfSwKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgImh1ZSI6ICIjZmYwMDM1IgogICAgICAgICAgICB9LAogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAibGlnaHRuZXNzIjogIjAiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJ3YXRlciIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogIm9uIgogICAgICAgICAgICB9LAogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAiY29sb3IiOiAiIzgwZTRkOCIKICAgICAgICAgICAgfSwKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgImxpZ2h0bmVzcyI6ICIyNSIKICAgICAgICAgICAgfSwKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInNhdHVyYXRpb24iOiAiLTIzIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfQpd\" el_class=\"\" el_style=\"\" api_key=\"AIzaSyBda9LxQ-Wztqsk6aFI7SkcdiypnKTPfiI\"][/bt_gmaps][/bt_column][bt_column width=\"1/3\" align=\"left\" vertical_align=\"btMiddleVertical\" border=\"no_border\" cell_padding=\"btDoublePadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"#e5e5e5\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_service icon=\"s7_e638\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoMediumSize\" url=\"\" headline=\"Address\" dash=\"\" text=\"3216 W Highland Boulevard\r\nSan Diego, California\" el_class=\"\" el_style=\"\" superheadline=\"\"][/bt_service][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSemiSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_service icon=\"s7_e670\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoMediumSize\" url=\"\" headline=\"Phone\" dash=\"\" text=\"+555-40-220-6672\" el_class=\"\" el_style=\"\" superheadline=\"\"][/bt_service][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSemiSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_service icon=\"s7_e63a\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoMediumSize\" url=\"\" headline=\"Email\" dash=\"\" text=\"office@california.hotel\" el_class=\"\" el_style=\"\" superheadline=\"\"][/bt_service][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"yes\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"7/12\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"News <i>&</i> Blog\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Morbi pharetra faucibus purus, nec pretium enim luctus quis. Pellentesque aliquet venenatis ante, quis pretium neque tristique eget. Integer in luctus urna. Aenean rutrum sodales pharetra.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"5/12\"][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_latest_posts number=\"3\" category=\"\" format=\"horizontal\" post_type=\"blog\" show_excerpt=\"yes\" show_date=\"yes\" show_author=\"yes\" el_class=\"\" el_style=\"\"][/bt_latest_posts][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"1092\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"0.3\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Follow us\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Find out what\'s new at MPYC\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_icons][bt_icon icon=\"fa_f09a\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f099\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f16d\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_column][/bt_row][/bt_section]','Street view','\n ','inherit','closed','closed','','837-revision-v1','','','2021-04-07 11:12:48','2021-04-07 11:12:48','',837,'http://mpycdev.theomggroup.com/?p=1094',0,'revision','',0);
INSERT INTO `smrc_posts` VALUES (1095,1,'2021-04-07 11:26:59','2021-04-07 11:26:59','','uss-asa-logos','','inherit','open','closed','','uss-asa-logos','','','2021-04-07 11:26:59','2021-04-07 11:26:59','',0,'http://mpycdev.theomggroup.com/wp-content/uploads/2021/04/uss-asa-logos.png',0,'attachment','image/png',0);
INSERT INTO `smrc_posts` VALUES (1097,1,'2021-04-07 11:33:48','2021-04-07 11:33:48','[bt_section layout=\"wide\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\"][bt_slider height=\"medium\" auto_play=\"5000\" hide_arrows=\"\" hide_paging=\"\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item image=\"1048\" el_class=\"\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1025\" el_class=\"\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1026\" el_class=\"btLightSkin\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1035\" el_class=\"btLightSkin\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1050\" el_class=\"btLightSkin\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1049\" el_class=\"btLightSkin\" el_style=\"\"][/bt_slider_item][/bt_slider][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"dark\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#000080\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\"][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\r\n<h4 style=\"text-align: center;\"><em>founded 1953 in historic Monterey, California</em></h4>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSemiSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"2/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Our Club\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"A non-profit organization, MPYC is a yachting and social club comprised of adult and junior members with an interest in coming together to share in boating, sailing, yacht racing and social activities. Membership is not limited to boat owners.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/3\"][/bt_column][/bt_row][bt_row][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1068\" caption_text=\"View\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption=\"Double room\" show_titles=\"no\" caption_title=\"Room details\"][bt_header superheadline=\"CORINTHIAN SPIRIT\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Racing\" headline_size=\"medium\" dash=\"top\" subheadline=\"MPYC has built a reputation for top-notch competitive sailing. We host over 100 races per year and have hosted a variety of national championships.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1071\" caption_text=\"\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"PASSION\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Cruising\" headline_size=\"medium\" dash=\"top\" subheadline=\"Our members feature both power and sailboat owners. It\'s our great honor to live along California\'s Monterey Bay and enjoy the scenic vistas and marine wildlife.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1074\" caption_text=\"\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"DRIVE\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Rowing\" headline_size=\"medium\" dash=\"top\" subheadline=\"Our beginning, recreational and advanced rowers enjoy short and long distance local routes in addition to competition in local, West Coast and U.S. regattas. \" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1070\" caption_text=\"\" size=\"medium\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"COMMITMENT\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Youth Sailing\" headline_size=\"medium\" dash=\"top\" subheadline=\"Since its inception, Monterey Peninsula Yacht Club\'s has been proud to invest in the future of sailing and our youth to foster a better future for all us, and our club.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"66\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"0.7\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"special-offers\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"323\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"width: 60px; margin-top: -28px;\"][/bt_image][bt_hr top_spaced=\"topSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"1/2\"][/bt_column][bt_column width=\"1/2\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"GET THE BEST RATE\" headline=\"Offers <i>&</i> Deals\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"If you chose to stay with us you will enjoy modern home comforts in a traditional setting. Whether you are looking for a short weekend break or a longer holiday, we offer a range of packages that we think cater for all.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"1/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"0.7\" inner_background_color=\"#ffffff\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"67\" caption_text=\"Get together\" size=\"\" shape=\"square\" url=\"special-offers\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"Family vacation\" show_titles=\"no\"][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"Get together\" headline=\"Family vacation\" headline_size=\"medium\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"fa_f207\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f13d\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f1eb\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f206\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f1ae\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\r\n\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Integer mollis viverra diam ac ornare. Donec rhoncus nisi in felis congue, at pulvinar nibh dapibus.\r\n\r\n[/bt_text][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/3\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"special-offers\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"2/3\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"0.7\" inner_background_color=\"#ffffff\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"68\" caption_text=\"Celebrate\" size=\"\" shape=\"square\" url=\"special-offers\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"Newlyweds weekend\" show_titles=\"no\"][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"Celebrate\" headline=\"Newlyweds weekend\" headline_size=\"medium\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"fa_f1ba\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f072\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f228\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\r\n\r\nSed ut metus eu neque commodo fringilla imperdiet sed nibh. Sed volutpat fermentum ligula, et maximus ex ultricies sit amet.\r\n\r\n[/bt_text][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/3\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"special-offers\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"2/3\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"0.7\" inner_background_color=\"#ffffff\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"725\" caption_text=\"Procrastinate\" size=\"\" shape=\"square\" url=\"special-offers\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"Lazy weekend\" show_titles=\"no\"][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"Procrastinate\" headline=\"Lazy weekend\" headline_size=\"medium\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"fa_f1ba\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f072\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f1eb\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f000\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f185\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\r\n\r\nPhasellus non bibendum augue. Duis nibh felis, volutpat vitae pulvinar at, tincidunt eget mi. Donec venenatis condimentum fermentum.\r\n\r\n[/bt_text][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/3\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"special-offers\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"2/3\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#e5e5e5\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"323\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"width: 60px; margin-top: -28px;\"][/bt_image][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"5/12\"][/bt_column][bt_column width=\"7/12\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Activities\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Phasellus blandit a massa vitae congue. Nam ex massa, mattis ut sapien sit amet, consequat sodales risus. Sed interdum, ligula et lobortis faucibus, sem sem placerat augue, eget scelerisque turpis lorem et tellus.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][/bt_column][/bt_row][/bt_section][bt_section layout=\"wide\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"dark\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#e5e5e5\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"73\" caption_title=\"Beach voleyball\" caption_text=\"Enjoy the game\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"ENJOY THE GAME\" headline=\"Beach Voleyball\" headline_size=\"medium\" dash=\"top\" subheadline=\"Beach volleyball is ouy visitors favourite sport, highly enjoyable for everyone young or old. Just gather your team on the beach and find the opponents in a matter of minutes. And show what you can do, be a winner!\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_e9ac\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e040\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e041\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"74\" el_class=\"\" el_style=\"\"][bt_image image=\"74\" caption_title=\"Horseback riding\" caption_text=\"Enjoy the beach\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Enjoy the beach\" headline=\"Horseback riding\" headline_size=\"medium\" dash=\"top\" subheadline=\"How about a lazy afternoon with your friends on a hors, while the sun goes down? If you want to chill out, our horse riding team will teach you in a matter of minutes and help you wind down after a good day on the sun.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_ea13\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1e\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e05b\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"75\" el_class=\"\" el_style=\"\"][bt_image image=\"75\" caption_title=\"Waterskiing\" caption_text=\"Enjoy the sea\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Enjoy the sea\" headline=\"Waterskiing\" headline_size=\"medium\" dash=\"top\" subheadline=\"If you are a big fan of water sports, then why not try the waterskiing or waterboarding? At hotel California you will find there\'s an amateur champoionship every year. Rated as the most fun activity by our visitors.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_e05b\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9a3\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9e5\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"76\" el_class=\"\" el_style=\"\"][bt_image image=\"76\" caption_title=\"Paragliding\" caption_text=\"Enjoy the sky\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Enjoy the sky\" headline=\"Parasailing\" headline_size=\"medium\" dash=\"top\" subheadline=\"Enjoy the thrill on the sky with our parasailing team and feel the California sun on your face. The team will help you get your adrenaline high and will be capuring your moments on a high-definition camera.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_ea2f\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"s7_e67b\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9f3\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_slider height=\"auto\" auto_play=\"\" hide_arrows=\"\" hide_paging=\"btSliderHidePaging\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/6\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1088\" caption_text=\"\" size=\"\" shape=\"circle\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][/bt_image][bt_header superheadline=\"MPYC\" headline=\"Mission\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][bt_column_inner width=\"5/6\"][bt_text]\r\n<blockquote>To connect our members and our diverse community to the boundless recreational opportunities and proper stewardship of the Monterey Bay and the Pacific Ocean.</blockquote>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/6\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1088\" caption_text=\"\" size=\"\" shape=\"circle\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][/bt_image][bt_header superheadline=\"MPYC\" headline=\"Vision\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][bt_column_inner width=\"5/6\"][bt_text]\r\n<blockquote>To actively promote the Monterey Peninsula Yacht Club as a prominent West Coast destination of choice for Corinthian spirit yacht racing, recreational boating, rowing and cruising.</blockquote>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/6\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1088\" caption_text=\"\" size=\"\" shape=\"circle\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][/bt_image][bt_header superheadline=\"MPYC\" headline=\"Commitment\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][bt_column_inner width=\"5/6\"][bt_text]\r\n<blockquote>To supporting a diverse membership that fosters inclusiveness, camaraderie, friendship, community involvement and leadership with the goal of advancing safe and sustainable maritime ecological practices.</blockquote>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][/bt_slider][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/3\" align=\"left\" vertical_align=\"btMiddleVertical\" border=\"no_border\" cell_padding=\"btDoublePadding\" animation=\"animate animate-fadein\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"#e5e5e5\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"IN A NUTSHELL\" headline=\"Hotel California\" headline_size=\"large\" dash=\"bottom\" subheadline=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer mollis viverra diam ac ornare. Donec rhoncus nisi in felis congue, at pulvinar nibh dapibus.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_button text=\"READ MORE\" icon=\"no_icon\" url=\"\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"ExtraSmall\" width=\"Normal\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"2/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_slider height=\"auto\" auto_play=\"\" hide_arrows=\"\" hide_paging=\"btSliderHidePaging\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"81\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"82\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"83\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"84\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"85\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][/bt_slider][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\"][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"2/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_gmaps latitude=\"36.602383\" longitude=\"-121.879245 \" zoom=\"11\" icon=\"342\" height=\"400px\" primary_color=\"\" secondary_color=\"\" water_color=\"\" custom_style=\"WwogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJhZG1pbmlzdHJhdGl2ZSIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImxhYmVscy50ZXh0LmZpbGwiLAogICAgICAgICJzdHlsZXJzIjogWwogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAiY29sb3IiOiAiIzQ0NDQ0NCIKICAgICAgICAgICAgfQogICAgICAgIF0KICAgIH0sCiAgICB7CiAgICAgICAgImZlYXR1cmVUeXBlIjogImxhbmRzY2FwZSIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJjb2xvciI6ICIjZjJmMmYyIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAicG9pIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiYWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInZpc2liaWxpdHkiOiAib2ZmIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAicm9hZCIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJzYXR1cmF0aW9uIjogLTEwMAogICAgICAgICAgICB9LAogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAibGlnaHRuZXNzIjogNDUKICAgICAgICAgICAgfQogICAgICAgIF0KICAgIH0sCiAgICB7CiAgICAgICAgImZlYXR1cmVUeXBlIjogInJvYWQuaGlnaHdheSIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogInNpbXBsaWZpZWQiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJyb2FkLmhpZ2h3YXkiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJnZW9tZXRyeSIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogInNpbXBsaWZpZWQiCiAgICAgICAgICAgIH0sCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJjb2xvciI6ICIjZDc3Mjg3IgogICAgICAgICAgICB9LAogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAibGlnaHRuZXNzIjogIjAiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJyb2FkLmhpZ2h3YXkiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJsYWJlbHMudGV4dCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogIm9uIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAicm9hZC5oaWdod2F5IiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAibGFiZWxzLmljb24iLAogICAgICAgICJzdHlsZXJzIjogWwogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAidmlzaWJpbGl0eSI6ICJvbiIKICAgICAgICAgICAgfQogICAgICAgIF0KICAgIH0sCiAgICB7CiAgICAgICAgImZlYXR1cmVUeXBlIjogInJvYWQuYXJ0ZXJpYWwiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJhbGwiLAogICAgICAgICJzdHlsZXJzIjogWwogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAidmlzaWJpbGl0eSI6ICJvbiIKICAgICAgICAgICAgfQogICAgICAgIF0KICAgIH0sCiAgICB7CiAgICAgICAgImZlYXR1cmVUeXBlIjogInJvYWQuYXJ0ZXJpYWwiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJnZW9tZXRyeS5maWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgImNvbG9yIjogIiNkNzcyODciCiAgICAgICAgICAgIH0sCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJsaWdodG5lc3MiOiAiNzUiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJyb2FkLmFydGVyaWFsIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAibGFiZWxzLmljb24iLAogICAgICAgICJzdHlsZXJzIjogWwogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAidmlzaWJpbGl0eSI6ICJvZmYiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJyb2FkLmxvY2FsIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiZ2VvbWV0cnkuZmlsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJsaWdodG5lc3MiOiAiNzUiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJ0cmFuc2l0IiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiYWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInZpc2liaWxpdHkiOiAib2ZmIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAidHJhbnNpdC5saW5lIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiYWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInZpc2liaWxpdHkiOiAib24iCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJ0cmFuc2l0LnN0YXRpb24uYnVzIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiYWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInZpc2liaWxpdHkiOiAib24iCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJ0cmFuc2l0LnN0YXRpb24ucmFpbCIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogIm9uIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAidHJhbnNpdC5zdGF0aW9uLnJhaWwiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJsYWJlbHMuaWNvbiIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ3ZWlnaHQiOiAiMC4wMSIKICAgICAgICAgICAgfSwKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgImh1ZSI6ICIjZmYwMDM1IgogICAgICAgICAgICB9LAogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAibGlnaHRuZXNzIjogIjAiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJ3YXRlciIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogIm9uIgogICAgICAgICAgICB9LAogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAiY29sb3IiOiAiIzgwZTRkOCIKICAgICAgICAgICAgfSwKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgImxpZ2h0bmVzcyI6ICIyNSIKICAgICAgICAgICAgfSwKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInNhdHVyYXRpb24iOiAiLTIzIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfQpd\" el_class=\"\" el_style=\"\" api_key=\"AIzaSyBda9LxQ-Wztqsk6aFI7SkcdiypnKTPfiI\"][/bt_gmaps][/bt_column][bt_column width=\"1/3\" align=\"left\" vertical_align=\"btMiddleVertical\" border=\"no_border\" cell_padding=\"btDoublePadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"#e5e5e5\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_service icon=\"s7_e638\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoMediumSize\" url=\"\" headline=\"Address\" dash=\"\" text=\"3216 W Highland Boulevard\r\nSan Diego, California\" el_class=\"\" el_style=\"\" superheadline=\"\"][/bt_service][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSemiSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_service icon=\"s7_e670\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoMediumSize\" url=\"\" headline=\"Phone\" dash=\"\" text=\"+555-40-220-6672\" el_class=\"\" el_style=\"\" superheadline=\"\"][/bt_service][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSemiSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_service icon=\"s7_e63a\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoMediumSize\" url=\"\" headline=\"Email\" dash=\"\" text=\"office@california.hotel\" el_class=\"\" el_style=\"\" superheadline=\"\"][/bt_service][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"yes\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"7/12\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"News <i>&</i> Blog\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Morbi pharetra faucibus purus, nec pretium enim luctus quis. Pellentesque aliquet venenatis ante, quis pretium neque tristique eget. Integer in luctus urna. Aenean rutrum sodales pharetra.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"5/12\"][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_latest_posts number=\"3\" category=\"\" format=\"horizontal\" post_type=\"blog\" show_excerpt=\"yes\" show_date=\"yes\" show_author=\"yes\" el_class=\"\" el_style=\"\"][/bt_latest_posts][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"1092\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"0.3\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Follow us\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Find out what\'s new at MPYC\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_icons][bt_icon icon=\"fa_f09a\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f099\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f16d\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_column][/bt_row][/bt_section]','Street view','\n ','inherit','closed','closed','','837-revision-v1','','','2021-04-07 11:33:48','2021-04-07 11:33:48','',837,'http://mpycdev.theomggroup.com/?p=1097',0,'revision','',0);
INSERT INTO `smrc_posts` VALUES (1098,1,'2021-04-07 11:34:17','2021-04-07 11:34:17','[bt_section layout=\"wide\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\"][bt_slider height=\"medium\" auto_play=\"5000\" hide_arrows=\"\" hide_paging=\"\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item image=\"1048\" el_class=\"\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1025\" el_class=\"\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1026\" el_class=\"btLightSkin\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1035\" el_class=\"btLightSkin\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1050\" el_class=\"btLightSkin\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1049\" el_class=\"btLightSkin\" el_style=\"\"][/bt_slider_item][/bt_slider][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"dark\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#000080\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\"][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\r\n<h4 style=\"text-align: center;\"><em>founded 1953 in historic Monterey, California</em></h4>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSemiSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"2/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Our Club\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"A non-profit organization, MPYC is a yachting and social club comprised of adult and junior members with an interest in coming together to share in boating, sailing, yacht racing and social activities. Membership is not limited to boat owners.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/3\"][/bt_column][/bt_row][bt_row][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1068\" caption_text=\"View\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption=\"Double room\" show_titles=\"no\" caption_title=\"Room details\"][bt_header superheadline=\"CORINTHIAN SPIRIT\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Racing\" headline_size=\"medium\" dash=\"top\" subheadline=\"MPYC has built a reputation for top-notch competitive sailing. We host over 100 races per year and have hosted a variety of national championships.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1071\" caption_text=\"\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"PASSION\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Cruising\" headline_size=\"medium\" dash=\"top\" subheadline=\"Our members feature both power and sailboat owners. It\'s our great honor to live along California\'s Monterey Bay and enjoy the scenic vistas and marine wildlife.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1074\" caption_text=\"\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"DRIVE\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Rowing\" headline_size=\"medium\" dash=\"top\" subheadline=\"Our beginning, recreational and advanced rowers enjoy short and long distance local routes in addition to competition in local, West Coast and U.S. regattas. \" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1070\" caption_text=\"\" size=\"medium\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"COMMITMENT\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Youth Sailing\" headline_size=\"medium\" dash=\"top\" subheadline=\"Since its inception, Monterey Peninsula Yacht Club\'s has been proud to invest in the future of sailing and our youth to foster a better future for all us, and our club.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"66\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"0.7\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"special-offers\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"323\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"width: 60px; margin-top: -28px;\"][/bt_image][bt_hr top_spaced=\"topSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"1/2\"][/bt_column][bt_column width=\"1/2\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"GET THE BEST RATE\" headline=\"Offers <i>&</i> Deals\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"If you chose to stay with us you will enjoy modern home comforts in a traditional setting. Whether you are looking for a short weekend break or a longer holiday, we offer a range of packages that we think cater for all.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"1/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"0.7\" inner_background_color=\"#ffffff\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"67\" caption_text=\"Get together\" size=\"\" shape=\"square\" url=\"special-offers\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"Family vacation\" show_titles=\"no\"][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"Get together\" headline=\"Family vacation\" headline_size=\"medium\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"fa_f207\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f13d\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f1eb\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f206\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f1ae\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\r\n\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Integer mollis viverra diam ac ornare. Donec rhoncus nisi in felis congue, at pulvinar nibh dapibus.\r\n\r\n[/bt_text][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/3\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"special-offers\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"2/3\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"0.7\" inner_background_color=\"#ffffff\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"68\" caption_text=\"Celebrate\" size=\"\" shape=\"square\" url=\"special-offers\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"Newlyweds weekend\" show_titles=\"no\"][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"Celebrate\" headline=\"Newlyweds weekend\" headline_size=\"medium\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"fa_f1ba\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f072\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f228\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\r\n\r\nSed ut metus eu neque commodo fringilla imperdiet sed nibh. Sed volutpat fermentum ligula, et maximus ex ultricies sit amet.\r\n\r\n[/bt_text][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/3\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"special-offers\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"2/3\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"0.7\" inner_background_color=\"#ffffff\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"725\" caption_text=\"Procrastinate\" size=\"\" shape=\"square\" url=\"special-offers\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"Lazy weekend\" show_titles=\"no\"][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"Procrastinate\" headline=\"Lazy weekend\" headline_size=\"medium\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"fa_f1ba\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f072\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f1eb\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f000\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f185\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoSmallSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\r\n\r\nPhasellus non bibendum augue. Duis nibh felis, volutpat vitae pulvinar at, tincidunt eget mi. Donec venenatis condimentum fermentum.\r\n\r\n[/bt_text][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/3\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"special-offers\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"2/3\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#e5e5e5\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"323\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"width: 60px; margin-top: -28px;\"][/bt_image][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"5/12\"][/bt_column][bt_column width=\"7/12\" align=\"right\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Activities\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Phasellus blandit a massa vitae congue. Nam ex massa, mattis ut sapien sit amet, consequat sodales risus. Sed interdum, ligula et lobortis faucibus, sem sem placerat augue, eget scelerisque turpis lorem et tellus.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][/bt_column][/bt_row][/bt_section][bt_section layout=\"wide\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"dark\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#e5e5e5\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"73\" caption_title=\"Beach voleyball\" caption_text=\"Enjoy the game\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"ENJOY THE GAME\" headline=\"Beach Voleyball\" headline_size=\"medium\" dash=\"top\" subheadline=\"Beach volleyball is ouy visitors favourite sport, highly enjoyable for everyone young or old. Just gather your team on the beach and find the opponents in a matter of minutes. And show what you can do, be a winner!\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_e9ac\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e040\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e041\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"74\" el_class=\"\" el_style=\"\"][bt_image image=\"74\" caption_title=\"Horseback riding\" caption_text=\"Enjoy the beach\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Enjoy the beach\" headline=\"Horseback riding\" headline_size=\"medium\" dash=\"top\" subheadline=\"How about a lazy afternoon with your friends on a hors, while the sun goes down? If you want to chill out, our horse riding team will teach you in a matter of minutes and help you wind down after a good day on the sun.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_ea13\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1e\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e05b\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"75\" el_class=\"\" el_style=\"\"][bt_image image=\"75\" caption_title=\"Waterskiing\" caption_text=\"Enjoy the sea\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Enjoy the sea\" headline=\"Waterskiing\" headline_size=\"medium\" dash=\"top\" subheadline=\"If you are a big fan of water sports, then why not try the waterskiing or waterboarding? At hotel California you will find there\'s an amateur champoionship every year. Rated as the most fun activity by our visitors.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_e05b\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9a3\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9e5\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"76\" el_class=\"\" el_style=\"\"][bt_image image=\"76\" caption_title=\"Paragliding\" caption_text=\"Enjoy the sky\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Enjoy the sky\" headline=\"Parasailing\" headline_size=\"medium\" dash=\"top\" subheadline=\"Enjoy the thrill on the sky with our parasailing team and feel the California sun on your face. The team will help you get your adrenaline high and will be capuring your moments on a high-definition camera.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_ea2f\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"s7_e67b\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9f3\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_slider height=\"auto\" auto_play=\"\" hide_arrows=\"\" hide_paging=\"btSliderHidePaging\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/6\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1088\" caption_text=\"\" size=\"\" shape=\"circle\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][/bt_image][bt_header superheadline=\"MPYC\" headline=\"Mission\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][bt_column_inner width=\"5/6\"][bt_text]\r\n<blockquote>To connect our members and our diverse community to the boundless recreational opportunities and proper stewardship of the Monterey Bay and the Pacific Ocean.</blockquote>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/6\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1088\" caption_text=\"\" size=\"\" shape=\"circle\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][/bt_image][bt_header superheadline=\"MPYC\" headline=\"Vision\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][bt_column_inner width=\"5/6\"][bt_text]\r\n<blockquote>To actively promote the Monterey Peninsula Yacht Club as a prominent West Coast destination of choice for Corinthian spirit yacht racing, recreational boating, rowing and cruising.</blockquote>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/6\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1088\" caption_text=\"\" size=\"\" shape=\"circle\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][/bt_image][bt_header superheadline=\"MPYC\" headline=\"Commitment\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][bt_column_inner width=\"5/6\"][bt_text]\r\n<blockquote>To supporting a diverse membership that fosters inclusiveness, camaraderie, friendship, community involvement and leadership with the goal of advancing safe and sustainable maritime ecological practices.</blockquote>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][/bt_slider][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/3\" align=\"left\" vertical_align=\"btMiddleVertical\" border=\"no_border\" cell_padding=\"btDoublePadding\" animation=\"animate animate-fadein\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"#e5e5e5\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"IN A NUTSHELL\" headline=\"Hotel California\" headline_size=\"large\" dash=\"bottom\" subheadline=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer mollis viverra diam ac ornare. Donec rhoncus nisi in felis congue, at pulvinar nibh dapibus.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_button text=\"READ MORE\" icon=\"no_icon\" url=\"\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"ExtraSmall\" width=\"Normal\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"2/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_slider height=\"auto\" auto_play=\"\" hide_arrows=\"\" hide_paging=\"btSliderHidePaging\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"81\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"82\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"83\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"84\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"85\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][/bt_slider][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\"][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"2/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_gmaps latitude=\"36.602383\" longitude=\"-121.879245 \" zoom=\"11\" icon=\"342\" height=\"400px\" primary_color=\"\" secondary_color=\"\" water_color=\"\" custom_style=\"WwogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJhZG1pbmlzdHJhdGl2ZSIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImxhYmVscy50ZXh0LmZpbGwiLAogICAgICAgICJzdHlsZXJzIjogWwogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAiY29sb3IiOiAiIzQ0NDQ0NCIKICAgICAgICAgICAgfQogICAgICAgIF0KICAgIH0sCiAgICB7CiAgICAgICAgImZlYXR1cmVUeXBlIjogImxhbmRzY2FwZSIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJjb2xvciI6ICIjZjJmMmYyIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAicG9pIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiYWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInZpc2liaWxpdHkiOiAib2ZmIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAicm9hZCIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJzYXR1cmF0aW9uIjogLTEwMAogICAgICAgICAgICB9LAogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAibGlnaHRuZXNzIjogNDUKICAgICAgICAgICAgfQogICAgICAgIF0KICAgIH0sCiAgICB7CiAgICAgICAgImZlYXR1cmVUeXBlIjogInJvYWQuaGlnaHdheSIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogInNpbXBsaWZpZWQiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJyb2FkLmhpZ2h3YXkiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJnZW9tZXRyeSIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogInNpbXBsaWZpZWQiCiAgICAgICAgICAgIH0sCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJjb2xvciI6ICIjZDc3Mjg3IgogICAgICAgICAgICB9LAogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAibGlnaHRuZXNzIjogIjAiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJyb2FkLmhpZ2h3YXkiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJsYWJlbHMudGV4dCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogIm9uIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAicm9hZC5oaWdod2F5IiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAibGFiZWxzLmljb24iLAogICAgICAgICJzdHlsZXJzIjogWwogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAidmlzaWJpbGl0eSI6ICJvbiIKICAgICAgICAgICAgfQogICAgICAgIF0KICAgIH0sCiAgICB7CiAgICAgICAgImZlYXR1cmVUeXBlIjogInJvYWQuYXJ0ZXJpYWwiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJhbGwiLAogICAgICAgICJzdHlsZXJzIjogWwogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAidmlzaWJpbGl0eSI6ICJvbiIKICAgICAgICAgICAgfQogICAgICAgIF0KICAgIH0sCiAgICB7CiAgICAgICAgImZlYXR1cmVUeXBlIjogInJvYWQuYXJ0ZXJpYWwiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJnZW9tZXRyeS5maWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgImNvbG9yIjogIiNkNzcyODciCiAgICAgICAgICAgIH0sCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJsaWdodG5lc3MiOiAiNzUiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJyb2FkLmFydGVyaWFsIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAibGFiZWxzLmljb24iLAogICAgICAgICJzdHlsZXJzIjogWwogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAidmlzaWJpbGl0eSI6ICJvZmYiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJyb2FkLmxvY2FsIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiZ2VvbWV0cnkuZmlsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJsaWdodG5lc3MiOiAiNzUiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJ0cmFuc2l0IiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiYWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInZpc2liaWxpdHkiOiAib2ZmIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAidHJhbnNpdC5saW5lIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiYWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInZpc2liaWxpdHkiOiAib24iCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJ0cmFuc2l0LnN0YXRpb24uYnVzIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiYWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInZpc2liaWxpdHkiOiAib24iCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJ0cmFuc2l0LnN0YXRpb24ucmFpbCIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogIm9uIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAidHJhbnNpdC5zdGF0aW9uLnJhaWwiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJsYWJlbHMuaWNvbiIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ3ZWlnaHQiOiAiMC4wMSIKICAgICAgICAgICAgfSwKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgImh1ZSI6ICIjZmYwMDM1IgogICAgICAgICAgICB9LAogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAibGlnaHRuZXNzIjogIjAiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJ3YXRlciIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogIm9uIgogICAgICAgICAgICB9LAogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAiY29sb3IiOiAiIzgwZTRkOCIKICAgICAgICAgICAgfSwKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgImxpZ2h0bmVzcyI6ICIyNSIKICAgICAgICAgICAgfSwKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInNhdHVyYXRpb24iOiAiLTIzIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfQpd\" el_class=\"\" el_style=\"\" api_key=\"AIzaSyBda9LxQ-Wztqsk6aFI7SkcdiypnKTPfiI\"][/bt_gmaps][/bt_column][bt_column width=\"1/3\" align=\"left\" vertical_align=\"btMiddleVertical\" border=\"no_border\" cell_padding=\"btDoublePadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"#e5e5e5\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_service icon=\"s7_e638\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoMediumSize\" url=\"\" headline=\"Address\" dash=\"\" text=\"3216 W Highland Boulevard\r\nSan Diego, California\" el_class=\"\" el_style=\"\" superheadline=\"\"][/bt_service][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSemiSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_service icon=\"s7_e670\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoMediumSize\" url=\"\" headline=\"Phone\" dash=\"\" text=\"+555-40-220-6672\" el_class=\"\" el_style=\"\" superheadline=\"\"][/bt_service][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSemiSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_service icon=\"s7_e63a\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoMediumSize\" url=\"\" headline=\"Email\" dash=\"\" text=\"office@california.hotel\" el_class=\"\" el_style=\"\" superheadline=\"\"][/bt_service][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"yes\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"7/12\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"News <i>&</i> Blog\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Morbi pharetra faucibus purus, nec pretium enim luctus quis. Pellentesque aliquet venenatis ante, quis pretium neque tristique eget. Integer in luctus urna. Aenean rutrum sodales pharetra.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"5/12\"][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_latest_posts number=\"3\" category=\"\" format=\"horizontal\" post_type=\"blog\" show_excerpt=\"yes\" show_date=\"yes\" show_author=\"yes\" el_class=\"\" el_style=\"\"][/bt_latest_posts][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"1092\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"0.3\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Follow us\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Find out what\'s new at MPYC\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_icons][bt_icon icon=\"fa_f09a\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f099\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f16d\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_column][/bt_row][/bt_section]','Street view','\n ','inherit','closed','closed','','837-revision-v1','','','2021-04-07 11:34:17','2021-04-07 11:34:17','',837,'http://mpycdev.theomggroup.com/?p=1098',0,'revision','',0);
INSERT INTO `smrc_posts` VALUES (1099,1,'2021-04-07 11:37:16','2021-04-07 11:37:16','[bt_section layout=\"wide\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\"][bt_slider height=\"medium\" auto_play=\"5000\" hide_arrows=\"\" hide_paging=\"\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item image=\"1048\" el_class=\"\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1025\" el_class=\"\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1026\" el_class=\"btLightSkin\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1035\" el_class=\"btLightSkin\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1050\" el_class=\"btLightSkin\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1049\" el_class=\"btLightSkin\" el_style=\"\"][/bt_slider_item][/bt_slider][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"dark\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#000080\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\"][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\r\n<h4 style=\"text-align: center;\"><em>founded 1953 in historic Monterey, California</em></h4>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSemiSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"2/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Our Club\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"A non-profit organization, MPYC is a yachting and social club comprised of adult and junior members with an interest in coming together to share in boating, sailing, yacht racing and social activities. Membership is not limited to boat owners.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/3\"][/bt_column][/bt_row][bt_row][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1068\" caption_text=\"View\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption=\"Double room\" show_titles=\"no\" caption_title=\"Room details\"][bt_header superheadline=\"CORINTHIAN SPIRIT\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Racing\" headline_size=\"medium\" dash=\"top\" subheadline=\"MPYC has built a reputation for top-notch competitive sailing. We host over 100 races per year and have hosted a variety of national championships.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1071\" caption_text=\"\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"PASSION\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Cruising\" headline_size=\"medium\" dash=\"top\" subheadline=\"Our members feature both power and sailboat owners. It\'s our great honor to live along California\'s Monterey Bay and enjoy the scenic vistas and marine wildlife.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1074\" caption_text=\"\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"DRIVE\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Rowing\" headline_size=\"medium\" dash=\"top\" subheadline=\"Our beginning, recreational and advanced rowers enjoy short and long distance local routes in addition to competition in local, West Coast and U.S. regattas. \" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1070\" caption_text=\"\" size=\"medium\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"COMMITMENT\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Youth Sailing\" headline_size=\"medium\" dash=\"top\" subheadline=\"Since its inception, Monterey Peninsula Yacht Club\'s has been proud to invest in the future of sailing and our youth to foster a better future for all us, and our club.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#e5e5e5\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"323\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"width: 60px; margin-top: -28px;\"][/bt_image][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"5/12\"][/bt_column][bt_column width=\"7/12\" align=\"right\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Activities\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Phasellus blandit a massa vitae congue. Nam ex massa, mattis ut sapien sit amet, consequat sodales risus. Sed interdum, ligula et lobortis faucibus, sem sem placerat augue, eget scelerisque turpis lorem et tellus.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][/bt_column][/bt_row][/bt_section][bt_section layout=\"wide\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"dark\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#e5e5e5\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"73\" caption_title=\"Beach voleyball\" caption_text=\"Enjoy the game\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"ENJOY THE GAME\" headline=\"Beach Voleyball\" headline_size=\"medium\" dash=\"top\" subheadline=\"Beach volleyball is ouy visitors favourite sport, highly enjoyable for everyone young or old. Just gather your team on the beach and find the opponents in a matter of minutes. And show what you can do, be a winner!\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_e9ac\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e040\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e041\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"74\" el_class=\"\" el_style=\"\"][bt_image image=\"74\" caption_title=\"Horseback riding\" caption_text=\"Enjoy the beach\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Enjoy the beach\" headline=\"Horseback riding\" headline_size=\"medium\" dash=\"top\" subheadline=\"How about a lazy afternoon with your friends on a hors, while the sun goes down? If you want to chill out, our horse riding team will teach you in a matter of minutes and help you wind down after a good day on the sun.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_ea13\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1e\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e05b\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"75\" el_class=\"\" el_style=\"\"][bt_image image=\"75\" caption_title=\"Waterskiing\" caption_text=\"Enjoy the sea\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Enjoy the sea\" headline=\"Waterskiing\" headline_size=\"medium\" dash=\"top\" subheadline=\"If you are a big fan of water sports, then why not try the waterskiing or waterboarding? At hotel California you will find there\'s an amateur champoionship every year. Rated as the most fun activity by our visitors.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_e05b\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9a3\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9e5\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"76\" el_class=\"\" el_style=\"\"][bt_image image=\"76\" caption_title=\"Paragliding\" caption_text=\"Enjoy the sky\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Enjoy the sky\" headline=\"Parasailing\" headline_size=\"medium\" dash=\"top\" subheadline=\"Enjoy the thrill on the sky with our parasailing team and feel the California sun on your face. The team will help you get your adrenaline high and will be capuring your moments on a high-definition camera.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_ea2f\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"s7_e67b\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9f3\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_slider height=\"auto\" auto_play=\"\" hide_arrows=\"\" hide_paging=\"btSliderHidePaging\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/6\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1088\" caption_text=\"\" size=\"\" shape=\"circle\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][/bt_image][bt_header superheadline=\"MPYC\" headline=\"Mission\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][bt_column_inner width=\"5/6\"][bt_text]\r\n<blockquote>To connect our members and our diverse community to the boundless recreational opportunities and proper stewardship of the Monterey Bay and the Pacific Ocean.</blockquote>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/6\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1088\" caption_text=\"\" size=\"\" shape=\"circle\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][/bt_image][bt_header superheadline=\"MPYC\" headline=\"Vision\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][bt_column_inner width=\"5/6\"][bt_text]\r\n<blockquote>To actively promote the Monterey Peninsula Yacht Club as a prominent West Coast destination of choice for Corinthian spirit yacht racing, recreational boating, rowing and cruising.</blockquote>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/6\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1088\" caption_text=\"\" size=\"\" shape=\"circle\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][/bt_image][bt_header superheadline=\"MPYC\" headline=\"Commitment\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][bt_column_inner width=\"5/6\"][bt_text]\r\n<blockquote>To supporting a diverse membership that fosters inclusiveness, camaraderie, friendship, community involvement and leadership with the goal of advancing safe and sustainable maritime ecological practices.</blockquote>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][/bt_slider][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/3\" align=\"left\" vertical_align=\"btMiddleVertical\" border=\"no_border\" cell_padding=\"btDoublePadding\" animation=\"animate animate-fadein\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"#e5e5e5\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"IN A NUTSHELL\" headline=\"Hotel California\" headline_size=\"large\" dash=\"bottom\" subheadline=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer mollis viverra diam ac ornare. Donec rhoncus nisi in felis congue, at pulvinar nibh dapibus.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_button text=\"READ MORE\" icon=\"no_icon\" url=\"\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"ExtraSmall\" width=\"Normal\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"2/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_slider height=\"auto\" auto_play=\"\" hide_arrows=\"\" hide_paging=\"btSliderHidePaging\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"81\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"82\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"83\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"84\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"85\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][/bt_slider][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\"][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"2/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_gmaps latitude=\"36.602383\" longitude=\"-121.879245 \" zoom=\"11\" icon=\"342\" height=\"400px\" primary_color=\"\" secondary_color=\"\" water_color=\"\" custom_style=\"WwogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJhZG1pbmlzdHJhdGl2ZSIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImxhYmVscy50ZXh0LmZpbGwiLAogICAgICAgICJzdHlsZXJzIjogWwogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAiY29sb3IiOiAiIzQ0NDQ0NCIKICAgICAgICAgICAgfQogICAgICAgIF0KICAgIH0sCiAgICB7CiAgICAgICAgImZlYXR1cmVUeXBlIjogImxhbmRzY2FwZSIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJjb2xvciI6ICIjZjJmMmYyIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAicG9pIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiYWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInZpc2liaWxpdHkiOiAib2ZmIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAicm9hZCIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJzYXR1cmF0aW9uIjogLTEwMAogICAgICAgICAgICB9LAogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAibGlnaHRuZXNzIjogNDUKICAgICAgICAgICAgfQogICAgICAgIF0KICAgIH0sCiAgICB7CiAgICAgICAgImZlYXR1cmVUeXBlIjogInJvYWQuaGlnaHdheSIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogInNpbXBsaWZpZWQiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJyb2FkLmhpZ2h3YXkiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJnZW9tZXRyeSIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogInNpbXBsaWZpZWQiCiAgICAgICAgICAgIH0sCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJjb2xvciI6ICIjZDc3Mjg3IgogICAgICAgICAgICB9LAogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAibGlnaHRuZXNzIjogIjAiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJyb2FkLmhpZ2h3YXkiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJsYWJlbHMudGV4dCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogIm9uIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAicm9hZC5oaWdod2F5IiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAibGFiZWxzLmljb24iLAogICAgICAgICJzdHlsZXJzIjogWwogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAidmlzaWJpbGl0eSI6ICJvbiIKICAgICAgICAgICAgfQogICAgICAgIF0KICAgIH0sCiAgICB7CiAgICAgICAgImZlYXR1cmVUeXBlIjogInJvYWQuYXJ0ZXJpYWwiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJhbGwiLAogICAgICAgICJzdHlsZXJzIjogWwogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAidmlzaWJpbGl0eSI6ICJvbiIKICAgICAgICAgICAgfQogICAgICAgIF0KICAgIH0sCiAgICB7CiAgICAgICAgImZlYXR1cmVUeXBlIjogInJvYWQuYXJ0ZXJpYWwiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJnZW9tZXRyeS5maWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgImNvbG9yIjogIiNkNzcyODciCiAgICAgICAgICAgIH0sCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJsaWdodG5lc3MiOiAiNzUiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJyb2FkLmFydGVyaWFsIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAibGFiZWxzLmljb24iLAogICAgICAgICJzdHlsZXJzIjogWwogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAidmlzaWJpbGl0eSI6ICJvZmYiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJyb2FkLmxvY2FsIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiZ2VvbWV0cnkuZmlsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJsaWdodG5lc3MiOiAiNzUiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJ0cmFuc2l0IiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiYWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInZpc2liaWxpdHkiOiAib2ZmIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAidHJhbnNpdC5saW5lIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiYWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInZpc2liaWxpdHkiOiAib24iCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJ0cmFuc2l0LnN0YXRpb24uYnVzIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiYWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInZpc2liaWxpdHkiOiAib24iCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJ0cmFuc2l0LnN0YXRpb24ucmFpbCIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogIm9uIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAidHJhbnNpdC5zdGF0aW9uLnJhaWwiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJsYWJlbHMuaWNvbiIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ3ZWlnaHQiOiAiMC4wMSIKICAgICAgICAgICAgfSwKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgImh1ZSI6ICIjZmYwMDM1IgogICAgICAgICAgICB9LAogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAibGlnaHRuZXNzIjogIjAiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJ3YXRlciIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogIm9uIgogICAgICAgICAgICB9LAogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAiY29sb3IiOiAiIzgwZTRkOCIKICAgICAgICAgICAgfSwKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgImxpZ2h0bmVzcyI6ICIyNSIKICAgICAgICAgICAgfSwKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInNhdHVyYXRpb24iOiAiLTIzIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfQpd\" el_class=\"\" el_style=\"\" api_key=\"AIzaSyBda9LxQ-Wztqsk6aFI7SkcdiypnKTPfiI\"][/bt_gmaps][/bt_column][bt_column width=\"1/3\" align=\"left\" vertical_align=\"btMiddleVertical\" border=\"no_border\" cell_padding=\"btDoublePadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"#e5e5e5\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_service icon=\"s7_e638\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoMediumSize\" url=\"\" headline=\"Address\" dash=\"\" text=\"3216 W Highland Boulevard\r\nSan Diego, California\" el_class=\"\" el_style=\"\" superheadline=\"\"][/bt_service][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSemiSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_service icon=\"s7_e670\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoMediumSize\" url=\"\" headline=\"Phone\" dash=\"\" text=\"+555-40-220-6672\" el_class=\"\" el_style=\"\" superheadline=\"\"][/bt_service][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSemiSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_service icon=\"s7_e63a\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoMediumSize\" url=\"\" headline=\"Email\" dash=\"\" text=\"office@california.hotel\" el_class=\"\" el_style=\"\" superheadline=\"\"][/bt_service][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"yes\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"7/12\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"News <i>&</i> Blog\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Morbi pharetra faucibus purus, nec pretium enim luctus quis. Pellentesque aliquet venenatis ante, quis pretium neque tristique eget. Integer in luctus urna. Aenean rutrum sodales pharetra.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"5/12\"][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_latest_posts number=\"3\" category=\"\" format=\"horizontal\" post_type=\"blog\" show_excerpt=\"yes\" show_date=\"yes\" show_author=\"yes\" el_class=\"\" el_style=\"\"][/bt_latest_posts][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"1092\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"0.3\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Follow us\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Find out what\'s new at MPYC\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_icons][bt_icon icon=\"fa_f09a\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f099\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f16d\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_column][/bt_row][/bt_section]','Street view','\n ','inherit','closed','closed','','837-revision-v1','','','2021-04-07 11:37:16','2021-04-07 11:37:16','',837,'http://mpycdev.theomggroup.com/?p=1099',0,'revision','',0);
INSERT INTO `smrc_posts` VALUES (1100,1,'2021-04-07 11:42:51','2021-04-07 11:42:51','[bt_section layout=\"wide\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\"][bt_slider height=\"medium\" auto_play=\"5000\" hide_arrows=\"\" hide_paging=\"\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item image=\"1048\" el_class=\"\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1025\" el_class=\"\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1026\" el_class=\"btLightSkin\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1035\" el_class=\"btLightSkin\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1050\" el_class=\"btLightSkin\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1049\" el_class=\"btLightSkin\" el_style=\"\"][/bt_slider_item][/bt_slider][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"dark\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#000080\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\"][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\r\n<h4 style=\"text-align: center;\"><em>founded 1953 in historic Monterey, California</em></h4>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSemiSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"2/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Our Club\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"A non-profit organization, MPYC is a yachting and social club comprised of adult and junior members with an interest in coming together to share in boating, sailing, yacht racing and social activities. Membership is not limited to boat owners.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/3\"][/bt_column][/bt_row][bt_row][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1068\" caption_text=\"View\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption=\"Double room\" show_titles=\"no\" caption_title=\"Room details\"][bt_header superheadline=\"CORINTHIAN SPIRIT\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Racing\" headline_size=\"medium\" dash=\"top\" subheadline=\"MPYC has built a reputation for top-notch competitive sailing. We host over 100 races per year and have hosted a variety of national championships.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1071\" caption_text=\"\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"PASSION\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Cruising\" headline_size=\"medium\" dash=\"top\" subheadline=\"Our members feature both power and sailboat owners. It\'s our great honor to live along California\'s Monterey Bay and enjoy the scenic vistas and marine wildlife.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1074\" caption_text=\"\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"DRIVE\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Rowing\" headline_size=\"medium\" dash=\"top\" subheadline=\"Our beginning, recreational and advanced rowers enjoy short and long distance local routes in addition to competition in local, West Coast and U.S. regattas. \" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1070\" caption_text=\"\" size=\"medium\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"COMMITMENT\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Youth Sailing\" headline_size=\"medium\" dash=\"top\" subheadline=\"Since its inception, Monterey Peninsula Yacht Club\'s has been proud to invest in the future of sailing and our youth to foster a better future for all us, and our club.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#e5e5e5\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"323\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"width: 60px; margin-top: -28px;\"][/bt_image][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"5/12\"][/bt_column][bt_column width=\"7/12\" align=\"right\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Activities\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Phasellus blandit a massa vitae congue. Nam ex massa, mattis ut sapien sit amet, consequat sodales risus. Sed interdum, ligula et lobortis faucibus, sem sem placerat augue, eget scelerisque turpis lorem et tellus.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][/bt_column][/bt_row][/bt_section][bt_section layout=\"wide\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"dark\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#e5e5e5\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"73\" caption_title=\"Beach voleyball\" caption_text=\"Enjoy the game\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"ENJOY THE GAME\" headline=\"Beach Voleyball\" headline_size=\"medium\" dash=\"top\" subheadline=\"Beach volleyball is ouy visitors favourite sport, highly enjoyable for everyone young or old. Just gather your team on the beach and find the opponents in a matter of minutes. And show what you can do, be a winner!\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_e9ac\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e040\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e041\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"74\" el_class=\"\" el_style=\"\"][bt_image image=\"74\" caption_title=\"Horseback riding\" caption_text=\"Enjoy the beach\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Enjoy the beach\" headline=\"Horseback riding\" headline_size=\"medium\" dash=\"top\" subheadline=\"How about a lazy afternoon with your friends on a hors, while the sun goes down? If you want to chill out, our horse riding team will teach you in a matter of minutes and help you wind down after a good day on the sun.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_ea13\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1e\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e05b\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"75\" el_class=\"\" el_style=\"\"][bt_image image=\"75\" caption_title=\"Waterskiing\" caption_text=\"Enjoy the sea\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Enjoy the sea\" headline=\"Waterskiing\" headline_size=\"medium\" dash=\"top\" subheadline=\"If you are a big fan of water sports, then why not try the waterskiing or waterboarding? At hotel California you will find there\'s an amateur champoionship every year. Rated as the most fun activity by our visitors.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_e05b\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9a3\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9e5\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"76\" el_class=\"\" el_style=\"\"][bt_image image=\"76\" caption_title=\"Paragliding\" caption_text=\"Enjoy the sky\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Enjoy the sky\" headline=\"Parasailing\" headline_size=\"medium\" dash=\"top\" subheadline=\"Enjoy the thrill on the sky with our parasailing team and feel the California sun on your face. The team will help you get your adrenaline high and will be capuring your moments on a high-definition camera.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_ea2f\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"s7_e67b\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9f3\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_slider height=\"auto\" auto_play=\"\" hide_arrows=\"\" hide_paging=\"btSliderHidePaging\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/6\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1088\" caption_text=\"\" size=\"\" shape=\"circle\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][/bt_image][bt_header superheadline=\"MPYC\" headline=\"Mission\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][bt_column_inner width=\"5/6\"][bt_text]\r\n<blockquote>To connect our members and our diverse community to the boundless recreational opportunities and proper stewardship of the Monterey Bay and the Pacific Ocean.</blockquote>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/6\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1088\" caption_text=\"\" size=\"\" shape=\"circle\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][/bt_image][bt_header superheadline=\"MPYC\" headline=\"Vision\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][bt_column_inner width=\"5/6\"][bt_text]\r\n<blockquote>To actively promote the Monterey Peninsula Yacht Club as a prominent West Coast destination of choice for Corinthian spirit yacht racing, recreational boating, rowing and cruising.</blockquote>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/6\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1088\" caption_text=\"\" size=\"\" shape=\"circle\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][/bt_image][bt_header superheadline=\"MPYC\" headline=\"Commitment\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][bt_column_inner width=\"5/6\"][bt_text]\r\n<blockquote>To supporting a diverse membership that fosters inclusiveness, camaraderie, friendship, community involvement and leadership with the goal of advancing safe and sustainable maritime ecological practices.</blockquote>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][/bt_slider][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/3\" align=\"left\" vertical_align=\"btMiddleVertical\" border=\"no_border\" cell_padding=\"btDoublePadding\" animation=\"animate animate-fadein\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"#e5e5e5\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"IN A NUTSHELL\" headline=\"Hotel California\" headline_size=\"large\" dash=\"bottom\" subheadline=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer mollis viverra diam ac ornare. Donec rhoncus nisi in felis congue, at pulvinar nibh dapibus.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_button text=\"READ MORE\" icon=\"no_icon\" url=\"\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"ExtraSmall\" width=\"Normal\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"2/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_slider height=\"auto\" auto_play=\"\" hide_arrows=\"\" hide_paging=\"btSliderHidePaging\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"81\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"82\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"83\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"84\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"85\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][/bt_slider][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"yes\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"7/12\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"News <i>&</i> Blog\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Morbi pharetra faucibus purus, nec pretium enim luctus quis. Pellentesque aliquet venenatis ante, quis pretium neque tristique eget. Integer in luctus urna. Aenean rutrum sodales pharetra.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"5/12\"][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_latest_posts number=\"3\" category=\"\" format=\"horizontal\" post_type=\"blog\" show_excerpt=\"yes\" show_date=\"yes\" show_author=\"yes\" el_class=\"\" el_style=\"\"][/bt_latest_posts][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"1092\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"0.3\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Follow us\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Find out what\'s new at MPYC\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_icons][bt_icon icon=\"fa_f09a\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f099\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f16d\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_column][/bt_row][/bt_section]','Street view','\n ','inherit','closed','closed','','837-revision-v1','','','2021-04-07 11:42:51','2021-04-07 11:42:51','',837,'http://mpycdev.theomggroup.com/?p=1100',0,'revision','',0);
INSERT INTO `smrc_posts` VALUES (1101,1,'2021-04-07 11:46:25','2021-04-07 11:46:25','[bt_section layout=\"wide\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\"][bt_slider height=\"medium\" auto_play=\"5000\" hide_arrows=\"\" hide_paging=\"\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item image=\"1048\" el_class=\"\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1025\" el_class=\"\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1026\" el_class=\"btLightSkin\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1035\" el_class=\"btLightSkin\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1050\" el_class=\"btLightSkin\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1049\" el_class=\"btLightSkin\" el_style=\"\"][/bt_slider_item][/bt_slider][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"dark\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#000080\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\"][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\r\n<h4 style=\"text-align: center;\"><em>founded 1953 in historic Monterey, California</em></h4>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSemiSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"2/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Our Club\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"A non-profit organization, MPYC is a yachting and social club comprised of adult and junior members with an interest in coming together to share in boating, sailing, yacht racing and social activities. Membership is not limited to boat owners.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/3\"][/bt_column][/bt_row][bt_row][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1068\" caption_text=\"View\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption=\"Double room\" show_titles=\"no\" caption_title=\"Room details\"][bt_header superheadline=\"CORINTHIAN SPIRIT\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Racing\" headline_size=\"medium\" dash=\"top\" subheadline=\"MPYC has built a reputation for top-notch competitive sailing. We host over 100 races per year and have hosted a variety of national championships.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1071\" caption_text=\"\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"PASSION\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Cruising\" headline_size=\"medium\" dash=\"top\" subheadline=\"Our members feature both power and sailboat owners. It\'s our great honor to live along California\'s Monterey Bay and enjoy the scenic vistas and marine wildlife.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1074\" caption_text=\"\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"DRIVE\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Rowing\" headline_size=\"medium\" dash=\"top\" subheadline=\"Our beginning, recreational and advanced rowers enjoy short and long distance local routes in addition to competition in local, West Coast and U.S. regattas. \" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1070\" caption_text=\"\" size=\"medium\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"COMMITMENT\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Youth Sailing\" headline_size=\"medium\" dash=\"top\" subheadline=\"Since its inception, Monterey Peninsula Yacht Club\'s has been proud to invest in the future of sailing and our youth to foster a better future for all us, and our club.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#e5e5e5\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"323\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"width: 60px; margin-top: -28px;\"][/bt_image][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"5/12\"][/bt_column][bt_column width=\"7/12\" align=\"right\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Activities\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Phasellus blandit a massa vitae congue. Nam ex massa, mattis ut sapien sit amet, consequat sodales risus. Sed interdum, ligula et lobortis faucibus, sem sem placerat augue, eget scelerisque turpis lorem et tellus.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][/bt_column][/bt_row][/bt_section][bt_section layout=\"wide\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"dark\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#e5e5e5\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"73\" caption_title=\"Beach voleyball\" caption_text=\"Enjoy the game\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"ENJOY THE GAME\" headline=\"Beach Voleyball\" headline_size=\"medium\" dash=\"top\" subheadline=\"Beach volleyball is ouy visitors favourite sport, highly enjoyable for everyone young or old. Just gather your team on the beach and find the opponents in a matter of minutes. And show what you can do, be a winner!\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_e9ac\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e040\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e041\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"74\" el_class=\"\" el_style=\"\"][bt_image image=\"74\" caption_title=\"Horseback riding\" caption_text=\"Enjoy the beach\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Enjoy the beach\" headline=\"Horseback riding\" headline_size=\"medium\" dash=\"top\" subheadline=\"How about a lazy afternoon with your friends on a hors, while the sun goes down? If you want to chill out, our horse riding team will teach you in a matter of minutes and help you wind down after a good day on the sun.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_ea13\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1e\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e05b\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"75\" el_class=\"\" el_style=\"\"][bt_image image=\"75\" caption_title=\"Waterskiing\" caption_text=\"Enjoy the sea\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Enjoy the sea\" headline=\"Waterskiing\" headline_size=\"medium\" dash=\"top\" subheadline=\"If you are a big fan of water sports, then why not try the waterskiing or waterboarding? At hotel California you will find there\'s an amateur champoionship every year. Rated as the most fun activity by our visitors.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_e05b\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9a3\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9e5\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"76\" el_class=\"\" el_style=\"\"][bt_image image=\"76\" caption_title=\"Paragliding\" caption_text=\"Enjoy the sky\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Enjoy the sky\" headline=\"Parasailing\" headline_size=\"medium\" dash=\"top\" subheadline=\"Enjoy the thrill on the sky with our parasailing team and feel the California sun on your face. The team will help you get your adrenaline high and will be capuring your moments on a high-definition camera.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_ea2f\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"s7_e67b\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9f3\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_slider height=\"auto\" auto_play=\"\" hide_arrows=\"\" hide_paging=\"btSliderHidePaging\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/6\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1088\" caption_text=\"\" size=\"\" shape=\"circle\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][/bt_image][bt_header superheadline=\"MPYC\" headline=\"Mission\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][bt_column_inner width=\"5/6\"][bt_text]\r\n<blockquote>To connect our members and our diverse community to the boundless recreational opportunities and proper stewardship of the Monterey Bay and the Pacific Ocean.</blockquote>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/6\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1088\" caption_text=\"\" size=\"\" shape=\"circle\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][/bt_image][bt_header superheadline=\"MPYC\" headline=\"Vision\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][bt_column_inner width=\"5/6\"][bt_text]\r\n<blockquote>To actively promote the Monterey Peninsula Yacht Club as a prominent West Coast destination of choice for Corinthian spirit yacht racing, recreational boating, rowing and cruising.</blockquote>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/6\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1088\" caption_text=\"\" size=\"\" shape=\"circle\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][/bt_image][bt_header superheadline=\"MPYC\" headline=\"Commitment\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][bt_column_inner width=\"5/6\"][bt_text]\r\n<blockquote>To supporting a diverse membership that fosters inclusiveness, camaraderie, friendship, community involvement and leadership with the goal of advancing safe and sustainable maritime ecological practices.</blockquote>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][/bt_slider][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/3\" align=\"left\" vertical_align=\"btMiddleVertical\" border=\"no_border\" cell_padding=\"btDoublePadding\" animation=\"animate animate-fadein\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"#e5e5e5\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"IN A NUTSHELL\" headline=\"Hotel California\" headline_size=\"large\" dash=\"bottom\" subheadline=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer mollis viverra diam ac ornare. Donec rhoncus nisi in felis congue, at pulvinar nibh dapibus.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_button text=\"READ MORE\" icon=\"no_icon\" url=\"\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"ExtraSmall\" width=\"Normal\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"2/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_slider height=\"auto\" auto_play=\"\" hide_arrows=\"\" hide_paging=\"btSliderHidePaging\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"81\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"82\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"83\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"84\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"85\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][/bt_slider][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"yes\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"7/12\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Club News\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Latest happenings and announcements at MPYC\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"5/12\"][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_latest_posts number=\"3\" category=\"\" format=\"horizontal\" post_type=\"blog\" show_excerpt=\"yes\" show_date=\"yes\" show_author=\"yes\" el_class=\"\" el_style=\"\"][/bt_latest_posts][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"1092\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"0.3\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Follow us\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Find out what\'s new at MPYC\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_icons][bt_icon icon=\"fa_f09a\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f099\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f16d\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_column][/bt_row][/bt_section]','Street view','\n ','inherit','closed','closed','','837-revision-v1','','','2021-04-07 11:46:25','2021-04-07 11:46:25','',837,'http://mpycdev.theomggroup.com/?p=1101',0,'revision','',0);
INSERT INTO `smrc_posts` VALUES (1102,1,'2021-04-07 11:48:32','2021-04-07 11:48:32','[bt_section layout=\"wide\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\"][bt_slider height=\"medium\" auto_play=\"5000\" hide_arrows=\"\" hide_paging=\"\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item image=\"1048\" el_class=\"\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1025\" el_class=\"\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1026\" el_class=\"btLightSkin\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1035\" el_class=\"btLightSkin\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1050\" el_class=\"btLightSkin\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1049\" el_class=\"btLightSkin\" el_style=\"\"][/bt_slider_item][/bt_slider][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"dark\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#000080\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\"][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\r\n<h4 style=\"text-align: center;\"><em>founded 1953 in historic Monterey, California</em></h4>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSemiSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"2/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Our Club\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"A non-profit organization, MPYC is a yachting and social club comprised of adult and junior members with an interest in coming together to share in boating, sailing, yacht racing and social activities. Membership is not limited to boat owners.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/3\"][/bt_column][/bt_row][bt_row][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1068\" caption_text=\"View\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption=\"Double room\" show_titles=\"no\" caption_title=\"Room details\"][bt_header superheadline=\"CORINTHIAN SPIRIT\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Racing\" headline_size=\"medium\" dash=\"top\" subheadline=\"MPYC has built a reputation for top-notch competitive sailing. We host over 100 races per year and have hosted a variety of national championships.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1071\" caption_text=\"\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"PASSION\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Cruising\" headline_size=\"medium\" dash=\"top\" subheadline=\"Our members feature both power and sailboat owners. It\'s our great honor to live along California\'s Monterey Bay and enjoy the scenic vistas and marine wildlife.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1074\" caption_text=\"\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"DRIVE\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Rowing\" headline_size=\"medium\" dash=\"top\" subheadline=\"Our beginning, recreational and advanced rowers enjoy short and long distance local routes in addition to competition in local, West Coast and U.S. regattas. \" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1070\" caption_text=\"\" size=\"medium\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"COMMITMENT\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Youth Sailing\" headline_size=\"medium\" dash=\"top\" subheadline=\"Since its inception, Monterey Peninsula Yacht Club\'s has been proud to invest in the future of sailing and our youth to foster a better future for all us, and our club.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#e5e5e5\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"323\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"width: 60px; margin-top: -28px;\"][/bt_image][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"5/12\"][/bt_column][bt_column width=\"7/12\" align=\"right\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Activities\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Phasellus blandit a massa vitae congue. Nam ex massa, mattis ut sapien sit amet, consequat sodales risus. Sed interdum, ligula et lobortis faucibus, sem sem placerat augue, eget scelerisque turpis lorem et tellus.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][/bt_column][/bt_row][/bt_section][bt_section layout=\"wide\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"dark\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#e5e5e5\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"73\" caption_title=\"Beach voleyball\" caption_text=\"Enjoy the game\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"ENJOY THE GAME\" headline=\"Beach Voleyball\" headline_size=\"medium\" dash=\"top\" subheadline=\"Beach volleyball is ouy visitors favourite sport, highly enjoyable for everyone young or old. Just gather your team on the beach and find the opponents in a matter of minutes. And show what you can do, be a winner!\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_e9ac\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e040\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e041\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"74\" el_class=\"\" el_style=\"\"][bt_image image=\"74\" caption_title=\"Horseback riding\" caption_text=\"Enjoy the beach\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Enjoy the beach\" headline=\"Horseback riding\" headline_size=\"medium\" dash=\"top\" subheadline=\"How about a lazy afternoon with your friends on a hors, while the sun goes down? If you want to chill out, our horse riding team will teach you in a matter of minutes and help you wind down after a good day on the sun.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_ea13\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1e\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e05b\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"75\" el_class=\"\" el_style=\"\"][bt_image image=\"75\" caption_title=\"Waterskiing\" caption_text=\"Enjoy the sea\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Enjoy the sea\" headline=\"Waterskiing\" headline_size=\"medium\" dash=\"top\" subheadline=\"If you are a big fan of water sports, then why not try the waterskiing or waterboarding? At hotel California you will find there\'s an amateur champoionship every year. Rated as the most fun activity by our visitors.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_e05b\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9a3\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9e5\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"76\" el_class=\"\" el_style=\"\"][bt_image image=\"76\" caption_title=\"Paragliding\" caption_text=\"Enjoy the sky\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Enjoy the sky\" headline=\"Parasailing\" headline_size=\"medium\" dash=\"top\" subheadline=\"Enjoy the thrill on the sky with our parasailing team and feel the California sun on your face. The team will help you get your adrenaline high and will be capuring your moments on a high-definition camera.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_ea2f\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"s7_e67b\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9f3\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_slider height=\"auto\" auto_play=\"\" hide_arrows=\"\" hide_paging=\"btSliderHidePaging\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/6\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1088\" caption_text=\"\" size=\"\" shape=\"circle\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][/bt_image][bt_header superheadline=\"MPYC\" headline=\"Mission\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][bt_column_inner width=\"5/6\"][bt_text]\r\n<blockquote>To connect our members and our diverse community to the boundless recreational opportunities and proper stewardship of the Monterey Bay and the Pacific Ocean.</blockquote>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/6\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1088\" caption_text=\"\" size=\"\" shape=\"circle\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][/bt_image][bt_header superheadline=\"MPYC\" headline=\"Vision\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][bt_column_inner width=\"5/6\"][bt_text]\r\n<blockquote>To actively promote the Monterey Peninsula Yacht Club as a prominent West Coast destination of choice for Corinthian spirit yacht racing, recreational boating, rowing and cruising.</blockquote>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/6\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1088\" caption_text=\"\" size=\"\" shape=\"circle\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][/bt_image][bt_header superheadline=\"MPYC\" headline=\"Commitment\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][bt_column_inner width=\"5/6\"][bt_text]\r\n<blockquote>To supporting a diverse membership that fosters inclusiveness, camaraderie, friendship, community involvement and leadership with the goal of advancing safe and sustainable maritime ecological practices.</blockquote>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][/bt_slider][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/3\" align=\"left\" vertical_align=\"btMiddleVertical\" border=\"no_border\" cell_padding=\"btDoublePadding\" animation=\"animate animate-fadein\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"#e5e5e5\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"MPYC\" headline=\"Clubhouse\" headline_size=\"large\" dash=\"bottom\" subheadline=\"Located on Wharf 2 at the Monterey Harbor, the MPYC clubhouse is home to a variety of events, seminars, the Kilpatrick Dining Room and the Bear Flag Bar.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_button text=\"READ MORE\" icon=\"no_icon\" url=\"\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"ExtraSmall\" width=\"Normal\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"2/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_slider height=\"auto\" auto_play=\"\" hide_arrows=\"\" hide_paging=\"btSliderHidePaging\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"81\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"82\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"83\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"84\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"85\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][/bt_slider][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"yes\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"7/12\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Club News\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Latest happenings and announcements at MPYC\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"5/12\"][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_latest_posts number=\"3\" category=\"\" format=\"horizontal\" post_type=\"blog\" show_excerpt=\"yes\" show_date=\"yes\" show_author=\"yes\" el_class=\"\" el_style=\"\"][/bt_latest_posts][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"1092\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"0.3\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Follow us\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Find out what\'s new at MPYC\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_icons][bt_icon icon=\"fa_f09a\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f099\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f16d\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_column][/bt_row][/bt_section]','Street view','\n ','inherit','closed','closed','','837-revision-v1','','','2021-04-07 11:48:32','2021-04-07 11:48:32','',837,'http://mpycdev.theomggroup.com/?p=1102',0,'revision','',0);
INSERT INTO `smrc_posts` VALUES (1103,1,'2021-04-07 11:52:13','2021-04-07 11:52:13','[bt_section layout=\"wide\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\"][bt_slider height=\"medium\" auto_play=\"5000\" hide_arrows=\"\" hide_paging=\"\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item image=\"1048\" el_class=\"\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1025\" el_class=\"\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1026\" el_class=\"btLightSkin\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1035\" el_class=\"btLightSkin\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1050\" el_class=\"btLightSkin\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1049\" el_class=\"btLightSkin\" el_style=\"\"][/bt_slider_item][/bt_slider][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"dark\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#000080\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\"][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\r\n<h4 style=\"text-align: center;\"><em>founded 1953 in historic Monterey, California</em></h4>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSemiSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"2/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Our Club\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"A non-profit organization, MPYC is a yachting and social club comprised of adult and junior members with an interest in coming together to share in boating, sailing, yacht racing and social activities. Membership is not limited to boat owners.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/3\"][/bt_column][/bt_row][bt_row][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1068\" caption_text=\"View\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption=\"Double room\" show_titles=\"no\" caption_title=\"Room details\"][bt_header superheadline=\"CORINTHIAN SPIRIT\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Racing\" headline_size=\"medium\" dash=\"top\" subheadline=\"MPYC has built a reputation for top-notch competitive sailing. We host over 100 races per year and have hosted a variety of national championships.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1071\" caption_text=\"\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"PASSION\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Cruising\" headline_size=\"medium\" dash=\"top\" subheadline=\"Our members feature both power and sailboat owners. It\'s our great honor to live along California\'s Monterey Bay and enjoy the scenic vistas and marine wildlife.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1074\" caption_text=\"\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"DRIVE\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Rowing\" headline_size=\"medium\" dash=\"top\" subheadline=\"Our beginning, recreational and advanced rowers enjoy short and long distance local routes in addition to competition in local, West Coast and U.S. regattas. \" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1070\" caption_text=\"\" size=\"medium\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"COMMITMENT\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Youth Sailing\" headline_size=\"medium\" dash=\"top\" subheadline=\"Since its inception, Monterey Peninsula Yacht Club\'s has been proud to invest in the future of sailing and our youth to foster a better future for all us, and our club.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#e5e5e5\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"323\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"width: 60px; margin-top: -28px;\"][/bt_image][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"5/12\"][/bt_column][bt_column width=\"7/12\" align=\"right\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Activities\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Phasellus blandit a massa vitae congue. Nam ex massa, mattis ut sapien sit amet, consequat sodales risus. Sed interdum, ligula et lobortis faucibus, sem sem placerat augue, eget scelerisque turpis lorem et tellus.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][/bt_column][/bt_row][/bt_section][bt_section layout=\"wide\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"dark\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#e5e5e5\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"73\" caption_title=\"Beach voleyball\" caption_text=\"Enjoy the game\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"ENJOY THE GAME\" headline=\"Beach Voleyball\" headline_size=\"medium\" dash=\"top\" subheadline=\"Beach volleyball is ouy visitors favourite sport, highly enjoyable for everyone young or old. Just gather your team on the beach and find the opponents in a matter of minutes. And show what you can do, be a winner!\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_e9ac\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e040\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e041\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"74\" el_class=\"\" el_style=\"\"][bt_image image=\"74\" caption_title=\"Horseback riding\" caption_text=\"Enjoy the beach\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Enjoy the beach\" headline=\"Horseback riding\" headline_size=\"medium\" dash=\"top\" subheadline=\"How about a lazy afternoon with your friends on a hors, while the sun goes down? If you want to chill out, our horse riding team will teach you in a matter of minutes and help you wind down after a good day on the sun.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_ea13\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1e\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e05b\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"75\" el_class=\"\" el_style=\"\"][bt_image image=\"75\" caption_title=\"Waterskiing\" caption_text=\"Enjoy the sea\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Enjoy the sea\" headline=\"Waterskiing\" headline_size=\"medium\" dash=\"top\" subheadline=\"If you are a big fan of water sports, then why not try the waterskiing or waterboarding? At hotel California you will find there\'s an amateur champoionship every year. Rated as the most fun activity by our visitors.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_e05b\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9a3\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9e5\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"76\" el_class=\"\" el_style=\"\"][bt_image image=\"76\" caption_title=\"Paragliding\" caption_text=\"Enjoy the sky\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Enjoy the sky\" headline=\"Parasailing\" headline_size=\"medium\" dash=\"top\" subheadline=\"Enjoy the thrill on the sky with our parasailing team and feel the California sun on your face. The team will help you get your adrenaline high and will be capuring your moments on a high-definition camera.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_ea2f\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"s7_e67b\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9f3\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_slider height=\"auto\" auto_play=\"\" hide_arrows=\"\" hide_paging=\"btSliderHidePaging\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/6\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1088\" caption_text=\"\" size=\"\" shape=\"circle\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][/bt_image][bt_header superheadline=\"MPYC\" headline=\"Mission\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][bt_column_inner width=\"5/6\"][bt_text]\r\n<blockquote>To connect our members and our diverse community to the boundless recreational opportunities and proper stewardship of the Monterey Bay and the Pacific Ocean.</blockquote>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/6\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1088\" caption_text=\"\" size=\"\" shape=\"circle\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][/bt_image][bt_header superheadline=\"MPYC\" headline=\"Vision\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][bt_column_inner width=\"5/6\"][bt_text]\r\n<blockquote>To actively promote the Monterey Peninsula Yacht Club as a prominent West Coast destination of choice for Corinthian spirit yacht racing, recreational boating, rowing and cruising.</blockquote>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/6\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1088\" caption_text=\"\" size=\"\" shape=\"circle\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][/bt_image][bt_header superheadline=\"MPYC\" headline=\"Commitment\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][bt_column_inner width=\"5/6\"][bt_text]\r\n<blockquote>To supporting a diverse membership that fosters inclusiveness, camaraderie, friendship, community involvement and leadership with the goal of advancing safe and sustainable maritime ecological practices.</blockquote>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][/bt_slider][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/3\" align=\"left\" vertical_align=\"btMiddleVertical\" border=\"no_border\" cell_padding=\"btDoublePadding\" animation=\"animate animate-fadein\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"#e5e5e5\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"MPYC\" headline=\"Clubhouse\" headline_size=\"large\" dash=\"bottom\" subheadline=\"Located on Wharf 2 at the Monterey Harbor, the MPYC clubhouse is home to the Kilpatrick Dining Room and Bear Flag Bar. We are proud to host a variety of events, seminars and our summer sailing camp.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_button text=\"READ MORE\" icon=\"no_icon\" url=\"\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"ExtraSmall\" width=\"Normal\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"2/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_slider height=\"auto\" auto_play=\"\" hide_arrows=\"\" hide_paging=\"btSliderHidePaging\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"81\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"82\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"83\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"84\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"85\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][/bt_slider][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"yes\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"7/12\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Club News\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Latest happenings and announcements at MPYC\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"5/12\"][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_latest_posts number=\"3\" category=\"\" format=\"horizontal\" post_type=\"blog\" show_excerpt=\"yes\" show_date=\"yes\" show_author=\"yes\" el_class=\"\" el_style=\"\"][/bt_latest_posts][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"1092\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"0.3\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Follow us\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Find out what\'s new at MPYC\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_icons][bt_icon icon=\"fa_f09a\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f099\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f16d\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_column][/bt_row][/bt_section]','Street view','\n ','inherit','closed','closed','','837-revision-v1','','','2021-04-07 11:52:13','2021-04-07 11:52:13','',837,'http://mpycdev.theomggroup.com/?p=1103',0,'revision','',0);
INSERT INTO `smrc_posts` VALUES (1104,1,'2021-04-07 11:54:53','2021-04-07 11:54:53','[bt_section layout=\"wide\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\"][bt_slider height=\"medium\" auto_play=\"5000\" hide_arrows=\"\" hide_paging=\"\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item image=\"1048\" el_class=\"\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1025\" el_class=\"\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1026\" el_class=\"btLightSkin\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1035\" el_class=\"btLightSkin\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1050\" el_class=\"btLightSkin\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1049\" el_class=\"btLightSkin\" el_style=\"\"][/bt_slider_item][/bt_slider][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"dark\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#000080\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\"][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\r\n<h4 style=\"text-align: center;\"><em>founded 1953 in historic Monterey, California</em></h4>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSemiSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"2/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Our Club\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"A non-profit organization, MPYC is a yachting and social club comprised of adult and junior members with an interest in coming together to share in boating, sailing, yacht racing and social activities. Membership is not limited to boat owners.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/3\"][/bt_column][/bt_row][bt_row][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1068\" caption_text=\"View\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption=\"Double room\" show_titles=\"no\" caption_title=\"Room details\"][bt_header superheadline=\"CORINTHIAN SPIRIT\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Racing\" headline_size=\"medium\" dash=\"top\" subheadline=\"MPYC has built a reputation for top-notch competitive sailing. We host over 100 races per year and have hosted a variety of national championships.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1071\" caption_text=\"\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"PASSION\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Cruising\" headline_size=\"medium\" dash=\"top\" subheadline=\"Our members feature both power and sailboat owners. It\'s our great honor to live along California\'s Monterey Bay and enjoy the scenic vistas and marine wildlife.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1074\" caption_text=\"\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"DRIVE\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Rowing\" headline_size=\"medium\" dash=\"top\" subheadline=\"Our beginning, recreational and advanced rowers enjoy short and long distance local routes in addition to competition in local, West Coast and U.S. regattas. \" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1070\" caption_text=\"\" size=\"medium\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"COMMITMENT\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Youth Sailing\" headline_size=\"medium\" dash=\"top\" subheadline=\"Since its inception, Monterey Peninsula Yacht Club\'s has been proud to invest in the future of sailing and our youth to foster a better future for all us, and our club.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#e5e5e5\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"323\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"width: 60px; margin-top: -28px;\"][/bt_image][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"5/12\"][/bt_column][bt_column width=\"7/12\" align=\"right\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Activities\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Phasellus blandit a massa vitae congue. Nam ex massa, mattis ut sapien sit amet, consequat sodales risus. Sed interdum, ligula et lobortis faucibus, sem sem placerat augue, eget scelerisque turpis lorem et tellus.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][/bt_column][/bt_row][/bt_section][bt_section layout=\"wide\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"dark\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#e5e5e5\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"73\" caption_title=\"Beach voleyball\" caption_text=\"Enjoy the game\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"ENJOY THE GAME\" headline=\"Beach Voleyball\" headline_size=\"medium\" dash=\"top\" subheadline=\"Beach volleyball is ouy visitors favourite sport, highly enjoyable for everyone young or old. Just gather your team on the beach and find the opponents in a matter of minutes. And show what you can do, be a winner!\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_e9ac\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e040\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e041\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"74\" el_class=\"\" el_style=\"\"][bt_image image=\"74\" caption_title=\"Horseback riding\" caption_text=\"Enjoy the beach\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Enjoy the beach\" headline=\"Horseback riding\" headline_size=\"medium\" dash=\"top\" subheadline=\"How about a lazy afternoon with your friends on a hors, while the sun goes down? If you want to chill out, our horse riding team will teach you in a matter of minutes and help you wind down after a good day on the sun.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_ea13\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1e\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e05b\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"75\" el_class=\"\" el_style=\"\"][bt_image image=\"75\" caption_title=\"Waterskiing\" caption_text=\"Enjoy the sea\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Enjoy the sea\" headline=\"Waterskiing\" headline_size=\"medium\" dash=\"top\" subheadline=\"If you are a big fan of water sports, then why not try the waterskiing or waterboarding? At hotel California you will find there\'s an amateur champoionship every year. Rated as the most fun activity by our visitors.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_e05b\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9a3\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9e5\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"76\" el_class=\"\" el_style=\"\"][bt_image image=\"76\" caption_title=\"Paragliding\" caption_text=\"Enjoy the sky\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Enjoy the sky\" headline=\"Parasailing\" headline_size=\"medium\" dash=\"top\" subheadline=\"Enjoy the thrill on the sky with our parasailing team and feel the California sun on your face. The team will help you get your adrenaline high and will be capuring your moments on a high-definition camera.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_ea2f\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"s7_e67b\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9f3\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_slider height=\"auto\" auto_play=\"\" hide_arrows=\"\" hide_paging=\"btSliderHidePaging\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/6\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1088\" caption_text=\"\" size=\"\" shape=\"circle\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][/bt_image][bt_header superheadline=\"MPYC\" headline=\"Mission\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][bt_column_inner width=\"5/6\"][bt_text]\r\n<blockquote>To connect our members and our diverse community to the boundless recreational opportunities and proper stewardship of the Monterey Bay and the Pacific Ocean.</blockquote>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/6\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1088\" caption_text=\"\" size=\"\" shape=\"circle\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][/bt_image][bt_header superheadline=\"MPYC\" headline=\"Vision\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][bt_column_inner width=\"5/6\"][bt_text]\r\n<blockquote>To actively promote the Monterey Peninsula Yacht Club as a prominent West Coast destination of choice for Corinthian spirit yacht racing, recreational boating, rowing and cruising.</blockquote>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/6\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1088\" caption_text=\"\" size=\"\" shape=\"circle\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][/bt_image][bt_header superheadline=\"MPYC\" headline=\"Commitment\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][bt_column_inner width=\"5/6\"][bt_text]\r\n<blockquote>To supporting a diverse membership that fosters inclusiveness, camaraderie, friendship, community involvement and leadership with the goal of advancing safe and sustainable maritime ecological practices.</blockquote>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][/bt_slider][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/3\" align=\"left\" vertical_align=\"btMiddleVertical\" border=\"no_border\" cell_padding=\"btDoublePadding\" animation=\"animate animate-fadein\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"#e5e5e5\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"MPYC\" headline=\"Clubhouse\" headline_size=\"large\" dash=\"bottom\" subheadline=\"Our clubhouse on Wharf 2 is home to the Kilpatrick Dining Room and Bear Flag Bar. We are proud to host a variety of events, seminars and our summer sailing camp.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_button text=\"READ MORE\" icon=\"no_icon\" url=\"\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"ExtraSmall\" width=\"Normal\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"2/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_slider height=\"auto\" auto_play=\"\" hide_arrows=\"\" hide_paging=\"btSliderHidePaging\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"81\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"82\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"83\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"84\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"85\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][/bt_slider][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"yes\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"7/12\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Club News\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Latest happenings and announcements at MPYC\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"5/12\"][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_latest_posts number=\"3\" category=\"\" format=\"horizontal\" post_type=\"blog\" show_excerpt=\"yes\" show_date=\"yes\" show_author=\"yes\" el_class=\"\" el_style=\"\"][/bt_latest_posts][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"1092\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"0.3\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Follow us\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Find out what\'s new at MPYC\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_icons][bt_icon icon=\"fa_f09a\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f099\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f16d\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_column][/bt_row][/bt_section]','Street view','\n ','inherit','closed','closed','','837-revision-v1','','','2021-04-07 11:54:53','2021-04-07 11:54:53','',837,'http://mpycdev.theomggroup.com/?p=1104',0,'revision','',0);
INSERT INTO `smrc_posts` VALUES (1105,1,'2021-04-07 11:59:59','2021-04-07 11:59:59','[bt_section layout=\"wide\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\"][bt_slider height=\"medium\" auto_play=\"5000\" hide_arrows=\"\" hide_paging=\"\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item image=\"1048\" el_class=\"\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1025\" el_class=\"\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1026\" el_class=\"btLightSkin\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1035\" el_class=\"btLightSkin\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1050\" el_class=\"btLightSkin\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1049\" el_class=\"btLightSkin\" el_style=\"\"][/bt_slider_item][/bt_slider][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"dark\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#000080\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"#dd3333\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\r\n<h4 style=\"text-align: center;\"><em>founded 1953 in historic Monterey, California</em></h4>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSemiSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"2/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Our Club\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"A non-profit organization, MPYC is a yachting and social club comprised of adult and junior members with an interest in coming together to share in boating, sailing, yacht racing and social activities. Membership is not limited to boat owners.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/3\"][/bt_column][/bt_row][bt_row][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1068\" caption_text=\"View\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption=\"Double room\" show_titles=\"no\" caption_title=\"Room details\"][bt_header superheadline=\"CORINTHIAN SPIRIT\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Racing\" headline_size=\"medium\" dash=\"top\" subheadline=\"MPYC has built a reputation for top-notch competitive sailing. We host over 100 races per year and have hosted a variety of national championships.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1071\" caption_text=\"\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"PASSION\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Cruising\" headline_size=\"medium\" dash=\"top\" subheadline=\"Our members feature both power and sailboat owners. It\'s our great honor to live along California\'s Monterey Bay and enjoy the scenic vistas and marine wildlife.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1074\" caption_text=\"\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"DRIVE\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Rowing\" headline_size=\"medium\" dash=\"top\" subheadline=\"Our beginning, recreational and advanced rowers enjoy short and long distance local routes in addition to competition in local, West Coast and U.S. regattas. \" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1070\" caption_text=\"\" size=\"medium\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"COMMITMENT\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Youth Sailing\" headline_size=\"medium\" dash=\"top\" subheadline=\"Since its inception, Monterey Peninsula Yacht Club\'s has been proud to invest in the future of sailing and our youth to foster a better future for all us, and our club.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#e5e5e5\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"323\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"width: 60px; margin-top: -28px;\"][/bt_image][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"5/12\"][/bt_column][bt_column width=\"7/12\" align=\"right\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Activities\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Phasellus blandit a massa vitae congue. Nam ex massa, mattis ut sapien sit amet, consequat sodales risus. Sed interdum, ligula et lobortis faucibus, sem sem placerat augue, eget scelerisque turpis lorem et tellus.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][/bt_column][/bt_row][/bt_section][bt_section layout=\"wide\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"dark\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#e5e5e5\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"73\" caption_title=\"Beach voleyball\" caption_text=\"Enjoy the game\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"ENJOY THE GAME\" headline=\"Beach Voleyball\" headline_size=\"medium\" dash=\"top\" subheadline=\"Beach volleyball is ouy visitors favourite sport, highly enjoyable for everyone young or old. Just gather your team on the beach and find the opponents in a matter of minutes. And show what you can do, be a winner!\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_e9ac\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e040\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e041\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"74\" el_class=\"\" el_style=\"\"][bt_image image=\"74\" caption_title=\"Horseback riding\" caption_text=\"Enjoy the beach\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Enjoy the beach\" headline=\"Horseback riding\" headline_size=\"medium\" dash=\"top\" subheadline=\"How about a lazy afternoon with your friends on a hors, while the sun goes down? If you want to chill out, our horse riding team will teach you in a matter of minutes and help you wind down after a good day on the sun.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_ea13\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1e\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e05b\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"75\" el_class=\"\" el_style=\"\"][bt_image image=\"75\" caption_title=\"Waterskiing\" caption_text=\"Enjoy the sea\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Enjoy the sea\" headline=\"Waterskiing\" headline_size=\"medium\" dash=\"top\" subheadline=\"If you are a big fan of water sports, then why not try the waterskiing or waterboarding? At hotel California you will find there\'s an amateur champoionship every year. Rated as the most fun activity by our visitors.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_e05b\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9a3\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9e5\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"76\" el_class=\"\" el_style=\"\"][bt_image image=\"76\" caption_title=\"Paragliding\" caption_text=\"Enjoy the sky\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Enjoy the sky\" headline=\"Parasailing\" headline_size=\"medium\" dash=\"top\" subheadline=\"Enjoy the thrill on the sky with our parasailing team and feel the California sun on your face. The team will help you get your adrenaline high and will be capuring your moments on a high-definition camera.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_ea2f\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"s7_e67b\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9f3\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_slider height=\"auto\" auto_play=\"\" hide_arrows=\"\" hide_paging=\"btSliderHidePaging\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/6\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1088\" caption_text=\"\" size=\"\" shape=\"circle\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][/bt_image][bt_header superheadline=\"MPYC\" headline=\"Mission\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][bt_column_inner width=\"5/6\"][bt_text]\r\n<blockquote>To connect our members and our diverse community to the boundless recreational opportunities and proper stewardship of the Monterey Bay and the Pacific Ocean.</blockquote>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/6\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1088\" caption_text=\"\" size=\"\" shape=\"circle\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][/bt_image][bt_header superheadline=\"MPYC\" headline=\"Vision\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][bt_column_inner width=\"5/6\"][bt_text]\r\n<blockquote>To actively promote the Monterey Peninsula Yacht Club as a prominent West Coast destination of choice for Corinthian spirit yacht racing, recreational boating, rowing and cruising.</blockquote>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/6\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1088\" caption_text=\"\" size=\"\" shape=\"circle\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][/bt_image][bt_header superheadline=\"MPYC\" headline=\"Commitment\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][bt_column_inner width=\"5/6\"][bt_text]\r\n<blockquote>To supporting a diverse membership that fosters inclusiveness, camaraderie, friendship, community involvement and leadership with the goal of advancing safe and sustainable maritime ecological practices.</blockquote>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][/bt_slider][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/3\" align=\"left\" vertical_align=\"btMiddleVertical\" border=\"no_border\" cell_padding=\"btDoublePadding\" animation=\"animate animate-fadein\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"#e5e5e5\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"MPYC\" headline=\"Clubhouse\" headline_size=\"large\" dash=\"bottom\" subheadline=\"Our clubhouse on Wharf 2 is home to the Kilpatrick Dining Room and Bear Flag Bar. We are proud to host a variety of events, seminars and our summer sailing camp.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_button text=\"READ MORE\" icon=\"no_icon\" url=\"\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"ExtraSmall\" width=\"Normal\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"2/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_slider height=\"auto\" auto_play=\"\" hide_arrows=\"\" hide_paging=\"btSliderHidePaging\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"81\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"82\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"83\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"84\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"85\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][/bt_slider][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"yes\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"7/12\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Club News\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Latest happenings and announcements at MPYC\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"5/12\"][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_latest_posts number=\"3\" category=\"\" format=\"horizontal\" post_type=\"blog\" show_excerpt=\"yes\" show_date=\"yes\" show_author=\"yes\" el_class=\"\" el_style=\"\"][/bt_latest_posts][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"1092\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"0.3\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Follow us\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Find out what\'s new at MPYC\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_icons][bt_icon icon=\"fa_f09a\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f099\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f16d\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_column][/bt_row][/bt_section]','Street view','\n ','inherit','closed','closed','','837-revision-v1','','','2021-04-07 11:59:59','2021-04-07 11:59:59','',837,'http://mpycdev.theomggroup.com/?p=1105',0,'revision','',0);
INSERT INTO `smrc_posts` VALUES (1106,1,'2021-04-07 12:00:51','2021-04-07 12:00:51','[bt_section layout=\"wide\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\"][bt_slider height=\"medium\" auto_play=\"5000\" hide_arrows=\"\" hide_paging=\"\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item image=\"1048\" el_class=\"\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1025\" el_class=\"\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1026\" el_class=\"btLightSkin\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1035\" el_class=\"btLightSkin\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1050\" el_class=\"btLightSkin\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1049\" el_class=\"btLightSkin\" el_style=\"\"][/bt_slider_item][/bt_slider][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"dark\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#000080\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\"][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\r\n<h4 style=\"text-align: center;\"><em>founded 1953 in historic Monterey, California</em></h4>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSemiSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"2/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Our Club\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"A non-profit organization, MPYC is a yachting and social club comprised of adult and junior members with an interest in coming together to share in boating, sailing, yacht racing and social activities. Membership is not limited to boat owners.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/3\"][/bt_column][/bt_row][bt_row][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1068\" caption_text=\"View\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption=\"Double room\" show_titles=\"no\" caption_title=\"Room details\"][bt_header superheadline=\"CORINTHIAN SPIRIT\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Racing\" headline_size=\"medium\" dash=\"top\" subheadline=\"MPYC has built a reputation for top-notch competitive sailing. We host over 100 races per year and have hosted a variety of national championships.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1071\" caption_text=\"\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"PASSION\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Cruising\" headline_size=\"medium\" dash=\"top\" subheadline=\"Our members feature both power and sailboat owners. It\'s our great honor to live along California\'s Monterey Bay and enjoy the scenic vistas and marine wildlife.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1074\" caption_text=\"\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"DRIVE\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Rowing\" headline_size=\"medium\" dash=\"top\" subheadline=\"Our beginning, recreational and advanced rowers enjoy short and long distance local routes in addition to competition in local, West Coast and U.S. regattas. \" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1070\" caption_text=\"\" size=\"medium\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"COMMITMENT\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Youth Sailing\" headline_size=\"medium\" dash=\"top\" subheadline=\"Since its inception, Monterey Peninsula Yacht Club\'s has been proud to invest in the future of sailing and our youth to foster a better future for all us, and our club.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#e5e5e5\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"323\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"width: 60px; margin-top: -28px;\"][/bt_image][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"5/12\"][/bt_column][bt_column width=\"7/12\" align=\"right\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Activities\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Phasellus blandit a massa vitae congue. Nam ex massa, mattis ut sapien sit amet, consequat sodales risus. Sed interdum, ligula et lobortis faucibus, sem sem placerat augue, eget scelerisque turpis lorem et tellus.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][/bt_column][/bt_row][/bt_section][bt_section layout=\"wide\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"dark\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#e5e5e5\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"73\" caption_title=\"Beach voleyball\" caption_text=\"Enjoy the game\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"ENJOY THE GAME\" headline=\"Beach Voleyball\" headline_size=\"medium\" dash=\"top\" subheadline=\"Beach volleyball is ouy visitors favourite sport, highly enjoyable for everyone young or old. Just gather your team on the beach and find the opponents in a matter of minutes. And show what you can do, be a winner!\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_e9ac\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e040\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e041\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"74\" el_class=\"\" el_style=\"\"][bt_image image=\"74\" caption_title=\"Horseback riding\" caption_text=\"Enjoy the beach\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Enjoy the beach\" headline=\"Horseback riding\" headline_size=\"medium\" dash=\"top\" subheadline=\"How about a lazy afternoon with your friends on a hors, while the sun goes down? If you want to chill out, our horse riding team will teach you in a matter of minutes and help you wind down after a good day on the sun.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_ea13\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1e\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e05b\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"75\" el_class=\"\" el_style=\"\"][bt_image image=\"75\" caption_title=\"Waterskiing\" caption_text=\"Enjoy the sea\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Enjoy the sea\" headline=\"Waterskiing\" headline_size=\"medium\" dash=\"top\" subheadline=\"If you are a big fan of water sports, then why not try the waterskiing or waterboarding? At hotel California you will find there\'s an amateur champoionship every year. Rated as the most fun activity by our visitors.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_e05b\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9a3\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9e5\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"76\" el_class=\"\" el_style=\"\"][bt_image image=\"76\" caption_title=\"Paragliding\" caption_text=\"Enjoy the sky\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Enjoy the sky\" headline=\"Parasailing\" headline_size=\"medium\" dash=\"top\" subheadline=\"Enjoy the thrill on the sky with our parasailing team and feel the California sun on your face. The team will help you get your adrenaline high and will be capuring your moments on a high-definition camera.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_ea2f\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"s7_e67b\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9f3\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_slider height=\"auto\" auto_play=\"\" hide_arrows=\"\" hide_paging=\"btSliderHidePaging\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/6\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1088\" caption_text=\"\" size=\"\" shape=\"circle\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][/bt_image][bt_header superheadline=\"MPYC\" headline=\"Mission\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][bt_column_inner width=\"5/6\"][bt_text]\r\n<blockquote>To connect our members and our diverse community to the boundless recreational opportunities and proper stewardship of the Monterey Bay and the Pacific Ocean.</blockquote>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/6\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1088\" caption_text=\"\" size=\"\" shape=\"circle\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][/bt_image][bt_header superheadline=\"MPYC\" headline=\"Vision\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][bt_column_inner width=\"5/6\"][bt_text]\r\n<blockquote>To actively promote the Monterey Peninsula Yacht Club as a prominent West Coast destination of choice for Corinthian spirit yacht racing, recreational boating, rowing and cruising.</blockquote>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/6\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1088\" caption_text=\"\" size=\"\" shape=\"circle\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][/bt_image][bt_header superheadline=\"MPYC\" headline=\"Commitment\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][bt_column_inner width=\"5/6\"][bt_text]\r\n<blockquote>To supporting a diverse membership that fosters inclusiveness, camaraderie, friendship, community involvement and leadership with the goal of advancing safe and sustainable maritime ecological practices.</blockquote>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][/bt_slider][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/3\" align=\"left\" vertical_align=\"btMiddleVertical\" border=\"no_border\" cell_padding=\"btDoublePadding\" animation=\"animate animate-fadein\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"#e5e5e5\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"MPYC\" headline=\"Clubhouse\" headline_size=\"large\" dash=\"bottom\" subheadline=\"Our clubhouse on Wharf 2 is home to the Kilpatrick Dining Room and Bear Flag Bar. We are proud to host a variety of events, seminars and our summer sailing camp.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_button text=\"READ MORE\" icon=\"no_icon\" url=\"\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"ExtraSmall\" width=\"Normal\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"2/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_slider height=\"auto\" auto_play=\"\" hide_arrows=\"\" hide_paging=\"btSliderHidePaging\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"81\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"82\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"83\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"84\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"85\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][/bt_slider][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"yes\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"7/12\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Club News\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Latest happenings and announcements at MPYC\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"5/12\"][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_latest_posts number=\"3\" category=\"\" format=\"horizontal\" post_type=\"blog\" show_excerpt=\"yes\" show_date=\"yes\" show_author=\"yes\" el_class=\"\" el_style=\"\"][/bt_latest_posts][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"1092\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"0.3\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Follow us\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Find out what\'s new at MPYC\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_icons][bt_icon icon=\"fa_f09a\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f099\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f16d\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_column][/bt_row][/bt_section]','Street view','\n ','inherit','closed','closed','','837-revision-v1','','','2021-04-07 12:00:51','2021-04-07 12:00:51','',837,'http://mpycdev.theomggroup.com/?p=1106',0,'revision','',0);
INSERT INTO `smrc_posts` VALUES (1107,1,'2021-04-07 12:07:43','2021-04-07 12:07:43','[bt_section layout=\"wide\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\"][bt_slider height=\"medium\" auto_play=\"5000\" hide_arrows=\"\" hide_paging=\"\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item image=\"1048\" el_class=\"\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1025\" el_class=\"\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1026\" el_class=\"btLightSkin\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1035\" el_class=\"btLightSkin\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1050\" el_class=\"btLightSkin\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1049\" el_class=\"btLightSkin\" el_style=\"\"][/bt_slider_item][/bt_slider][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"dark\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#b71234\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\"][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\r\n<h4 style=\"text-align: center;\"><em>founded 1953 in historic Monterey, California</em></h4>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSemiSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"2/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Our Club\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"A non-profit organization, MPYC is a yachting and social club comprised of adult and junior members with an interest in coming together to share in boating, sailing, yacht racing and social activities. Membership is not limited to boat owners.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/3\"][/bt_column][/bt_row][bt_row][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1068\" caption_text=\"View\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption=\"Double room\" show_titles=\"no\" caption_title=\"Room details\"][bt_header superheadline=\"CORINTHIAN SPIRIT\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Racing\" headline_size=\"medium\" dash=\"top\" subheadline=\"MPYC has built a reputation for top-notch competitive sailing. We host over 100 races per year and have hosted a variety of national championships.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1071\" caption_text=\"\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"PASSION\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Cruising\" headline_size=\"medium\" dash=\"top\" subheadline=\"Our members feature both power and sailboat owners. It\'s our great honor to live along California\'s Monterey Bay and enjoy the scenic vistas and marine wildlife.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1074\" caption_text=\"\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"DRIVE\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Rowing\" headline_size=\"medium\" dash=\"top\" subheadline=\"Our beginning, recreational and advanced rowers enjoy short and long distance local routes in addition to competition in local, West Coast and U.S. regattas. \" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1070\" caption_text=\"\" size=\"medium\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"COMMITMENT\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Youth Sailing\" headline_size=\"medium\" dash=\"top\" subheadline=\"Since its inception, Monterey Peninsula Yacht Club\'s has been proud to invest in the future of sailing and our youth to foster a better future for all us, and our club.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#e5e5e5\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"323\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"width: 60px; margin-top: -28px;\"][/bt_image][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"5/12\"][/bt_column][bt_column width=\"7/12\" align=\"right\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Activities\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Phasellus blandit a massa vitae congue. Nam ex massa, mattis ut sapien sit amet, consequat sodales risus. Sed interdum, ligula et lobortis faucibus, sem sem placerat augue, eget scelerisque turpis lorem et tellus.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][/bt_column][/bt_row][/bt_section][bt_section layout=\"wide\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"dark\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#e5e5e5\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"73\" caption_title=\"Beach voleyball\" caption_text=\"Enjoy the game\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"ENJOY THE GAME\" headline=\"Beach Voleyball\" headline_size=\"medium\" dash=\"top\" subheadline=\"Beach volleyball is ouy visitors favourite sport, highly enjoyable for everyone young or old. Just gather your team on the beach and find the opponents in a matter of minutes. And show what you can do, be a winner!\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_e9ac\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e040\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e041\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"74\" el_class=\"\" el_style=\"\"][bt_image image=\"74\" caption_title=\"Horseback riding\" caption_text=\"Enjoy the beach\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Enjoy the beach\" headline=\"Horseback riding\" headline_size=\"medium\" dash=\"top\" subheadline=\"How about a lazy afternoon with your friends on a hors, while the sun goes down? If you want to chill out, our horse riding team will teach you in a matter of minutes and help you wind down after a good day on the sun.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_ea13\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1e\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e05b\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"75\" el_class=\"\" el_style=\"\"][bt_image image=\"75\" caption_title=\"Waterskiing\" caption_text=\"Enjoy the sea\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Enjoy the sea\" headline=\"Waterskiing\" headline_size=\"medium\" dash=\"top\" subheadline=\"If you are a big fan of water sports, then why not try the waterskiing or waterboarding? At hotel California you will find there\'s an amateur champoionship every year. Rated as the most fun activity by our visitors.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_e05b\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9a3\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9e5\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"76\" el_class=\"\" el_style=\"\"][bt_image image=\"76\" caption_title=\"Paragliding\" caption_text=\"Enjoy the sky\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Enjoy the sky\" headline=\"Parasailing\" headline_size=\"medium\" dash=\"top\" subheadline=\"Enjoy the thrill on the sky with our parasailing team and feel the California sun on your face. The team will help you get your adrenaline high and will be capuring your moments on a high-definition camera.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_ea2f\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"s7_e67b\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9f3\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_slider height=\"auto\" auto_play=\"\" hide_arrows=\"\" hide_paging=\"btSliderHidePaging\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/6\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1088\" caption_text=\"\" size=\"\" shape=\"circle\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][/bt_image][bt_header superheadline=\"MPYC\" headline=\"Mission\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][bt_column_inner width=\"5/6\"][bt_text]\r\n<blockquote>To connect our members and our diverse community to the boundless recreational opportunities and proper stewardship of the Monterey Bay and the Pacific Ocean.</blockquote>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/6\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1088\" caption_text=\"\" size=\"\" shape=\"circle\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][/bt_image][bt_header superheadline=\"MPYC\" headline=\"Vision\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][bt_column_inner width=\"5/6\"][bt_text]\r\n<blockquote>To actively promote the Monterey Peninsula Yacht Club as a prominent West Coast destination of choice for Corinthian spirit yacht racing, recreational boating, rowing and cruising.</blockquote>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/6\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1088\" caption_text=\"\" size=\"\" shape=\"circle\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][/bt_image][bt_header superheadline=\"MPYC\" headline=\"Commitment\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][bt_column_inner width=\"5/6\"][bt_text]\r\n<blockquote>To supporting a diverse membership that fosters inclusiveness, camaraderie, friendship, community involvement and leadership with the goal of advancing safe and sustainable maritime ecological practices.</blockquote>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][/bt_slider][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/3\" align=\"left\" vertical_align=\"btMiddleVertical\" border=\"no_border\" cell_padding=\"btDoublePadding\" animation=\"animate animate-fadein\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"#e5e5e5\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"MPYC\" headline=\"Clubhouse\" headline_size=\"large\" dash=\"bottom\" subheadline=\"Our clubhouse on Wharf 2 is home to the Kilpatrick Dining Room and Bear Flag Bar. We are proud to host a variety of events, seminars and our summer sailing camp.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_button text=\"READ MORE\" icon=\"no_icon\" url=\"\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"ExtraSmall\" width=\"Normal\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"2/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_slider height=\"auto\" auto_play=\"\" hide_arrows=\"\" hide_paging=\"btSliderHidePaging\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"81\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"82\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"83\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"84\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"85\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][/bt_slider][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"yes\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"7/12\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Club News\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Latest happenings and announcements at MPYC\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"5/12\"][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_latest_posts number=\"3\" category=\"\" format=\"horizontal\" post_type=\"blog\" show_excerpt=\"yes\" show_date=\"yes\" show_author=\"yes\" el_class=\"\" el_style=\"\"][/bt_latest_posts][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"1092\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"0.3\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Follow us\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Find out what\'s new at MPYC\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_icons][bt_icon icon=\"fa_f09a\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f099\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f16d\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_column][/bt_row][/bt_section]','Street view','\n ','inherit','closed','closed','','837-revision-v1','','','2021-04-07 12:07:43','2021-04-07 12:07:43','',837,'http://mpycdev.theomggroup.com/?p=1107',0,'revision','',0);
INSERT INTO `smrc_posts` VALUES (1108,1,'2021-04-07 12:33:50','2021-04-07 12:33:50','[bt_section layout=\"wide\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\"][bt_slider height=\"medium\" auto_play=\"5000\" hide_arrows=\"\" hide_paging=\"\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item image=\"1048\" el_class=\"\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1025\" el_class=\"\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1026\" el_class=\"btLightSkin\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1035\" el_class=\"btLightSkin\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1050\" el_class=\"btLightSkin\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1049\" el_class=\"btLightSkin\" el_style=\"\"][/bt_slider_item][/bt_slider][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"dark\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#b71234\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\"][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\r\n<h4 style=\"text-align: center;\"><em>founded 1953 in historic Monterey, California</em></h4>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSemiSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"2/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Our Club\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"A non-profit organization, MPYC is a yachting and social club comprised of adult and junior members with an interest in coming together to share in boating, sailing, yacht racing and social activities. Membership is not limited to boat owners.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/3\"][/bt_column][/bt_row][bt_row][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1068\" caption_text=\"View\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption=\"Double room\" show_titles=\"no\" caption_title=\"Room details\"][bt_header superheadline=\"CORINTHIAN SPIRIT\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Racing\" headline_size=\"medium\" dash=\"top\" subheadline=\"MPYC has built a reputation for top-notch competitive sailing. We host over 100 races per year and have hosted a variety of national championships.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1071\" caption_text=\"\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"PASSION\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Cruising\" headline_size=\"medium\" dash=\"top\" subheadline=\"Our members feature both power and sailboat owners. It\'s our great honor to live along California\'s Monterey Bay and enjoy the scenic vistas and marine wildlife.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1074\" caption_text=\"\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"DRIVE\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Rowing\" headline_size=\"medium\" dash=\"top\" subheadline=\"Our beginning, recreational and advanced rowers enjoy short and long distance local routes in addition to competition in local, West Coast and U.S. regattas. \" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1070\" caption_text=\"\" size=\"medium\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"COMMITMENT\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Youth Sailing\" headline_size=\"medium\" dash=\"top\" subheadline=\"Since its inception, Monterey Peninsula Yacht Club\'s has been proud to invest in the future of sailing and our youth to foster a better future for all us, and our club.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#e5e5e5\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"323\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"width: 60px; margin-top: -28px;\"][/bt_image][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"5/12\"][/bt_column][bt_column width=\"7/12\" align=\"right\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Activities\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Phasellus blandit a massa vitae congue. Nam ex massa, mattis ut sapien sit amet, consequat sodales risus. Sed interdum, ligula et lobortis faucibus, sem sem placerat augue, eget scelerisque turpis lorem et tellus.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][/bt_column][/bt_row][/bt_section][bt_section layout=\"wide\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"dark\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#e5e5e5\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"73\" caption_title=\"Beach voleyball\" caption_text=\"Enjoy the game\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"ON THE WATER\" headline=\"Crew\" headline_size=\"medium\" dash=\"top\" subheadline=\"Beach volleyball is ouy visitors favourite sport, highly enjoyable for everyone young or old. Just gather your team on the beach and find the opponents in a matter of minutes. And show what you can do, be a winner!\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_e9ac\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e040\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e041\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"74\" el_class=\"\" el_style=\"\"][bt_image image=\"74\" caption_title=\"Horseback riding\" caption_text=\"Enjoy the beach\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"On the Water\" headline=\"Paddleboarding\" headline_size=\"medium\" dash=\"top\" subheadline=\"How about a lazy afternoon with your friends on a hors, while the sun goes down? If you want to chill out, our horse riding team will teach you in a matter of minutes and help you wind down after a good day on the sun.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_ea13\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1e\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e05b\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"75\" el_class=\"\" el_style=\"\"][bt_image image=\"75\" caption_title=\"Dining\" caption_text=\"ON SHORE\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Enjoy the sea\" headline=\"Waterskiing\" headline_size=\"medium\" dash=\"top\" subheadline=\"If you are a big fan of water sports, then why not try the waterskiing or waterboarding? At hotel California you will find there\'s an amateur champoionship every year. Rated as the most fun activity by our visitors.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_e05b\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9a3\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9e5\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"76\" el_class=\"\" el_style=\"\"][bt_image image=\"76\" caption_title=\"Paragliding\" caption_text=\"Enjoy the sky\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"On Shore\" headline=\"Special Events\" headline_size=\"medium\" dash=\"top\" subheadline=\"Enjoy the thrill on the sky with our parasailing team and feel the California sun on your face. The team will help you get your adrenaline high and will be capuring your moments on a high-definition camera.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_ea2f\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"s7_e67b\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9f3\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_slider height=\"auto\" auto_play=\"\" hide_arrows=\"\" hide_paging=\"btSliderHidePaging\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/6\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1088\" caption_text=\"\" size=\"\" shape=\"circle\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][/bt_image][bt_header superheadline=\"MPYC\" headline=\"Mission\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][bt_column_inner width=\"5/6\"][bt_text]\r\n<blockquote>To connect our members and our diverse community to the boundless recreational opportunities and proper stewardship of the Monterey Bay and the Pacific Ocean.</blockquote>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/6\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1088\" caption_text=\"\" size=\"\" shape=\"circle\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][/bt_image][bt_header superheadline=\"MPYC\" headline=\"Vision\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][bt_column_inner width=\"5/6\"][bt_text]\r\n<blockquote>To actively promote the Monterey Peninsula Yacht Club as a prominent West Coast destination of choice for Corinthian spirit yacht racing, recreational boating, rowing and cruising.</blockquote>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/6\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1088\" caption_text=\"\" size=\"\" shape=\"circle\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][/bt_image][bt_header superheadline=\"MPYC\" headline=\"Commitment\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][bt_column_inner width=\"5/6\"][bt_text]\r\n<blockquote>To supporting a diverse membership that fosters inclusiveness, camaraderie, friendship, community involvement and leadership with the goal of advancing safe and sustainable maritime ecological practices.</blockquote>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][/bt_slider][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/3\" align=\"left\" vertical_align=\"btMiddleVertical\" border=\"no_border\" cell_padding=\"btDoublePadding\" animation=\"animate animate-fadein\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"#e5e5e5\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"MPYC\" headline=\"Clubhouse\" headline_size=\"large\" dash=\"bottom\" subheadline=\"Our clubhouse on Wharf 2 is home to the Kilpatrick Dining Room and Bear Flag Bar. We are proud to host a variety of events, seminars and our summer sailing camp.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_button text=\"READ MORE\" icon=\"no_icon\" url=\"\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"ExtraSmall\" width=\"Normal\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"2/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_slider height=\"auto\" auto_play=\"\" hide_arrows=\"\" hide_paging=\"btSliderHidePaging\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"81\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"82\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"83\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"84\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"85\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][/bt_slider][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"yes\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"7/12\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Club News\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Latest happenings and announcements at MPYC\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"5/12\"][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_latest_posts number=\"3\" category=\"\" format=\"horizontal\" post_type=\"blog\" show_excerpt=\"yes\" show_date=\"yes\" show_author=\"yes\" el_class=\"\" el_style=\"\"][/bt_latest_posts][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"1092\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"0.3\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Follow us\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Find out what\'s new at MPYC\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_icons][bt_icon icon=\"fa_f09a\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f099\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f16d\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_column][/bt_row][/bt_section]','Street view','\n ','inherit','closed','closed','','837-revision-v1','','','2021-04-07 12:33:50','2021-04-07 12:33:50','',837,'http://mpycdev.theomggroup.com/?p=1108',0,'revision','',0);
INSERT INTO `smrc_posts` VALUES (1109,1,'2021-04-07 12:37:31','2021-04-07 12:37:31','[bt_section layout=\"wide\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\"][bt_slider height=\"medium\" auto_play=\"5000\" hide_arrows=\"\" hide_paging=\"\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item image=\"1048\" el_class=\"\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1025\" el_class=\"\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1026\" el_class=\"btLightSkin\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1035\" el_class=\"btLightSkin\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1050\" el_class=\"btLightSkin\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1049\" el_class=\"btLightSkin\" el_style=\"\"][/bt_slider_item][/bt_slider][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"dark\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#b71234\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\"][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\r\n<h4 style=\"text-align: center;\"><em>founded 1953 in historic Monterey, California</em></h4>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSemiSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"2/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Our Club\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"A non-profit organization, MPYC is a yachting and social club comprised of adult and junior members with an interest in coming together to share in boating, sailing, yacht racing and social activities. Membership is not limited to boat owners.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/3\"][/bt_column][/bt_row][bt_row][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1068\" caption_text=\"View\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption=\"Double room\" show_titles=\"no\" caption_title=\"Room details\"][bt_header superheadline=\"CORINTHIAN SPIRIT\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Racing\" headline_size=\"medium\" dash=\"top\" subheadline=\"MPYC has built a reputation for top-notch competitive sailing. We host over 100 races per year and have hosted a variety of national championships.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1071\" caption_text=\"\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"PASSION\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Cruising\" headline_size=\"medium\" dash=\"top\" subheadline=\"Our members feature both power and sailboat owners. It\'s our great honor to live along California\'s Monterey Bay and enjoy the scenic vistas and marine wildlife.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1074\" caption_text=\"\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"DRIVE\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Rowing\" headline_size=\"medium\" dash=\"top\" subheadline=\"Our beginning, recreational and advanced rowers enjoy short and long distance local routes in addition to competition in local, West Coast and U.S. regattas. \" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1070\" caption_text=\"\" size=\"medium\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"COMMITMENT\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Youth Sailing\" headline_size=\"medium\" dash=\"top\" subheadline=\"Since its inception, Monterey Peninsula Yacht Club\'s has been proud to invest in the future of sailing and our youth to foster a better future for all us, and our club.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#e5e5e5\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"323\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"width: 60px; margin-top: -28px;\"][/bt_image][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"5/12\"][/bt_column][bt_column width=\"7/12\" align=\"right\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Activities\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Phasellus blandit a massa vitae congue. Nam ex massa, mattis ut sapien sit amet, consequat sodales risus. Sed interdum, ligula et lobortis faucibus, sem sem placerat augue, eget scelerisque turpis lorem et tellus.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][/bt_column][/bt_row][/bt_section][bt_section layout=\"wide\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"dark\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#e5e5e5\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"73\" caption_title=\"Crew\" caption_text=\"ON THE WATER\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"ON THE WATER\" headline=\"Crew\" headline_size=\"medium\" dash=\"top\" subheadline=\"Beach volleyball is ouy visitors favourite sport, highly enjoyable for everyone young or old. Just gather your team on the beach and find the opponents in a matter of minutes. And show what you can do, be a winner!\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][/bt_icons][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"74\" el_class=\"\" el_style=\"\"][bt_image image=\"74\" caption_title=\"Horseback riding\" caption_text=\"Enjoy the beach\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"On the Water\" headline=\"Paddleboarding\" headline_size=\"medium\" dash=\"top\" subheadline=\"How about a lazy afternoon with your friends on a hors, while the sun goes down? If you want to chill out, our horse riding team will teach you in a matter of minutes and help you wind down after a good day on the sun.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_ea13\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1e\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e05b\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"75\" el_class=\"\" el_style=\"\"][bt_image image=\"75\" caption_title=\"Dining\" caption_text=\"ON SHORE\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"On Shore\" headline=\"Dining\" headline_size=\"medium\" dash=\"top\" subheadline=\"If you are a big fan of water sports, then why not try the waterskiing or waterboarding? At hotel California you will find there\'s an amateur champoionship every year. Rated as the most fun activity by our visitors.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_e05b\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9a3\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9e5\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"76\" el_class=\"\" el_style=\"\"][bt_image image=\"76\" caption_title=\"Paragliding\" caption_text=\"Enjoy the sky\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"On Shore\" headline=\"Special Events\" headline_size=\"medium\" dash=\"top\" subheadline=\"Enjoy the thrill on the sky with our parasailing team and feel the California sun on your face. The team will help you get your adrenaline high and will be capuring your moments on a high-definition camera.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_ea2f\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"s7_e67b\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9f3\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_slider height=\"auto\" auto_play=\"\" hide_arrows=\"\" hide_paging=\"btSliderHidePaging\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/6\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1088\" caption_text=\"\" size=\"\" shape=\"circle\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][/bt_image][bt_header superheadline=\"MPYC\" headline=\"Mission\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][bt_column_inner width=\"5/6\"][bt_text]\r\n<blockquote>To connect our members and our diverse community to the boundless recreational opportunities and proper stewardship of the Monterey Bay and the Pacific Ocean.</blockquote>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/6\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1088\" caption_text=\"\" size=\"\" shape=\"circle\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][/bt_image][bt_header superheadline=\"MPYC\" headline=\"Vision\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][bt_column_inner width=\"5/6\"][bt_text]\r\n<blockquote>To actively promote the Monterey Peninsula Yacht Club as a prominent West Coast destination of choice for Corinthian spirit yacht racing, recreational boating, rowing and cruising.</blockquote>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/6\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1088\" caption_text=\"\" size=\"\" shape=\"circle\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][/bt_image][bt_header superheadline=\"MPYC\" headline=\"Commitment\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][bt_column_inner width=\"5/6\"][bt_text]\r\n<blockquote>To supporting a diverse membership that fosters inclusiveness, camaraderie, friendship, community involvement and leadership with the goal of advancing safe and sustainable maritime ecological practices.</blockquote>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][/bt_slider][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/3\" align=\"left\" vertical_align=\"btMiddleVertical\" border=\"no_border\" cell_padding=\"btDoublePadding\" animation=\"animate animate-fadein\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"#e5e5e5\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"MPYC\" headline=\"Clubhouse\" headline_size=\"large\" dash=\"bottom\" subheadline=\"Our clubhouse on Wharf 2 is home to the Kilpatrick Dining Room and Bear Flag Bar. We are proud to host a variety of events, seminars and our summer sailing camp.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_button text=\"READ MORE\" icon=\"no_icon\" url=\"\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"ExtraSmall\" width=\"Normal\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"2/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_slider height=\"auto\" auto_play=\"\" hide_arrows=\"\" hide_paging=\"btSliderHidePaging\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"81\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"82\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"83\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"84\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"85\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][/bt_slider][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"yes\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"7/12\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Club News\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Latest happenings and announcements at MPYC\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"5/12\"][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_latest_posts number=\"3\" category=\"\" format=\"horizontal\" post_type=\"blog\" show_excerpt=\"yes\" show_date=\"yes\" show_author=\"yes\" el_class=\"\" el_style=\"\"][/bt_latest_posts][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"1092\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"0.3\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Follow us\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Find out what\'s new at MPYC\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_icons][bt_icon icon=\"fa_f09a\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f099\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f16d\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_column][/bt_row][/bt_section]','Street view','\n ','inherit','closed','closed','','837-revision-v1','','','2021-04-07 12:37:31','2021-04-07 12:37:31','',837,'http://mpycdev.theomggroup.com/?p=1109',0,'revision','',0);
INSERT INTO `smrc_posts` VALUES (1111,1,'2021-04-07 23:39:38','2021-04-07 23:39:38','[bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"624\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/2\"][/bt_column][bt_column width=\"1/2\"][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Truly <i>remarkable</i>\" headline_size=\"huge\" dash=\"bottom\" subheadline=\"At the heart of San Diego, on one of the most colorful beaches, right next to the Pacific ocean, lies the Hotel California, which can offer you an experience like no other resort will.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_service icon=\"cs_e9bd\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoBigSize\" url=\"/activities\" headline=\"Activities\" dash=\"\" text=\"\" el_class=\"\" el_style=\"\" superheadline=\"OUTDOOR\"][/bt_service][bt_service icon=\"s7_e6bf\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoBigSize\" url=\"/gallery\" headline=\"Gallery\" dash=\"\" text=\"\" el_class=\"\" el_style=\"\" superheadline=\"VIEW PHOTO\"][/bt_service][/bt_icons][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"2/3\"][bt_header superheadline=\"Remarkable in it\'s way\" headline=\"Hotel California\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Nulla quis vestibulum risus. Sed eros augue, laoreet ac risus finibus, semper porta eros. Donec eleifend blandit luctus. Curabitur at massa dignissim, semper mauris a, sollicitudin ipsum. \" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][/bt_column][bt_column width=\"1/3\"][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\"][bt_text]\n\nMaecenas enim arcu, pharetra pharetra rutrum ac, condimentum vel nulla. Duis risus diam, consectetur sed purus in, ullamcorper vulputate eros. Aliquam felis neque, posuere vel purus eu, dapibus mattis dolor. Nam maximus elit augue, eu ornare tortor feugiat eget.\n<blockquote>Nulla dictum euismod purus, quis commodo mauris posuere auctor. Phasellus nec lectus gravida, tempus metus sit amet, mattis leo. Donec mauris orci, consectetur in congue et, dapibus sed nisi. Duis sem lacus, elementum vel luctus quis, scelerisque et nibh.</blockquote>\nMauris eget bibendum libero, hendrerit faucibus tellus. Morbi felis dolor, tempus ac posuere id, facilisis non diam. Pellentesque vitae libero lacus. Sed rhoncus eros vel elit lacinia lacinia. Fusce laoreet sit amet urna ut sagittis. Fusce vitae ornare massa. Nam mollis elit quis eleifend dictum.\n\n[/bt_text][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/2\" align=\"left\" vertical_align=\"btMiddleVertical\" border=\"no_border\" cell_padding=\"btDoublePadding\" animation=\"no_animation\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"#e5e5e5\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"California variety\" headline=\"Colorful & vibrant\" headline_size=\"large\" dash=\"bottom\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_text]\n\nNullam sit amet diam nisi. Pellentesque risus elit, tempor et nisl vel, feugiat lacinia elit. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae.\n\nEtiam aliquam ligula massa. Nam sollicitudin tincidunt diam eu pretium. Curabitur lacinia nisi eu sodales volutpat. Nam ullamcorper risus eu felis posuere maximus.\n\nAliquam nisl ex, porta vitae rutrum sed, rutrum non erat. Praesent eu risus eu justo tempor faucibus vel ut tortor. Fusce velit neque, faucibus hendrerit vulputate et, scelerisque sit amet odio. Donec suscipit, elit vitae bibendum efficitur, felis nulla porttitor lacus, ut semper sem nisi vel libero.\n\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/2\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_row_inner][bt_column_inner width=\"1/2\" align=\"left\" cell_padding=\"btNoPadding\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"618\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_column_inner][bt_column_inner width=\"1/2\" align=\"left\" cell_padding=\"btNoPadding\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"617\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_column_inner][/bt_row_inner][bt_row_inner][bt_column_inner width=\"1/2\" align=\"left\" cell_padding=\"btNoPadding\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"620\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_column_inner][bt_column_inner width=\"1/2\" align=\"left\" cell_padding=\"btNoPadding\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"621\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_column_inner][/bt_row_inner][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSemiSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"2/3\" align=\"left\" vertical_align=\"btMiddleVertical\" border=\"no_border\" cell_padding=\"default\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Our Accomodation\" headline=\"Rooms <i>&</i> Suites\" headline_size=\"extralarge\" dash=\"bottom\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\" subheadline=\"If you chose to stay with us you will enjoy modern home comforts in a traditional setting. Whether you are looking for a short weekend break or a longer holiday, we offer a range of packages that will cater for all.\" el_class=\"\" el_style=\"\"][/bt_header][/bt_column][bt_column width=\"1/3\" align=\"left\" vertical_align=\"btMiddleVertical\" border=\"no_border\" cell_padding=\"default\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][/bt_column][/bt_row][bt_row][bt_column width=\"1/4\"][bt_image image=\"44\" caption_text=\"View\" size=\"\" shape=\"square\" url=\"room details\" target=\"_self\" el_class=\"\" el_style=\"\" caption=\"Double room\" show_titles=\"no\" caption_title=\"Room details\"][bt_header superheadline=\"Room features\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"cs_ea18\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9c2\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea2c\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1c\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"DELUXE\" headline=\"Double Room\" headline_size=\"medium\" dash=\"top\" subheadline=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer mollis viverra diam ac ornare. Donec rhoncus nisi in felis congue, at pulvinar nibh dapibus.\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/2\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"room details\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"1/2\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\"][bt_image image=\"43\" caption_text=\"\" size=\"\" shape=\"square\" url=\"room details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"Room features\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"cs_ea18\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9c5\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1a\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1c\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"EXECUTIVE\" headline=\"Junior Suite\" headline_size=\"medium\" dash=\"top\" subheadline=\"Sed sodales tortor non metus iaculis, non commodo ipsum mattis. Ut at dolor elit. Proin dignissim, lacus eget ullamcorper consectetur, mauris mi mattis elit sagittis.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/2\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"room details\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"1/2\"][bt_header superheadline=\"FROM\" headline=\"$79 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\"][bt_image image=\"42\" caption_text=\"\" size=\"\" shape=\"square\" url=\"room details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"Room features\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"cs_ea30\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea18\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea2d\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1c\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"DELUXE\" headline=\"Double Room\" headline_size=\"medium\" dash=\"top\" subheadline=\"Mauris suscipit lectus pellentesque ante efficitur, at dignissim tellus maximus. Sed leo magna, faucibus non ante non, pulvinar scelerisque magna sit elis.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/2\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"room details\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"1/2\"][bt_header superheadline=\"FROM\" headline=\"$49 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\"][bt_image image=\"41\" caption_text=\"\" size=\"medium\" shape=\"square\" url=\"room details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"Room features\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"cs_ea18\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1b\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea21\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1c\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"DELUXE\" headline=\"Family Room\" headline_size=\"medium\" dash=\"top\" subheadline=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer mollis viverra diam ac ornare. Donec rhoncus nisi in felis congue, at pulvinar nibh dapibus.\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/2\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"room details\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"1/2\"][bt_header superheadline=\"FROM\" headline=\"$79 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"1/4\"][bt_image image=\"563\" caption_text=\"View\" size=\"\" shape=\"square\" url=\"room details\" target=\"_self\" el_class=\"\" el_style=\"\" caption=\"Double room\" show_titles=\"no\" caption_title=\"Room details\"][bt_header superheadline=\"Room features\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"cs_ea18\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9c2\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea2c\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1c\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"GARDEN\" headline=\"Family Room\" headline_size=\"medium\" dash=\"top\" subheadline=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer mollis viverra diam ac ornare. Donec rhoncus nisi in felis congue, at pulvinar nibh dapibus.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/2\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"room details\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"1/2\"][bt_header superheadline=\"FROM\" headline=\"$89 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\"][bt_image image=\"562\" caption_text=\"\" size=\"\" shape=\"square\" url=\"room details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"Room features\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"cs_ea18\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9c5\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1a\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1c\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"EXECUTIVE\" headline=\"Double Suite\" headline_size=\"medium\" dash=\"top\" subheadline=\"Curabitur sollicitudin vitae tellus ac porta. Donec aliquam turpis augue, eu sagittis risus consectetur non. Cras ut feugiat dolor, consectetur tristique nibh.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/2\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"room details\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"1/2\"][bt_header superheadline=\"FROM\" headline=\"$119 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\"][bt_image image=\"565\" caption_text=\"\" size=\"\" shape=\"square\" url=\"room details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"Room features\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"cs_ea30\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea18\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea2d\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1c\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"EXECUTIVE\" headline=\"Deluxe Suite\" headline_size=\"medium\" dash=\"top\" subheadline=\"Proin lobortis tempus elit sit amet consectetur. Proin egestas velit nibh, a viverra magna imperdiet sit amet. Nam diam neque, consectetur vel dolor et.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/2\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"room details\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"1/2\"][bt_header superheadline=\"FROM\" headline=\"$109 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\"][bt_image image=\"564\" caption_text=\"\" size=\"medium\" shape=\"square\" url=\"room details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"Room features\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"cs_ea18\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1b\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea21\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1c\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"DETACHED\" headline=\"Maisonette\" headline_size=\"medium\" dash=\"top\" subheadline=\"Vestibulum faucibus est sit amet dolor mollis, vitae auctor massa ullamcorper. Integer ultrices quis sapien a viverra. Aenean at nunc at mauris congue egestas.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/2\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"room details\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"1/2\"][bt_header superheadline=\"FROM\" headline=\"$129 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSemiSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#e6e6e6\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\"][bt_slider height=\"auto\" auto_play=\"\" hide_arrows=\"\" hide_paging=\"btSliderHidePaging\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/3\"][bt_icons][bt_image image=\"78\" caption_text=\"\" size=\"thumbnail\" shape=\"circle\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][/bt_image][/bt_icons][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\n\n<em>This was our absolutely best vacation ever, for each and everyone of us. We were looking for a good family hotel with lots of activities for the whole family and that was exactly what we got!</em>\n\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"June 2016\" headline=\"Alan Jones\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"1/3\"][bt_icons][bt_image image=\"447\" caption_text=\"\" size=\"thumbnail\" shape=\"circle\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][/bt_image][/bt_icons][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\n\n<em>I was looking for a nice hotel, but with various activities when staying there. Boy, was I surprised! California was anything but boring and all the things I did and places I visited was well worth it!</em>\n\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"July 2016\" headline=\"Adrianne White\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"1/3\"][bt_icons][bt_image image=\"446\" caption_text=\"\" size=\"thumbnail\" shape=\"circle\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][/bt_image][/bt_icons][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\n\n<em>The best vacation for me and my fiancee, and a very affordable I might add! I throughly enjoyed every day at the beach, and every minute in the room, restaurant, everywhere! I can recommend this to everyone!</em>\n\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"August 2016\" headline=\"Jenna & Mike\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/3\"][bt_icons][bt_image image=\"78\" caption_text=\"\" size=\"thumbnail\" shape=\"circle\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][/bt_image][/bt_icons][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\n\n<em>This was our absolutely best vacation ever, for each and everyone of us. We were looking for a good family hotel with lots of activities for the whole family and that was exactly what we got!</em>\n\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"June 2016\" headline=\"Alan Jones\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"1/3\"][bt_icons][bt_image image=\"447\" caption_text=\"\" size=\"thumbnail\" shape=\"circle\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][/bt_image][/bt_icons][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\n\n<em>I was looking for a nice hotel, but with various activities when staying there. Boy, was I surprised! California was anything but boring and all the things I did and places I visited was well worth it!</em>\n\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"July 2016\" headline=\"Adrianne White\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"1/3\"][bt_icons][bt_image image=\"446\" caption_text=\"\" size=\"thumbnail\" shape=\"circle\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][/bt_image][/bt_icons][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\n\n<em>The best vacation for me and my fiancee, and a very affordable I might add! I throughly enjoyed every day at the beach, and every minute in the room, restaurant, everywhere! I can recommend this to everyone!</em>\n\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"August 2016\" headline=\"Jenna & Mike\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][/bt_slider][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"dark\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#584528\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\"][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\n\n[contact-form-7 id=\"397\" title=\"Booking form\"]\n\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"wide\" top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/6\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"618\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_column][bt_column width=\"1/6\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"619\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_column][bt_column width=\"1/6\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"620\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_column][bt_column width=\"1/6\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"622\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_column][bt_column width=\"1/6\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"621\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_column][bt_column width=\"1/6\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"617\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_column][/bt_row][/bt_section]','Master Interior','','inherit','closed','closed','','33-autosave-v1','','','2021-04-07 23:39:38','2021-04-07 23:39:38','',33,'http://mpycdev.theomggroup.com/?p=1111',0,'revision','',0);
INSERT INTO `smrc_posts` VALUES (1112,1,'2021-04-07 23:47:25','2021-04-07 23:47:25','[bt_section layout=\"wide\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"dark\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"right\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_slider height=\"auto\" auto_play=\"3000\" hide_arrows=\"\" hide_paging=\"btSliderHidePaging\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item image=\"483\" el_class=\"\" el_style=\"\"][bt_hr top_spaced=\"topExtraSpaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topExtraSpaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"Detached\" headline=\"Maisonette\" headline_size=\"extralarge\" dash=\"top\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][bt_slider_item image=\"484\" el_class=\"\" el_style=\"\"][bt_hr top_spaced=\"topExtraSpaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topExtraSpaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"Detached\" headline=\"Maisonette\" headline_size=\"extralarge\" dash=\"top\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][bt_slider_item image=\"485\" el_class=\"\" el_style=\"\"][bt_hr top_spaced=\"topExtraSpaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topExtraSpaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"Detached\" headline=\"Maisonette\" headline_size=\"extralarge\" dash=\"top\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][bt_slider_item image=\"486\" el_class=\"\" el_style=\"\"][bt_hr top_spaced=\"topExtraSpaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topExtraSpaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"Detached\" headline=\"Maisonette\" headline_size=\"extralarge\" dash=\"top\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][/bt_slider][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"323\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"width: 60px; margin-top: -28px;\"][/bt_image][bt_hr top_spaced=\"topSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"1/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Detached\" headline=\"Maisonette\" headline_size=\"extralarge\" dash=\"top\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][bt_row_inner][bt_column_inner width=\"1/1\" align=\"left\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"btHighlight\" text_indent=\"btTextIndent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Amenities\" headline_size=\"medium\" dash=\"no\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"cs_ea18\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea19\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea2c\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1c\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea20\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea33\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\n\nSize: 60 square feet\nView: Sea or Garden view\nTerraces: Balcony\nOccupants: Maximum 3 persons\nRoom service: Available per request\n\n[/bt_text][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/2\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"BOOK NOW\" icon=\"no_icon\" url=\"\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Medium\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][/bt_column_inner][bt_column_inner width=\"1/2\" align=\"left\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"FROM\" headline=\"$99 / night\" headline_size=\"medium\" dash=\"no\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/1\" align=\"left\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"btHighlight\" text_indent=\"btTextIndent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_custom_menu menu=\"Rooms\" el_class=\"\" el_style=\"\"][/bt_custom_menu][/bt_column_inner][/bt_row_inner][/bt_column][bt_column width=\"2/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_row_inner][bt_column_inner width=\"1/1\" align=\"left\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"btTextIndent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_text]\n\nAt the heart of San Diego, on one of the most colorful beaches, right next to the Pacific ocean, lies the Hotel California, most famous for it’s easy going staff and vacation you’ll never forget…\n\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Ut interdum nisi a justo dignissim, id sollicitudin ipsum suscipit. Ut magna purus, blandit quis bibendum sodales, rhoncus quis nibh. Sed gravida est leo, sed tristique nulla consequat vel. Donec id lacus id nisl pharetra pharetra. Interdum et malesuada fames ac ante ipsum primis in faucibus. Suspendisse nec leo nec dui porttitor varius sit amet ac velit.\n\nVivamus ornare viverra ex non rutrum. Cras pulvinar vitae eros in mollis. Donec tincidunt, metus nec tempor ornare, ligula est vehicula mauris, scelerisque cursus arcu sem vitae quam. Suspendisse rutrum aliquam odio, non vehicula nulla pellentesque et.\n<blockquote>Aliquam tincidunt sollicitudin lectus, quis consequat nisi elementum interdum. Etiam ac scelerisque magna. Nulla dignissim, nisi ac varius porta, velit dolor pretium.</blockquote>\nVestibulum placerat eleifend arcu at pellentesque. Phasellus vitae augue at ligula ullamcorper suscipit. Sed euismod, odio ut ullamcorper bibendum, erat quam gravida nibh, pellentesque eleifend urna dui ac nibh. Morbi auctor cursus vestibulum. Integer tristique neque erat, sed tempor urna semper a.\n\nFusce facilisis magna vel dolor tincidunt, sit amet pharetra erat consequat. Proin finibus aliquam purus, eu laoreet mauris auctor ut.\n\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSemiSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_grid_gallery ids=\"371,378,377,376,375,374,373,372\" format=\"\" lightbox=\"yes\" grid_gap=\"20\" columns=\"4\" links=\"\" el_class=\"\" el_style=\"\"][/bt_grid_gallery][/bt_column_inner][/bt_row_inner][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"dark\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#584528\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\"][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\n\n[contact-form-7 id=\"397\" title=\"Booking form\"]\n\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"2/3\"][bt_header superheadline=\"\" headline=\"Other Rooms\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"If you chose to stay with us you will enjoy modern home comforts in a traditional setting. Whether you are looking for a short weekend break or a longer holiday, we offer a range of packages that will cater for all.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/3\"][/bt_column][/bt_row][bt_row][bt_column width=\"1/4\"][bt_image image=\"44\" caption_text=\"View\" size=\"\" shape=\"square\" url=\"room details\" target=\"_self\" el_class=\"\" el_style=\"\" caption=\"Double room\" show_titles=\"no\" caption_title=\"Room details\"][bt_header superheadline=\"Room features\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"fa_f21a\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"s7_e67b\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"s7_e675\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"DELUXE\" headline=\"Double Room\" headline_size=\"medium\" dash=\"top\" subheadline=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer mollis viverra diam ac ornare. Donec rhoncus nisi in felis congue, at pulvinar nibh dapibus.\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/2\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"1/2\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\"][bt_image image=\"43\" caption_text=\"\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"EXECUTIVE\" headline=\"Junior Suite\" headline_size=\"medium\" dash=\"top\" subheadline=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer mollis viverra diam ac ornare. Donec rhoncus nisi in felis congue, at pulvinar nibh dapibus.\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/2\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"1/2\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\"][bt_image image=\"42\" caption_text=\"\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"DELUXE\" headline=\"Double Room\" headline_size=\"medium\" dash=\"top\" subheadline=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer mollis viverra diam ac ornare. Donec rhoncus nisi in felis congue, at pulvinar nibh dapibus.\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/2\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"1/2\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\"][bt_image image=\"41\" caption_text=\"\" size=\"medium\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"DELUXE\" headline=\"Family Room\" headline_size=\"medium\" dash=\"top\" subheadline=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer mollis viverra diam ac ornare. Donec rhoncus nisi in felis congue, at pulvinar nibh dapibus.\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/2\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"1/2\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section]','Interior Master','','inherit','closed','closed','','804-autosave-v1','','','2021-04-07 23:47:25','2021-04-07 23:47:25','',804,'http://mpycdev.theomggroup.com/?p=1112',0,'revision','',0);
INSERT INTO `smrc_posts` VALUES (1113,1,'2021-04-07 23:48:06','2021-04-07 23:48:06','[bt_section layout=\"wide\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"dark\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"right\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_slider height=\"auto\" auto_play=\"3000\" hide_arrows=\"\" hide_paging=\"btSliderHidePaging\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item image=\"483\" el_class=\"\" el_style=\"\"][bt_hr top_spaced=\"topExtraSpaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topExtraSpaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"Detached\" headline=\"Maisonette\" headline_size=\"extralarge\" dash=\"top\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][/bt_slider][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"323\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"width: 60px; margin-top: -28px;\"][/bt_image][bt_hr top_spaced=\"topSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"1/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Detached\" headline=\"Maisonette\" headline_size=\"extralarge\" dash=\"top\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][bt_row_inner][bt_column_inner width=\"1/1\" align=\"left\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"btHighlight\" text_indent=\"btTextIndent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Amenities\" headline_size=\"medium\" dash=\"no\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"cs_ea18\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea19\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea2c\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1c\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea20\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea33\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\r\n\r\nSize: 60 square feet\r\nView: Sea or Garden view\r\nTerraces: Balcony\r\nOccupants: Maximum 3 persons\r\nRoom service: Available per request\r\n\r\n[/bt_text][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/2\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"BOOK NOW\" icon=\"no_icon\" url=\"\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Medium\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][/bt_column_inner][bt_column_inner width=\"1/2\" align=\"left\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"FROM\" headline=\"$99 / night\" headline_size=\"medium\" dash=\"no\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/1\" align=\"left\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"btHighlight\" text_indent=\"btTextIndent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_custom_menu menu=\"Rooms\" el_class=\"\" el_style=\"\"][/bt_custom_menu][/bt_column_inner][/bt_row_inner][/bt_column][bt_column width=\"2/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_row_inner][bt_column_inner width=\"1/1\" align=\"left\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"btTextIndent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_text]\r\n\r\nAt the heart of San Diego, on one of the most colorful beaches, right next to the Pacific ocean, lies the Hotel California, most famous for it’s easy going staff and vacation you’ll never forget…\r\n\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Ut interdum nisi a justo dignissim, id sollicitudin ipsum suscipit. Ut magna purus, blandit quis bibendum sodales, rhoncus quis nibh. Sed gravida est leo, sed tristique nulla consequat vel. Donec id lacus id nisl pharetra pharetra. Interdum et malesuada fames ac ante ipsum primis in faucibus. Suspendisse nec leo nec dui porttitor varius sit amet ac velit.\r\n\r\nVivamus ornare viverra ex non rutrum. Cras pulvinar vitae eros in mollis. Donec tincidunt, metus nec tempor ornare, ligula est vehicula mauris, scelerisque cursus arcu sem vitae quam. Suspendisse rutrum aliquam odio, non vehicula nulla pellentesque et.\r\n<blockquote>Aliquam tincidunt sollicitudin lectus, quis consequat nisi elementum interdum. Etiam ac scelerisque magna. Nulla dignissim, nisi ac varius porta, velit dolor pretium.</blockquote>\r\nVestibulum placerat eleifend arcu at pellentesque. Phasellus vitae augue at ligula ullamcorper suscipit. Sed euismod, odio ut ullamcorper bibendum, erat quam gravida nibh, pellentesque eleifend urna dui ac nibh. Morbi auctor cursus vestibulum. Integer tristique neque erat, sed tempor urna semper a.\r\n\r\nFusce facilisis magna vel dolor tincidunt, sit amet pharetra erat consequat. Proin finibus aliquam purus, eu laoreet mauris auctor ut.\r\n\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSemiSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_grid_gallery ids=\"371,378,377,376,375,374,373,372\" format=\"\" lightbox=\"yes\" grid_gap=\"20\" columns=\"4\" links=\"\" el_class=\"\" el_style=\"\"][/bt_grid_gallery][/bt_column_inner][/bt_row_inner][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"dark\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#584528\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\"][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\r\n\r\n[contact-form-7 id=\"397\" title=\"Booking form\"]\r\n\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"2/3\"][bt_header superheadline=\"\" headline=\"Other Rooms\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"If you chose to stay with us you will enjoy modern home comforts in a traditional setting. Whether you are looking for a short weekend break or a longer holiday, we offer a range of packages that will cater for all.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/3\"][/bt_column][/bt_row][bt_row][bt_column width=\"1/4\"][bt_image image=\"44\" caption_text=\"View\" size=\"\" shape=\"square\" url=\"room details\" target=\"_self\" el_class=\"\" el_style=\"\" caption=\"Double room\" show_titles=\"no\" caption_title=\"Room details\"][bt_header superheadline=\"Room features\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"fa_f21a\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"s7_e67b\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"s7_e675\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"DELUXE\" headline=\"Double Room\" headline_size=\"medium\" dash=\"top\" subheadline=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer mollis viverra diam ac ornare. Donec rhoncus nisi in felis congue, at pulvinar nibh dapibus.\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/2\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"1/2\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\"][bt_image image=\"43\" caption_text=\"\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"EXECUTIVE\" headline=\"Junior Suite\" headline_size=\"medium\" dash=\"top\" subheadline=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer mollis viverra diam ac ornare. Donec rhoncus nisi in felis congue, at pulvinar nibh dapibus.\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/2\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"1/2\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\"][bt_image image=\"42\" caption_text=\"\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"DELUXE\" headline=\"Double Room\" headline_size=\"medium\" dash=\"top\" subheadline=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer mollis viverra diam ac ornare. Donec rhoncus nisi in felis congue, at pulvinar nibh dapibus.\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/2\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"1/2\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\"][bt_image image=\"41\" caption_text=\"\" size=\"medium\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"DELUXE\" headline=\"Family Room\" headline_size=\"medium\" dash=\"top\" subheadline=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer mollis viverra diam ac ornare. Donec rhoncus nisi in felis congue, at pulvinar nibh dapibus.\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/2\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"1/2\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section]','MPYC Standard Page','\n ','inherit','closed','closed','','804-revision-v1','','','2021-04-07 23:48:06','2021-04-07 23:48:06','',804,'http://mpycdev.theomggroup.com/?p=1113',0,'revision','',0);
INSERT INTO `smrc_posts` VALUES (1114,1,'2021-04-08 04:09:57','2021-04-08 04:09:57','','salmon','','inherit','open','closed','','salmon','','','2021-04-08 04:09:57','2021-04-08 04:09:57','',837,'http://mpycdev.theomggroup.com/wp-content/uploads/2021/04/salmon.jpg',0,'attachment','image/jpeg',0);
INSERT INTO `smrc_posts` VALUES (1115,1,'2021-04-08 04:10:16','2021-04-08 04:10:16','','oktoberfest','','inherit','open','closed','','oktoberfest','','','2021-04-08 04:10:16','2021-04-08 04:10:16','',837,'http://mpycdev.theomggroup.com/wp-content/uploads/2021/04/oktoberfest.jpg',0,'attachment','image/jpeg',0);
INSERT INTO `smrc_posts` VALUES (1116,1,'2021-04-08 04:10:18','2021-04-08 04:10:18','','paddleboard','','inherit','open','closed','','paddleboard','','','2021-04-08 04:10:18','2021-04-08 04:10:18','',837,'http://mpycdev.theomggroup.com/wp-content/uploads/2021/04/paddleboard.jpg',0,'attachment','image/jpeg',0);
INSERT INTO `smrc_posts` VALUES (1117,1,'2021-04-08 04:19:51','2021-04-08 04:19:51','','education','','inherit','open','closed','','education','','','2021-04-08 04:19:51','2021-04-08 04:19:51','',837,'http://mpycdev.theomggroup.com/wp-content/uploads/2021/04/education.jpg',0,'attachment','image/jpeg',0);
INSERT INTO `smrc_posts` VALUES (1118,1,'2021-04-08 04:20:45','2021-04-08 04:20:45','[bt_section layout=\"wide\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\"][bt_slider height=\"medium\" auto_play=\"5000\" hide_arrows=\"\" hide_paging=\"\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item image=\"1048\" el_class=\"\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1025\" el_class=\"\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1026\" el_class=\"btLightSkin\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1035\" el_class=\"btLightSkin\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1050\" el_class=\"btLightSkin\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1049\" el_class=\"btLightSkin\" el_style=\"\"][/bt_slider_item][/bt_slider][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"dark\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#b71234\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\"][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\r\n<h4 style=\"text-align: center;\"><em>founded 1953 in historic Monterey, California</em></h4>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSemiSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"2/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Our Club\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"A non-profit organization, MPYC is a yachting and social club comprised of adult and junior members with an interest in coming together to share in boating, sailing, yacht racing and social activities. Membership is not limited to boat owners.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/3\"][/bt_column][/bt_row][bt_row][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1068\" caption_text=\"View\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption=\"Double room\" show_titles=\"no\" caption_title=\"Room details\"][bt_header superheadline=\"CORINTHIAN SPIRIT\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Racing\" headline_size=\"medium\" dash=\"top\" subheadline=\"MPYC has built a reputation for top-notch competitive sailing. We host over 100 races per year and have hosted a variety of national championships.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1071\" caption_text=\"\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"PASSION\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Cruising\" headline_size=\"medium\" dash=\"top\" subheadline=\"Our members feature both power and sailboat owners. It\'s our great honor to live along California\'s Monterey Bay and enjoy the scenic vistas and marine wildlife.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1074\" caption_text=\"\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"DRIVE\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Rowing\" headline_size=\"medium\" dash=\"top\" subheadline=\"Our beginning, recreational and advanced rowers enjoy short and long distance local routes in addition to competition in local, West Coast and U.S. regattas. \" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1070\" caption_text=\"\" size=\"medium\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"COMMITMENT\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Youth Sailing\" headline_size=\"medium\" dash=\"top\" subheadline=\"Since its inception, Monterey Peninsula Yacht Club\'s has been proud to invest in the future of sailing and our youth to foster a better future for all us, and our club.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#e5e5e5\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"323\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"width: 60px; margin-top: -28px;\"][/bt_image][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"5/12\"][/bt_column][bt_column width=\"7/12\" align=\"right\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Activities\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Phasellus blandit a massa vitae congue. Nam ex massa, mattis ut sapien sit amet, consequat sodales risus. Sed interdum, ligula et lobortis faucibus, sem sem placerat augue, eget scelerisque turpis lorem et tellus.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][/bt_column][/bt_row][/bt_section][bt_section layout=\"wide\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"dark\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#e5e5e5\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1116\" caption_title=\"On the Water\" caption_text=\"Fun\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Fun\" headline=\"On the Water\" headline_size=\"medium\" dash=\"top\" subheadline=\"Beach volleyball is ouy visitors favourite sport, highly enjoyable for everyone young or old. Just gather your team on the beach and find the opponents in a matter of minutes. And show what you can do, be a winner!\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"74\" el_class=\"\" el_style=\"\"][bt_image image=\"1115\" caption_title=\"Special Events\" caption_text=\"Annual\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Annual\" headline=\"Special Events\" headline_size=\"medium\" dash=\"top\" subheadline=\"How about a lazy afternoon with your friends on a hors, while the sun goes down? If you want to chill out, our horse riding team will teach you in a matter of minutes and help you wind down after a good day on the sun.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"75\" el_class=\"\" el_style=\"\"][bt_image image=\"1114\" caption_title=\"Dining\" caption_text=\"On Shore\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"On Shore\" headline=\"Dining\" headline_size=\"medium\" dash=\"top\" subheadline=\"If you are a big fan of water sports, then why not try the waterskiing or waterboarding? At hotel California you will find there\'s an amateur champoionship every year. Rated as the most fun activity by our visitors.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"76\" el_class=\"\" el_style=\"\"][bt_image image=\"1117\" caption_title=\"Education\" caption_text=\"Safety\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Safety\" headline=\"Education\" headline_size=\"medium\" dash=\"top\" subheadline=\"Enjoy the thrill on the sky with our parasailing team and feel the California sun on your face. The team will help you get your adrenaline high and will be capuring your moments on a high-definition camera.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_image][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_slider height=\"auto\" auto_play=\"\" hide_arrows=\"\" hide_paging=\"btSliderHidePaging\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/6\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1088\" caption_text=\"\" size=\"\" shape=\"circle\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][/bt_image][bt_header superheadline=\"MPYC\" headline=\"Mission\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][bt_column_inner width=\"5/6\"][bt_text]\r\n<blockquote>To connect our members and our diverse community to the boundless recreational opportunities and proper stewardship of the Monterey Bay and the Pacific Ocean.</blockquote>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/6\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1088\" caption_text=\"\" size=\"\" shape=\"circle\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][/bt_image][bt_header superheadline=\"MPYC\" headline=\"Vision\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][bt_column_inner width=\"5/6\"][bt_text]\r\n<blockquote>To actively promote the Monterey Peninsula Yacht Club as a prominent West Coast destination of choice for Corinthian spirit yacht racing, recreational boating, rowing and cruising.</blockquote>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/6\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1088\" caption_text=\"\" size=\"\" shape=\"circle\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][/bt_image][bt_header superheadline=\"MPYC\" headline=\"Commitment\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][bt_column_inner width=\"5/6\"][bt_text]\r\n<blockquote>To supporting a diverse membership that fosters inclusiveness, camaraderie, friendship, community involvement and leadership with the goal of advancing safe and sustainable maritime ecological practices.</blockquote>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][/bt_slider][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/3\" align=\"left\" vertical_align=\"btMiddleVertical\" border=\"no_border\" cell_padding=\"btDoublePadding\" animation=\"animate animate-fadein\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"#e5e5e5\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"MPYC\" headline=\"Clubhouse\" headline_size=\"large\" dash=\"bottom\" subheadline=\"Our clubhouse on Wharf 2 is home to the Kilpatrick Dining Room and Bear Flag Bar. We are proud to host a variety of events, seminars and our summer sailing camp.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_button text=\"READ MORE\" icon=\"no_icon\" url=\"\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"ExtraSmall\" width=\"Normal\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"2/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_slider height=\"auto\" auto_play=\"\" hide_arrows=\"\" hide_paging=\"btSliderHidePaging\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"81\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"82\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"83\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"84\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"85\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][/bt_slider][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"yes\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"7/12\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Club News\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Latest happenings and announcements at MPYC\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"5/12\"][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_latest_posts number=\"3\" category=\"\" format=\"horizontal\" post_type=\"blog\" show_excerpt=\"yes\" show_date=\"yes\" show_author=\"yes\" el_class=\"\" el_style=\"\"][/bt_latest_posts][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"1092\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"0.3\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Follow us\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Find out what\'s new at MPYC\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_icons][bt_icon icon=\"fa_f09a\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f099\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f16d\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_column][/bt_row][/bt_section]','Street view','\n ','inherit','closed','closed','','837-revision-v1','','','2021-04-08 04:20:45','2021-04-08 04:20:45','',837,'http://mpycdev.theomggroup.com/?p=1118',0,'revision','',0);
INSERT INTO `smrc_posts` VALUES (1119,1,'2021-04-08 04:22:48','2021-04-08 04:22:48','[bt_section layout=\"wide\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\"][bt_slider height=\"medium\" auto_play=\"5000\" hide_arrows=\"\" hide_paging=\"\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item image=\"1048\" el_class=\"\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1025\" el_class=\"\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1026\" el_class=\"btLightSkin\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1035\" el_class=\"btLightSkin\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1050\" el_class=\"btLightSkin\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1049\" el_class=\"btLightSkin\" el_style=\"\"][/bt_slider_item][/bt_slider][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"dark\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#b71234\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\"][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\r\n<h4 style=\"text-align: center;\"><em>founded 1953 in historic Monterey, California</em></h4>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSemiSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"2/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Our Club\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"A non-profit organization, MPYC is a yachting and social club comprised of adult and junior members with an interest in coming together to share in boating, sailing, yacht racing and social activities. Membership is not limited to boat owners.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/3\"][/bt_column][/bt_row][bt_row][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1068\" caption_text=\"View\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption=\"Double room\" show_titles=\"no\" caption_title=\"Room details\"][bt_header superheadline=\"CORINTHIAN SPIRIT\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Racing\" headline_size=\"medium\" dash=\"top\" subheadline=\"MPYC has built a reputation for top-notch competitive sailing. We host over 100 races per year and have hosted a variety of national championships.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1071\" caption_text=\"\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"PASSION\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Cruising\" headline_size=\"medium\" dash=\"top\" subheadline=\"Our members feature both power and sailboat owners. It\'s our great honor to live along California\'s Monterey Bay and enjoy the scenic vistas and marine wildlife.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1074\" caption_text=\"\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"DRIVE\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Rowing\" headline_size=\"medium\" dash=\"top\" subheadline=\"Our beginning, recreational and advanced rowers enjoy short and long distance local routes in addition to competition in local, West Coast and U.S. regattas. \" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1070\" caption_text=\"\" size=\"medium\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"COMMITMENT\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Youth Sailing\" headline_size=\"medium\" dash=\"top\" subheadline=\"Since its inception, Monterey Peninsula Yacht Club\'s has been proud to invest in the future of sailing and our youth to foster a better future for all us, and our club.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#e5e5e5\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"323\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"width: 60px; margin-top: -28px;\"][/bt_image][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"5/12\"][/bt_column][bt_column width=\"7/12\" align=\"right\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Activities\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Phasellus blandit a massa vitae congue. Nam ex massa, mattis ut sapien sit amet, consequat sodales risus. Sed interdum, ligula et lobortis faucibus, sem sem placerat augue, eget scelerisque turpis lorem et tellus.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][/bt_column][/bt_row][/bt_section][bt_section layout=\"wide\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"dark\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#e5e5e5\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"73\" caption_title=\"Crew\" caption_text=\"ON THE WATER\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"ON THE WATER\" headline=\"Crew\" headline_size=\"medium\" dash=\"top\" subheadline=\"Beach volleyball is ouy visitors favourite sport, highly enjoyable for everyone young or old. Just gather your team on the beach and find the opponents in a matter of minutes. And show what you can do, be a winner!\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][/bt_icons][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"74\" el_class=\"\" el_style=\"\"][bt_image image=\"74\" caption_title=\"Horseback riding\" caption_text=\"Enjoy the beach\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"On the Water\" headline=\"Paddleboarding\" headline_size=\"medium\" dash=\"top\" subheadline=\"How about a lazy afternoon with your friends on a hors, while the sun goes down? If you want to chill out, our horse riding team will teach you in a matter of minutes and help you wind down after a good day on the sun.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_ea13\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1e\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e05b\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"75\" el_class=\"\" el_style=\"\"][bt_image image=\"75\" caption_title=\"Dining\" caption_text=\"ON SHORE\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"On Shore\" headline=\"Dining\" headline_size=\"medium\" dash=\"top\" subheadline=\"If you are a big fan of water sports, then why not try the waterskiing or waterboarding? At hotel California you will find there\'s an amateur champoionship every year. Rated as the most fun activity by our visitors.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_e05b\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9a3\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9e5\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"76\" el_class=\"\" el_style=\"\"][bt_image image=\"76\" caption_title=\"Paragliding\" caption_text=\"Enjoy the sky\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"On Shore\" headline=\"Special Events\" headline_size=\"medium\" dash=\"top\" subheadline=\"Enjoy the thrill on the sky with our parasailing team and feel the California sun on your face. The team will help you get your adrenaline high and will be capuring your moments on a high-definition camera.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_ea2f\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"s7_e67b\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9f3\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_slider height=\"auto\" auto_play=\"\" hide_arrows=\"\" hide_paging=\"btSliderHidePaging\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/6\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1088\" caption_text=\"\" size=\"\" shape=\"circle\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][/bt_image][bt_header superheadline=\"MPYC\" headline=\"Mission\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][bt_column_inner width=\"5/6\"][bt_text]\r\n<blockquote>To connect our members and our diverse community to the boundless recreational opportunities and proper stewardship of the Monterey Bay and the Pacific Ocean.</blockquote>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/6\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1088\" caption_text=\"\" size=\"\" shape=\"circle\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][/bt_image][bt_header superheadline=\"MPYC\" headline=\"Vision\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][bt_column_inner width=\"5/6\"][bt_text]\r\n<blockquote>To actively promote the Monterey Peninsula Yacht Club as a prominent West Coast destination of choice for Corinthian spirit yacht racing, recreational boating, rowing and cruising.</blockquote>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/6\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1088\" caption_text=\"\" size=\"\" shape=\"circle\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][/bt_image][bt_header superheadline=\"MPYC\" headline=\"Commitment\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][bt_column_inner width=\"5/6\"][bt_text]\r\n<blockquote>To supporting a diverse membership that fosters inclusiveness, camaraderie, friendship, community involvement and leadership with the goal of advancing safe and sustainable maritime ecological practices.</blockquote>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][/bt_slider][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/3\" align=\"left\" vertical_align=\"btMiddleVertical\" border=\"no_border\" cell_padding=\"btDoublePadding\" animation=\"animate animate-fadein\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"#e5e5e5\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"MPYC\" headline=\"Clubhouse\" headline_size=\"large\" dash=\"bottom\" subheadline=\"Our clubhouse on Wharf 2 is home to the Kilpatrick Dining Room and Bear Flag Bar. We are proud to host a variety of events, seminars and our summer sailing camp.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_button text=\"READ MORE\" icon=\"no_icon\" url=\"\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"ExtraSmall\" width=\"Normal\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"2/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_slider height=\"auto\" auto_play=\"\" hide_arrows=\"\" hide_paging=\"btSliderHidePaging\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"81\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"82\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"83\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"84\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"85\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][/bt_slider][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"yes\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"7/12\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Club News\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Latest happenings and announcements at MPYC\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"5/12\"][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_latest_posts number=\"3\" category=\"\" format=\"horizontal\" post_type=\"blog\" show_excerpt=\"yes\" show_date=\"yes\" show_author=\"yes\" el_class=\"\" el_style=\"\"][/bt_latest_posts][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"1092\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"0.3\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Follow us\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Find out what\'s new at MPYC\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_icons][bt_icon icon=\"fa_f09a\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f099\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f16d\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_column][/bt_row][/bt_section]','Street view','\n ','inherit','closed','closed','','837-revision-v1','','','2021-04-08 04:22:48','2021-04-08 04:22:48','',837,'http://mpycdev.theomggroup.com/?p=1119',0,'revision','',0);
INSERT INTO `smrc_posts` VALUES (1120,1,'2021-04-08 04:23:35','2021-04-08 04:23:35','[bt_section layout=\"wide\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\"][bt_slider height=\"medium\" auto_play=\"5000\" hide_arrows=\"\" hide_paging=\"\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item image=\"1048\" el_class=\"\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1025\" el_class=\"\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1026\" el_class=\"btLightSkin\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1035\" el_class=\"btLightSkin\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1050\" el_class=\"btLightSkin\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1049\" el_class=\"btLightSkin\" el_style=\"\"][/bt_slider_item][/bt_slider][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"dark\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#b71234\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\"][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\r\n<h4 style=\"text-align: center;\"><em>founded 1953 in historic Monterey, California</em></h4>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSemiSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"2/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Our Club\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"A non-profit organization, MPYC is a yachting and social club comprised of adult and junior members with an interest in coming together to share in boating, sailing, yacht racing and social activities. Membership is not limited to boat owners.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/3\"][/bt_column][/bt_row][bt_row][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1068\" caption_text=\"View\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption=\"Double room\" show_titles=\"no\" caption_title=\"Room details\"][bt_header superheadline=\"CORINTHIAN SPIRIT\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Racing\" headline_size=\"medium\" dash=\"top\" subheadline=\"MPYC has built a reputation for top-notch competitive sailing. We host over 100 races per year and have hosted a variety of national championships.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1071\" caption_text=\"\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"PASSION\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Cruising\" headline_size=\"medium\" dash=\"top\" subheadline=\"Our members feature both power and sailboat owners. It\'s our great honor to live along California\'s Monterey Bay and enjoy the scenic vistas and marine wildlife.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1074\" caption_text=\"\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"DRIVE\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Rowing\" headline_size=\"medium\" dash=\"top\" subheadline=\"Our beginning, recreational and advanced rowers enjoy short and long distance local routes in addition to competition in local, West Coast and U.S. regattas. \" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1070\" caption_text=\"\" size=\"medium\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"COMMITMENT\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Youth Sailing\" headline_size=\"medium\" dash=\"top\" subheadline=\"Since its inception, Monterey Peninsula Yacht Club\'s has been proud to invest in the future of sailing and our youth to foster a better future for all us, and our club.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#e5e5e5\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"323\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"width: 60px; margin-top: -28px;\"][/bt_image][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"5/12\"][/bt_column][bt_column width=\"7/12\" align=\"right\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Activities\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Phasellus blandit a massa vitae congue. Nam ex massa, mattis ut sapien sit amet, consequat sodales risus. Sed interdum, ligula et lobortis faucibus, sem sem placerat augue, eget scelerisque turpis lorem et tellus.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][/bt_column][/bt_row][/bt_section][bt_section layout=\"wide\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"dark\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#e5e5e5\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1116\" caption_title=\"On the Water\" caption_text=\"Fun\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Fun\" headline=\"On the Water\" headline_size=\"medium\" dash=\"top\" subheadline=\"Beach volleyball is ouy visitors favourite sport, highly enjoyable for everyone young or old. Just gather your team on the beach and find the opponents in a matter of minutes. And show what you can do, be a winner!\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"74\" el_class=\"\" el_style=\"\"][bt_image image=\"1115\" caption_title=\"Special Events\" caption_text=\"Annual\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Annual\" headline=\"Special Events\" headline_size=\"medium\" dash=\"top\" subheadline=\"How about a lazy afternoon with your friends on a hors, while the sun goes down? If you want to chill out, our horse riding team will teach you in a matter of minutes and help you wind down after a good day on the sun.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"75\" el_class=\"\" el_style=\"\"][bt_image image=\"1114\" caption_title=\"Dining\" caption_text=\"On Shore\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"On Shore\" headline=\"Dining\" headline_size=\"medium\" dash=\"top\" subheadline=\"If you are a big fan of water sports, then why not try the waterskiing or waterboarding? At hotel California you will find there\'s an amateur champoionship every year. Rated as the most fun activity by our visitors.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"76\" el_class=\"\" el_style=\"\"][bt_image image=\"1117\" caption_title=\"Education\" caption_text=\"Safety\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Safety\" headline=\"Education\" headline_size=\"medium\" dash=\"top\" subheadline=\"Enjoy the thrill on the sky with our parasailing team and feel the California sun on your face. The team will help you get your adrenaline high and will be capuring your moments on a high-definition camera.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_image][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_slider height=\"auto\" auto_play=\"\" hide_arrows=\"\" hide_paging=\"btSliderHidePaging\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/6\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1088\" caption_text=\"\" size=\"\" shape=\"circle\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][/bt_image][bt_header superheadline=\"MPYC\" headline=\"Mission\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][bt_column_inner width=\"5/6\"][bt_text]\r\n<blockquote>To connect our members and our diverse community to the boundless recreational opportunities and proper stewardship of the Monterey Bay and the Pacific Ocean.</blockquote>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/6\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1088\" caption_text=\"\" size=\"\" shape=\"circle\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][/bt_image][bt_header superheadline=\"MPYC\" headline=\"Vision\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][bt_column_inner width=\"5/6\"][bt_text]\r\n<blockquote>To actively promote the Monterey Peninsula Yacht Club as a prominent West Coast destination of choice for Corinthian spirit yacht racing, recreational boating, rowing and cruising.</blockquote>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/6\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1088\" caption_text=\"\" size=\"\" shape=\"circle\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][/bt_image][bt_header superheadline=\"MPYC\" headline=\"Commitment\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][bt_column_inner width=\"5/6\"][bt_text]\r\n<blockquote>To supporting a diverse membership that fosters inclusiveness, camaraderie, friendship, community involvement and leadership with the goal of advancing safe and sustainable maritime ecological practices.</blockquote>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][/bt_slider][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/3\" align=\"left\" vertical_align=\"btMiddleVertical\" border=\"no_border\" cell_padding=\"btDoublePadding\" animation=\"animate animate-fadein\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"#e5e5e5\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"MPYC\" headline=\"Clubhouse\" headline_size=\"large\" dash=\"bottom\" subheadline=\"Our clubhouse on Wharf 2 is home to the Kilpatrick Dining Room and Bear Flag Bar. We are proud to host a variety of events, seminars and our summer sailing camp.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_button text=\"READ MORE\" icon=\"no_icon\" url=\"\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"ExtraSmall\" width=\"Normal\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"2/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_slider height=\"auto\" auto_play=\"\" hide_arrows=\"\" hide_paging=\"btSliderHidePaging\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"81\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"82\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"83\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"84\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"85\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][/bt_slider][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"yes\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"7/12\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Club News\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Latest happenings and announcements at MPYC\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"5/12\"][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_latest_posts number=\"3\" category=\"\" format=\"horizontal\" post_type=\"blog\" show_excerpt=\"yes\" show_date=\"yes\" show_author=\"yes\" el_class=\"\" el_style=\"\"][/bt_latest_posts][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"1092\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"0.3\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Follow us\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Find out what\'s new at MPYC\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_icons][bt_icon icon=\"fa_f09a\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f099\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f16d\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_column][/bt_row][/bt_section]','Street view','\n ','inherit','closed','closed','','837-revision-v1','','','2021-04-08 04:23:35','2021-04-08 04:23:35','',837,'http://mpycdev.theomggroup.com/?p=1120',0,'revision','',0);
INSERT INTO `smrc_posts` VALUES (1121,1,'2021-04-08 04:23:58','2021-04-08 04:23:58','[bt_section layout=\"wide\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\"][bt_slider height=\"medium\" auto_play=\"5000\" hide_arrows=\"\" hide_paging=\"\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item image=\"1048\" el_class=\"\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1025\" el_class=\"\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1026\" el_class=\"btLightSkin\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1035\" el_class=\"btLightSkin\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1050\" el_class=\"btLightSkin\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1049\" el_class=\"btLightSkin\" el_style=\"\"][/bt_slider_item][/bt_slider][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"dark\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#b71234\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\"][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\n<h4 style=\"text-align: center;\"><em>founded 1953 in historic Monterey, California</em></h4>\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSemiSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"2/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Our Club\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"A non-profit organization, MPYC is a yachting and social club comprised of adult and junior members with an interest in coming together to share in boating, sailing, yacht racing and social activities. Membership is not limited to boat owners.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/3\"][/bt_column][/bt_row][bt_row][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1068\" caption_text=\"View\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption=\"Double room\" show_titles=\"no\" caption_title=\"Room details\"][bt_header superheadline=\"CORINTHIAN SPIRIT\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Racing\" headline_size=\"medium\" dash=\"top\" subheadline=\"MPYC has built a reputation for top-notch competitive sailing. We host over 100 races per year and have hosted a variety of national championships.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1071\" caption_text=\"\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"PASSION\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Cruising\" headline_size=\"medium\" dash=\"top\" subheadline=\"Our members feature both power and sailboat owners. It\'s our great honor to live along California\'s Monterey Bay and enjoy the scenic vistas and marine wildlife.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1074\" caption_text=\"\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"DRIVE\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Rowing\" headline_size=\"medium\" dash=\"top\" subheadline=\"Our beginning, recreational and advanced rowers enjoy short and long distance local routes in addition to competition in local, West Coast and U.S. regattas. \" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1070\" caption_text=\"\" size=\"medium\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"COMMITMENT\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Youth Sailing\" headline_size=\"medium\" dash=\"top\" subheadline=\"Since its inception, Monterey Peninsula Yacht Club\'s has been proud to invest in the future of sailing and our youth to foster a better future for all us, and our club.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#e5e5e5\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"323\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"width: 60px; margin-top: -28px;\"][/bt_image][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"5/12\"][/bt_column][bt_column width=\"7/12\" align=\"right\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Activities\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Phasellus blandit a massa vitae congue. Nam ex massa, mattis ut sapien sit amet, consequat sodales risus. Sed interdum, ligula et lobortis faucibus, sem sem placerat augue, eget scelerisque turpis lorem et tellus.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][/bt_column][/bt_row][/bt_section][bt_section layout=\"wide\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"dark\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#e5e5e5\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"73\" caption_title=\"Crew\" caption_text=\"ON THE WATER\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"ON THE WATER\" headline=\"Crew\" headline_size=\"medium\" dash=\"top\" subheadline=\"Beach volleyball is ouy visitors favourite sport, highly enjoyable for everyone young or old. Just gather your team on the beach and find the opponents in a matter of minutes. And show what you can do, be a winner!\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][/bt_icons][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"74\" el_class=\"\" el_style=\"\"][bt_image image=\"74\" caption_title=\"Horseback riding\" caption_text=\"Enjoy the beach\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"On the Water\" headline=\"Paddleboarding\" headline_size=\"medium\" dash=\"top\" subheadline=\"How about a lazy afternoon with your friends on a hors, while the sun goes down? If you want to chill out, our horse riding team will teach you in a matter of minutes and help you wind down after a good day on the sun.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_ea13\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1e\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e05b\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"75\" el_class=\"\" el_style=\"\"][bt_image image=\"75\" caption_title=\"Dining\" caption_text=\"ON SHORE\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"On Shore\" headline=\"Dining\" headline_size=\"medium\" dash=\"top\" subheadline=\"If you are a big fan of water sports, then why not try the waterskiing or waterboarding? At hotel California you will find there\'s an amateur champoionship every year. Rated as the most fun activity by our visitors.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_e05b\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9a3\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9e5\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"76\" el_class=\"\" el_style=\"\"][bt_image image=\"76\" caption_title=\"Paragliding\" caption_text=\"Enjoy the sky\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"On Shore\" headline=\"Special Events\" headline_size=\"medium\" dash=\"top\" subheadline=\"Enjoy the thrill on the sky with our parasailing team and feel the California sun on your face. The team will help you get your adrenaline high and will be capuring your moments on a high-definition camera.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_icons][bt_icon icon=\"cs_ea2f\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"s7_e67b\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9f3\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_slider height=\"auto\" auto_play=\"\" hide_arrows=\"\" hide_paging=\"btSliderHidePaging\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/6\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1088\" caption_text=\"\" size=\"\" shape=\"circle\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][/bt_image][bt_header superheadline=\"MPYC\" headline=\"Mission\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][bt_column_inner width=\"5/6\"][bt_text]\n<blockquote>To connect our members and our diverse community to the boundless recreational opportunities and proper stewardship of the Monterey Bay and the Pacific Ocean.</blockquote>\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/6\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1088\" caption_text=\"\" size=\"\" shape=\"circle\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][/bt_image][bt_header superheadline=\"MPYC\" headline=\"Vision\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][bt_column_inner width=\"5/6\"][bt_text]\n<blockquote>To actively promote the Monterey Peninsula Yacht Club as a prominent West Coast destination of choice for Corinthian spirit yacht racing, recreational boating, rowing and cruising.</blockquote>\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/6\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1088\" caption_text=\"\" size=\"\" shape=\"circle\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][/bt_image][bt_header superheadline=\"MPYC\" headline=\"Commitment\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][bt_column_inner width=\"5/6\"][bt_text]\n<blockquote>To supporting a diverse membership that fosters inclusiveness, camaraderie, friendship, community involvement and leadership with the goal of advancing safe and sustainable maritime ecological practices.</blockquote>\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][/bt_slider][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/3\" align=\"left\" vertical_align=\"btMiddleVertical\" border=\"no_border\" cell_padding=\"btDoublePadding\" animation=\"animate animate-fadein\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"#e5e5e5\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"MPYC\" headline=\"Clubhouse\" headline_size=\"large\" dash=\"bottom\" subheadline=\"Our clubhouse on Wharf 2 is home to the Kilpatrick Dining Room and Bear Flag Bar. We are proud to host a variety of events, seminars and our summer sailing camp.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_button text=\"READ MORE\" icon=\"no_icon\" url=\"\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"ExtraSmall\" width=\"Normal\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"2/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_slider height=\"auto\" auto_play=\"\" hide_arrows=\"\" hide_paging=\"btSliderHidePaging\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"81\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"82\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"83\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"84\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"85\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][/bt_slider][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"yes\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"7/12\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Club News\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Latest happenings and announcements at MPYC\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"5/12\"][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_latest_posts number=\"3\" category=\"\" format=\"horizontal\" post_type=\"blog\" show_excerpt=\"yes\" show_date=\"yes\" show_author=\"yes\" el_class=\"\" el_style=\"\"][/bt_latest_posts][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"1092\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"0.3\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Follow us\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Find out what\'s new at MPYC\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_icons][bt_icon icon=\"fa_f09a\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f099\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f16d\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_column][/bt_row][/bt_section]','MPYC Home','','inherit','closed','closed','','837-revision-v1','','','2021-04-08 04:23:58','2021-04-08 04:23:58','',837,'http://mpycdev.theomggroup.com/?p=1121',0,'revision','',0);
INSERT INTO `smrc_posts` VALUES (1122,1,'2021-04-08 04:29:34','2021-04-08 04:29:34','[bt_section layout=\"wide\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\"][bt_slider height=\"medium\" auto_play=\"5000\" hide_arrows=\"\" hide_paging=\"\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item image=\"1048\" el_class=\"\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1025\" el_class=\"\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1026\" el_class=\"btLightSkin\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1035\" el_class=\"btLightSkin\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1050\" el_class=\"btLightSkin\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1049\" el_class=\"btLightSkin\" el_style=\"\"][/bt_slider_item][/bt_slider][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"dark\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#b71234\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\"][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\r\n<h4 style=\"text-align: center;\"><em>founded 1953 in historic Monterey, California</em></h4>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSemiSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"2/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Our Club\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"A non-profit organization, MPYC is a yachting and social club comprised of adult and junior members with an interest in coming together to share in boating, sailing, yacht racing and social activities. Membership is not limited to boat owners.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/3\"][/bt_column][/bt_row][bt_row][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1068\" caption_text=\"View\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption=\"Double room\" show_titles=\"no\" caption_title=\"Room details\"][bt_header superheadline=\"CORINTHIAN SPIRIT\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Racing\" headline_size=\"medium\" dash=\"top\" subheadline=\"MPYC has built a reputation for top-notch competitive sailing. We host over 100 races per year and have hosted a variety of national championships.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1071\" caption_text=\"\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"PASSION\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Cruising\" headline_size=\"medium\" dash=\"top\" subheadline=\"Our members feature both power and sailboat owners. It\'s our great honor to live along California\'s Monterey Bay and enjoy the scenic vistas and marine wildlife.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1074\" caption_text=\"\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"DRIVE\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Rowing\" headline_size=\"medium\" dash=\"top\" subheadline=\"Our beginning, recreational and advanced rowers enjoy short and long distance local routes in addition to competition in local, West Coast and U.S. regattas. \" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1070\" caption_text=\"\" size=\"medium\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"COMMITMENT\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Youth Sailing\" headline_size=\"medium\" dash=\"top\" subheadline=\"Since its inception, Monterey Peninsula Yacht Club\'s has been proud to invest in the future of sailing and our youth to foster a better future for all us, and our club.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#e5e5e5\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"323\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"width: 60px; margin-top: -28px;\"][/bt_image][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"5/12\"][/bt_column][bt_column width=\"7/12\" align=\"right\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Activities\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Phasellus blandit a massa vitae congue. Nam ex massa, mattis ut sapien sit amet, consequat sodales risus. Sed interdum, ligula et lobortis faucibus, sem sem placerat augue, eget scelerisque turpis lorem et tellus.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][/bt_column][/bt_row][/bt_section][bt_section layout=\"wide\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"dark\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#e5e5e5\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1116\" caption_title=\"On the Water\" caption_text=\"Fun\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Fun\" headline=\"On the Water\" headline_size=\"medium\" dash=\"top\" subheadline=\"Beach volleyball is ouy visitors favourite sport, highly enjoyable for everyone young or old. Just gather your team on the beach and find the opponents in a matter of minutes. And show what you can do, be a winner!\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1115\" caption_title=\"Events\" caption_text=\"Annual\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Annual\" headline=\"Events\" headline_size=\"medium\" dash=\"top\" subheadline=\"How about a lazy afternoon with your friends on a hors, while the sun goes down? If you want to chill out, our horse riding team will teach you in a matter of minutes and help you wind down after a good day on the sun.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"75\" caption_title=\"Dining\" caption_text=\"Clubhouse\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"On Shore\" headline=\"Dining\" headline_size=\"medium\" dash=\"top\" subheadline=\"If you are a big fan of water sports, then why not try the waterskiing or waterboarding? At hotel California you will find there\'s an amateur champoionship every year. Rated as the most fun activity by our visitors.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"76\" el_class=\"\" el_style=\"\"][bt_image image=\"1117\" caption_title=\"Education\" caption_text=\"Safety\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"On Shore\" headline=\"Special Events\" headline_size=\"medium\" dash=\"top\" subheadline=\"Enjoy the thrill on the sky with our parasailing team and feel the California sun on your face. The team will help you get your adrenaline high and will be capuring your moments on a high-definition camera.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_image][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_slider height=\"auto\" auto_play=\"\" hide_arrows=\"\" hide_paging=\"btSliderHidePaging\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/6\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1088\" caption_text=\"\" size=\"\" shape=\"circle\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][/bt_image][bt_header superheadline=\"MPYC\" headline=\"Mission\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][bt_column_inner width=\"5/6\"][bt_text]\r\n<blockquote>To connect our members and our diverse community to the boundless recreational opportunities and proper stewardship of the Monterey Bay and the Pacific Ocean.</blockquote>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/6\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1088\" caption_text=\"\" size=\"\" shape=\"circle\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][/bt_image][bt_header superheadline=\"MPYC\" headline=\"Vision\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][bt_column_inner width=\"5/6\"][bt_text]\r\n<blockquote>To actively promote the Monterey Peninsula Yacht Club as a prominent West Coast destination of choice for Corinthian spirit yacht racing, recreational boating, rowing and cruising.</blockquote>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/6\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1088\" caption_text=\"\" size=\"\" shape=\"circle\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][/bt_image][bt_header superheadline=\"MPYC\" headline=\"Commitment\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][bt_column_inner width=\"5/6\"][bt_text]\r\n<blockquote>To supporting a diverse membership that fosters inclusiveness, camaraderie, friendship, community involvement and leadership with the goal of advancing safe and sustainable maritime ecological practices.</blockquote>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][/bt_slider][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/3\" align=\"left\" vertical_align=\"btMiddleVertical\" border=\"no_border\" cell_padding=\"btDoublePadding\" animation=\"animate animate-fadein\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"#e5e5e5\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"MPYC\" headline=\"Clubhouse\" headline_size=\"large\" dash=\"bottom\" subheadline=\"Our clubhouse on Wharf 2 is home to the Kilpatrick Dining Room and Bear Flag Bar. We are proud to host a variety of events, seminars and our summer sailing camp.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_button text=\"READ MORE\" icon=\"no_icon\" url=\"\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"ExtraSmall\" width=\"Normal\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"2/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_slider height=\"auto\" auto_play=\"\" hide_arrows=\"\" hide_paging=\"btSliderHidePaging\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"81\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"82\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"83\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"84\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"85\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][/bt_slider][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"yes\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"7/12\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Club News\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Latest happenings and announcements at MPYC\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"5/12\"][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_latest_posts number=\"3\" category=\"\" format=\"horizontal\" post_type=\"blog\" show_excerpt=\"yes\" show_date=\"yes\" show_author=\"yes\" el_class=\"\" el_style=\"\"][/bt_latest_posts][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"1092\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"0.3\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Follow us\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Find out what\'s new at MPYC\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_icons][bt_icon icon=\"fa_f09a\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f099\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f16d\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_column][/bt_row][/bt_section]','MPYC Home','','inherit','closed','closed','','837-revision-v1','','','2021-04-08 04:29:34','2021-04-08 04:29:34','',837,'http://mpycdev.theomggroup.com/?p=1122',0,'revision','',0);
INSERT INTO `smrc_posts` VALUES (1123,1,'2021-04-08 04:37:52','2021-04-08 04:37:52','[bt_section layout=\"wide\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\"][bt_slider height=\"medium\" auto_play=\"5000\" hide_arrows=\"\" hide_paging=\"\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item image=\"1048\" el_class=\"\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1025\" el_class=\"\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1026\" el_class=\"btLightSkin\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1035\" el_class=\"btLightSkin\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1050\" el_class=\"btLightSkin\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1049\" el_class=\"btLightSkin\" el_style=\"\"][/bt_slider_item][/bt_slider][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"dark\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#b71234\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\"][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\r\n<h4 style=\"text-align: center;\"><em>founded 1953 in historic Monterey, California</em></h4>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSemiSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"2/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Our Club\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"A non-profit organization, MPYC is a yachting and social club comprised of adult and junior members with an interest in coming together to share in boating, sailing, yacht racing and social activities. Membership is not limited to boat owners.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/3\"][/bt_column][/bt_row][bt_row][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1068\" caption_text=\"View\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption=\"Double room\" show_titles=\"no\" caption_title=\"Room details\"][bt_header superheadline=\"CORINTHIAN SPIRIT\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Racing\" headline_size=\"medium\" dash=\"top\" subheadline=\"MPYC has built a reputation for top-notch competitive sailing. We host over 100 races per year and have hosted a variety of national championships.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1071\" caption_text=\"\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"PASSION\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Cruising\" headline_size=\"medium\" dash=\"top\" subheadline=\"Our members feature both power and sailboat owners. It\'s our great honor to live along California\'s Monterey Bay and enjoy the scenic vistas and marine wildlife.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1074\" caption_text=\"\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"DRIVE\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Rowing\" headline_size=\"medium\" dash=\"top\" subheadline=\"Our beginning, recreational and advanced rowers enjoy short and long distance local routes in addition to competition in local, West Coast and U.S. regattas. \" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1070\" caption_text=\"\" size=\"medium\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"COMMITMENT\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Youth Sailing\" headline_size=\"medium\" dash=\"top\" subheadline=\"Since its inception, Monterey Peninsula Yacht Club\'s has been proud to invest in the future of sailing and our youth to foster a better future for all us, and our club.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#e5e5e5\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"323\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"width: 60px; margin-top: -28px;\"][/bt_image][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"5/12\"][/bt_column][bt_column width=\"7/12\" align=\"right\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Activities\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Phasellus blandit a massa vitae congue. Nam ex massa, mattis ut sapien sit amet, consequat sodales risus. Sed interdum, ligula et lobortis faucibus, sem sem placerat augue, eget scelerisque turpis lorem et tellus.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][/bt_column][/bt_row][/bt_section][bt_section layout=\"wide\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"dark\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#e5e5e5\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1116\" caption_title=\"On the Water\" caption_text=\"Fun\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Fun\" headline=\"On the Water\" headline_size=\"medium\" dash=\"top\" subheadline=\"Whether you\'re guest crew or a club member, from sailing, boating or paddleboarding, there\'s always fun to be had on the water.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1115\" caption_title=\"Events\" caption_text=\"Annual\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Club\" headline=\"Events\" headline_size=\"medium\" dash=\"top\" subheadline=\"From holiday celebrations, special events and annual gatherings, there\'s always something happening at the club.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1114\" caption_title=\"Dining\" caption_text=\"Clubhouse\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Club\" headline=\"Dining\" headline_size=\"medium\" dash=\"top\" subheadline=\"From fine dining in the Kirkpatrick Dining Room or enjoying a burger on the Bear Flag Bar deck overlooking Monterey harbor, there\'s something for everyone.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1117\" caption_title=\"Education\" caption_text=\"Safety\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Safety\" headline=\"Education\" headline_size=\"medium\" dash=\"top\" subheadline=\"Committed to safe and proper use of the Monterey Bay National Marine Sanctuary, MPYC is active in a variety of safety and ecological awareness events.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_image][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_slider height=\"auto\" auto_play=\"\" hide_arrows=\"\" hide_paging=\"btSliderHidePaging\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/6\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1088\" caption_text=\"\" size=\"\" shape=\"circle\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][/bt_image][bt_header superheadline=\"MPYC\" headline=\"Mission\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][bt_column_inner width=\"5/6\"][bt_text]\r\n<blockquote>To connect our members and our diverse community to the boundless recreational opportunities and proper stewardship of the Monterey Bay and the Pacific Ocean.</blockquote>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/6\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1088\" caption_text=\"\" size=\"\" shape=\"circle\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][/bt_image][bt_header superheadline=\"MPYC\" headline=\"Vision\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][bt_column_inner width=\"5/6\"][bt_text]\r\n<blockquote>To actively promote the Monterey Peninsula Yacht Club as a prominent West Coast destination of choice for Corinthian spirit yacht racing, recreational boating, rowing and cruising.</blockquote>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/6\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1088\" caption_text=\"\" size=\"\" shape=\"circle\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][/bt_image][bt_header superheadline=\"MPYC\" headline=\"Commitment\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][bt_column_inner width=\"5/6\"][bt_text]\r\n<blockquote>To supporting a diverse membership that fosters inclusiveness, camaraderie, friendship, community involvement and leadership with the goal of advancing safe and sustainable maritime ecological practices.</blockquote>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][/bt_slider][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/3\" align=\"left\" vertical_align=\"btMiddleVertical\" border=\"no_border\" cell_padding=\"btDoublePadding\" animation=\"animate animate-fadein\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"#e5e5e5\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"MPYC\" headline=\"Clubhouse\" headline_size=\"large\" dash=\"bottom\" subheadline=\"Our clubhouse on Wharf 2 is home to the Kilpatrick Dining Room and Bear Flag Bar. We are proud to host a variety of events, seminars and our summer sailing camp.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_button text=\"READ MORE\" icon=\"no_icon\" url=\"\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"ExtraSmall\" width=\"Normal\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"2/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_slider height=\"auto\" auto_play=\"\" hide_arrows=\"\" hide_paging=\"btSliderHidePaging\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"81\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"82\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"83\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"84\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"85\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][/bt_slider][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"yes\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"7/12\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Club News\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Latest happenings and announcements at MPYC\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"5/12\"][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_latest_posts number=\"3\" category=\"\" format=\"horizontal\" post_type=\"blog\" show_excerpt=\"yes\" show_date=\"yes\" show_author=\"yes\" el_class=\"\" el_style=\"\"][/bt_latest_posts][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"1092\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"0.3\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Follow us\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Find out what\'s new at MPYC\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_icons][bt_icon icon=\"fa_f09a\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f099\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f16d\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_column][/bt_row][/bt_section]','MPYC Home','','inherit','closed','closed','','837-revision-v1','','','2021-04-08 04:37:52','2021-04-08 04:37:52','',837,'http://mpycdev.theomggroup.com/?p=1123',0,'revision','',0);
INSERT INTO `smrc_posts` VALUES (1124,1,'2021-04-08 04:40:48','2021-04-08 04:40:48','[bt_section layout=\"wide\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\"][bt_slider height=\"medium\" auto_play=\"5000\" hide_arrows=\"\" hide_paging=\"\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item image=\"1048\" el_class=\"\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1025\" el_class=\"\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1026\" el_class=\"btLightSkin\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1035\" el_class=\"btLightSkin\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1050\" el_class=\"btLightSkin\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1049\" el_class=\"btLightSkin\" el_style=\"\"][/bt_slider_item][/bt_slider][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"dark\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#b71234\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\"][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\r\n<h4 style=\"text-align: center;\"><em>founded 1953 in historic Monterey, California</em></h4>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSemiSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"2/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Our Club\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"A non-profit organization, MPYC is a yachting and social club comprised of adult and junior members with an interest in coming together to share in boating, sailing, yacht racing and social activities. Membership is not limited to boat owners.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/3\"][/bt_column][/bt_row][bt_row][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1068\" caption_text=\"View\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption=\"Double room\" show_titles=\"no\" caption_title=\"Room details\"][bt_header superheadline=\"CORINTHIAN SPIRIT\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Racing\" headline_size=\"medium\" dash=\"top\" subheadline=\"MPYC has built a reputation for top-notch competitive sailing. We host over 100 races per year and have hosted a variety of national championships.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1071\" caption_text=\"\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"PASSION\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Cruising\" headline_size=\"medium\" dash=\"top\" subheadline=\"Our members feature both power and sailboat owners. It\'s our great honor to live along California\'s Monterey Bay and enjoy the scenic vistas and marine wildlife.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1074\" caption_text=\"\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"DRIVE\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Rowing\" headline_size=\"medium\" dash=\"top\" subheadline=\"Our beginning, recreational and advanced rowers enjoy short and long distance local routes in addition to competition in local, West Coast and U.S. regattas. \" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1070\" caption_text=\"\" size=\"medium\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"COMMITMENT\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Youth Sailing\" headline_size=\"medium\" dash=\"top\" subheadline=\"Since its inception, Monterey Peninsula Yacht Club\'s has been proud to invest in the future of sailing and our youth to foster a better future for all us, and our club.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#e5e5e5\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"323\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"width: 60px; margin-top: -28px;\"][/bt_image][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"5/12\"][/bt_column][bt_column width=\"7/12\" align=\"right\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Activities\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Phasellus blandit a massa vitae congue. Nam ex massa, mattis ut sapien sit amet, consequat sodales risus. Sed interdum, ligula et lobortis faucibus, sem sem placerat augue, eget scelerisque turpis lorem et tellus.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][/bt_column][/bt_row][/bt_section][bt_section layout=\"wide\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"dark\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#e5e5e5\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1116\" caption_title=\"On the Water\" caption_text=\"Fun\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Fun\" headline=\"On the Water\" headline_size=\"medium\" dash=\"top\" subheadline=\"Whether you\'re guest crew or a club member, from sailing, boating or paddle boarding, there\'s fun to be had on the water in the harbor on on the Bay.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1115\" caption_title=\"Events\" caption_text=\"Annual\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Club\" headline=\"Events\" headline_size=\"medium\" dash=\"top\" subheadline=\"From holiday celebrations, special events and annual gatherings, there\'s always something happening at the club.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1114\" caption_title=\"Dining\" caption_text=\"Clubhouse\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Club\" headline=\"Dining\" headline_size=\"medium\" dash=\"top\" subheadline=\"From fine dining in the Kirkpatrick Dining Room or enjoying a burger on the Bear Flag Bar deck overlooking Monterey harbor, no one goes hungry at MPYC.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1117\" caption_title=\"Education\" caption_text=\"Safety\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Safety\" headline=\"Education\" headline_size=\"medium\" dash=\"top\" subheadline=\"Committed to safe and proper use of the Monterey Bay National Marine Sanctuary, MPYC is active in a variety of safety and ecological awareness events.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_image][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_slider height=\"auto\" auto_play=\"\" hide_arrows=\"\" hide_paging=\"btSliderHidePaging\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/6\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1088\" caption_text=\"\" size=\"\" shape=\"circle\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][/bt_image][bt_header superheadline=\"MPYC\" headline=\"Mission\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][bt_column_inner width=\"5/6\"][bt_text]\r\n<blockquote>To connect our members and our diverse community to the boundless recreational opportunities and proper stewardship of the Monterey Bay and the Pacific Ocean.</blockquote>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/6\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1088\" caption_text=\"\" size=\"\" shape=\"circle\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][/bt_image][bt_header superheadline=\"MPYC\" headline=\"Vision\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][bt_column_inner width=\"5/6\"][bt_text]\r\n<blockquote>To actively promote the Monterey Peninsula Yacht Club as a prominent West Coast destination of choice for Corinthian spirit yacht racing, recreational boating, rowing and cruising.</blockquote>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/6\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1088\" caption_text=\"\" size=\"\" shape=\"circle\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][/bt_image][bt_header superheadline=\"MPYC\" headline=\"Commitment\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][bt_column_inner width=\"5/6\"][bt_text]\r\n<blockquote>To supporting a diverse membership that fosters inclusiveness, camaraderie, friendship, community involvement and leadership with the goal of advancing safe and sustainable maritime ecological practices.</blockquote>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][/bt_slider][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/3\" align=\"left\" vertical_align=\"btMiddleVertical\" border=\"no_border\" cell_padding=\"btDoublePadding\" animation=\"animate animate-fadein\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"#e5e5e5\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"MPYC\" headline=\"Clubhouse\" headline_size=\"large\" dash=\"bottom\" subheadline=\"Our clubhouse on Wharf 2 is home to the Kilpatrick Dining Room and Bear Flag Bar. We are proud to host a variety of events, seminars and our summer sailing camp.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_button text=\"READ MORE\" icon=\"no_icon\" url=\"\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"ExtraSmall\" width=\"Normal\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"2/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_slider height=\"auto\" auto_play=\"\" hide_arrows=\"\" hide_paging=\"btSliderHidePaging\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"81\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"82\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"83\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"84\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"85\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][/bt_slider][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"yes\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"7/12\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Club News\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Latest happenings and announcements at MPYC\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"5/12\"][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_latest_posts number=\"3\" category=\"\" format=\"horizontal\" post_type=\"blog\" show_excerpt=\"yes\" show_date=\"yes\" show_author=\"yes\" el_class=\"\" el_style=\"\"][/bt_latest_posts][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"1092\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"0.3\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Follow us\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Find out what\'s new at MPYC\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_icons][bt_icon icon=\"fa_f09a\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f099\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f16d\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_column][/bt_row][/bt_section]','MPYC Home','','inherit','closed','closed','','837-revision-v1','','','2021-04-08 04:40:48','2021-04-08 04:40:48','',837,'http://mpycdev.theomggroup.com/?p=1124',0,'revision','',0);
INSERT INTO `smrc_posts` VALUES (1125,1,'2021-04-08 04:43:50','2021-04-08 04:43:50','[bt_section layout=\"wide\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\"][bt_slider height=\"medium\" auto_play=\"5000\" hide_arrows=\"\" hide_paging=\"\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item image=\"1048\" el_class=\"\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1025\" el_class=\"\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1026\" el_class=\"btLightSkin\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1035\" el_class=\"btLightSkin\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1050\" el_class=\"btLightSkin\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1049\" el_class=\"btLightSkin\" el_style=\"\"][/bt_slider_item][/bt_slider][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"dark\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#b71234\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\"][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\r\n<h4 style=\"text-align: center;\"><em>founded 1953 in historic Monterey, California</em></h4>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSemiSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"2/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Our Club\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"A non-profit organization, MPYC is a yachting and social club comprised of adult and junior members with an interest in coming together to share in boating, sailing, yacht racing and social activities. Membership is not limited to boat owners.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/3\"][/bt_column][/bt_row][bt_row][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1068\" caption_text=\"View\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption=\"Double room\" show_titles=\"no\" caption_title=\"Room details\"][bt_header superheadline=\"CORINTHIAN SPIRIT\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Racing\" headline_size=\"medium\" dash=\"top\" subheadline=\"MPYC has built a reputation for top-notch competitive sailing. We host over 100 races per year and have hosted a variety of national championships.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1071\" caption_text=\"\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"PASSION\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Cruising\" headline_size=\"medium\" dash=\"top\" subheadline=\"Our members feature both power and sailboat owners. It\'s our great honor to live along California\'s Monterey Bay and enjoy the scenic vistas and marine wildlife.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1074\" caption_text=\"\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"DRIVE\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Rowing\" headline_size=\"medium\" dash=\"top\" subheadline=\"Our beginning, recreational and advanced rowers enjoy short and long distance local routes in addition to competition in local, West Coast and U.S. regattas. \" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1070\" caption_text=\"\" size=\"medium\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"COMMITMENT\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Youth Sailing\" headline_size=\"medium\" dash=\"top\" subheadline=\"Since its inception, Monterey Peninsula Yacht Club\'s has been proud to invest in the future of sailing and our youth to foster a better future for all us, and our club.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#e5e5e5\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"323\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"width: 60px; margin-top: -28px;\"][/bt_image][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"5/12\"][/bt_column][bt_column width=\"7/12\" align=\"right\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Activities\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Phasellus blandit a massa vitae congue. Nam ex massa, mattis ut sapien sit amet, consequat sodales risus. Sed interdum, ligula et lobortis faucibus, sem sem placerat augue, eget scelerisque turpis lorem et tellus.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][/bt_column][/bt_row][/bt_section][bt_section layout=\"wide\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"dark\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#e5e5e5\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1116\" caption_title=\"On the Water\" caption_text=\"Fun\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Fun\" headline=\"On the Water\" headline_size=\"medium\" dash=\"top\" subheadline=\"Whether you\'re guest crew or a club member, from sailing, boating or paddle boarding, there\'s fun to be had on the water in the harbor on on the Bay.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1115\" caption_title=\"Celebrations\" caption_text=\"Club\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Club\" headline=\"Celebrations\" headline_size=\"medium\" dash=\"top\" subheadline=\"From holiday celebrations, special events and annual gatherings, there\'s always something happening at the club.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1114\" caption_title=\"Dining\" caption_text=\"Clubhouse\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Club\" headline=\"Dining\" headline_size=\"medium\" dash=\"top\" subheadline=\"From fine dining in the Kirkpatrick Dining Room or enjoying a burger on the Bear Flag Bar deck overlooking Monterey harbor, no one goes hungry at MPYC.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1117\" caption_title=\"Education\" caption_text=\"Safety\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Safety\" headline=\"Education\" headline_size=\"medium\" dash=\"top\" subheadline=\"Committed to safe and proper use of the Monterey Bay National Marine Sanctuary, MPYC is active in a variety of safety and ecological awareness events.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_image][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_slider height=\"auto\" auto_play=\"\" hide_arrows=\"\" hide_paging=\"btSliderHidePaging\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/6\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1088\" caption_text=\"\" size=\"\" shape=\"circle\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][/bt_image][bt_header superheadline=\"MPYC\" headline=\"Mission\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][bt_column_inner width=\"5/6\"][bt_text]\r\n<blockquote>To connect our members and our diverse community to the boundless recreational opportunities and proper stewardship of the Monterey Bay and the Pacific Ocean.</blockquote>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/6\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1088\" caption_text=\"\" size=\"\" shape=\"circle\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][/bt_image][bt_header superheadline=\"MPYC\" headline=\"Vision\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][bt_column_inner width=\"5/6\"][bt_text]\r\n<blockquote>To actively promote the Monterey Peninsula Yacht Club as a prominent West Coast destination of choice for Corinthian spirit yacht racing, recreational boating, rowing and cruising.</blockquote>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/6\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1088\" caption_text=\"\" size=\"\" shape=\"circle\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][/bt_image][bt_header superheadline=\"MPYC\" headline=\"Commitment\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][bt_column_inner width=\"5/6\"][bt_text]\r\n<blockquote>To supporting a diverse membership that fosters inclusiveness, camaraderie, friendship, community involvement and leadership with the goal of advancing safe and sustainable maritime ecological practices.</blockquote>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][/bt_slider][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/3\" align=\"left\" vertical_align=\"btMiddleVertical\" border=\"no_border\" cell_padding=\"btDoublePadding\" animation=\"animate animate-fadein\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"#e5e5e5\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"MPYC\" headline=\"Clubhouse\" headline_size=\"large\" dash=\"bottom\" subheadline=\"Our clubhouse on Wharf 2 is home to the Kilpatrick Dining Room and Bear Flag Bar. We are proud to host a variety of events, seminars and our summer sailing camp.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_button text=\"READ MORE\" icon=\"no_icon\" url=\"\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"ExtraSmall\" width=\"Normal\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"2/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_slider height=\"auto\" auto_play=\"\" hide_arrows=\"\" hide_paging=\"btSliderHidePaging\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"81\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"84\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"85\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][/bt_slider][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"yes\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"7/12\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Club News\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Latest happenings and announcements at MPYC\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"5/12\"][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_latest_posts number=\"3\" category=\"\" format=\"horizontal\" post_type=\"blog\" show_excerpt=\"yes\" show_date=\"yes\" show_author=\"yes\" el_class=\"\" el_style=\"\"][/bt_latest_posts][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"1092\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"0.3\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Follow us\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Find out what\'s new at MPYC\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_icons][bt_icon icon=\"fa_f09a\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f099\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f16d\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_column][/bt_row][/bt_section]','MPYC Home','','inherit','closed','closed','','837-revision-v1','','','2021-04-08 04:43:50','2021-04-08 04:43:50','',837,'http://mpycdev.theomggroup.com/?p=1125',0,'revision','',0);
INSERT INTO `smrc_posts` VALUES (1126,1,'2021-04-08 04:45:59','2021-04-08 04:45:59','[bt_section layout=\"wide\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\"][bt_slider height=\"medium\" auto_play=\"5000\" hide_arrows=\"\" hide_paging=\"\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item image=\"1048\" el_class=\"\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1025\" el_class=\"\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1026\" el_class=\"btLightSkin\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1035\" el_class=\"btLightSkin\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1050\" el_class=\"btLightSkin\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1049\" el_class=\"btLightSkin\" el_style=\"\"][/bt_slider_item][/bt_slider][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"dark\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#b71234\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\"][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\r\n<h4 style=\"text-align: center;\"><em>founded 1953 in historic Monterey, California</em></h4>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSemiSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"2/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Our Club\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"A non-profit organization, MPYC is a yachting and social club comprised of adult and junior members with an interest in coming together to share in boating, sailing, yacht racing and social activities. Membership is not limited to boat owners.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/3\"][/bt_column][/bt_row][bt_row][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1068\" caption_text=\"View\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption=\"Double room\" show_titles=\"no\" caption_title=\"Room details\"][bt_header superheadline=\"CORINTHIAN SPIRIT\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Racing\" headline_size=\"medium\" dash=\"top\" subheadline=\"MPYC has built a reputation for top-notch competitive sailing. We host over 100 races per year and have hosted a variety of national championships.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1071\" caption_text=\"\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"PASSION\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Cruising\" headline_size=\"medium\" dash=\"top\" subheadline=\"Our members feature both power and sailboat owners. It\'s our great honor to live along California\'s Monterey Bay and enjoy the scenic vistas and marine wildlife.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1074\" caption_text=\"\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"DRIVE\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Rowing\" headline_size=\"medium\" dash=\"top\" subheadline=\"Our beginning, recreational and advanced rowers enjoy short and long distance local routes in addition to competition in local, West Coast and U.S. regattas. \" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1070\" caption_text=\"\" size=\"medium\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"COMMITMENT\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Youth Sailing\" headline_size=\"medium\" dash=\"top\" subheadline=\"Since its inception, Monterey Peninsula Yacht Club\'s has been proud to invest in the future of sailing and our youth to foster a better future for all us, and our club.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#e5e5e5\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"323\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"width: 60px; margin-top: -28px;\"][/bt_image][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"5/12\"][/bt_column][bt_column width=\"7/12\" align=\"right\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Activities\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Phasellus blandit a massa vitae congue. Nam ex massa, mattis ut sapien sit amet, consequat sodales risus. Sed interdum, ligula et lobortis faucibus, sem sem placerat augue, eget scelerisque turpis lorem et tellus.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][/bt_column][/bt_row][/bt_section][bt_section layout=\"wide\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"dark\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#e5e5e5\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1116\" caption_title=\"On the Water\" caption_text=\"Fun\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Fun\" headline=\"On the Water\" headline_size=\"medium\" dash=\"top\" subheadline=\"Whether you\'re guest crew or a club member, from sailing, boating or paddle boarding, there\'s fun to be had on the water in the harbor on on the Bay.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1115\" caption_title=\"Celebrations\" caption_text=\"Club\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Club\" headline=\"Celebrations\" headline_size=\"medium\" dash=\"top\" subheadline=\"From holiday celebrations, special events and annual gatherings, there\'s always something happening at the club.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1114\" caption_title=\"Dining\" caption_text=\"MPYC\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"MPYC\" headline=\"Dining\" headline_size=\"medium\" dash=\"top\" subheadline=\"From fine dining in the Kirkpatrick Dining Room or enjoying a burger on the Bear Flag Bar deck overlooking Monterey harbor, no one goes hungry at MPYC.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1117\" caption_title=\"Education\" caption_text=\"Safety\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Safety\" headline=\"Education\" headline_size=\"medium\" dash=\"top\" subheadline=\"Committed to safe and proper use of the Monterey Bay National Marine Sanctuary, MPYC is active in a variety of safety and ecological awareness events.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_image][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_slider height=\"auto\" auto_play=\"\" hide_arrows=\"\" hide_paging=\"btSliderHidePaging\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/6\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1088\" caption_text=\"\" size=\"\" shape=\"circle\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][/bt_image][bt_header superheadline=\"MPYC\" headline=\"Mission\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][bt_column_inner width=\"5/6\"][bt_text]\r\n<blockquote>To connect our members and our diverse community to the boundless recreational opportunities and proper stewardship of the Monterey Bay and the Pacific Ocean.</blockquote>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/6\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1088\" caption_text=\"\" size=\"\" shape=\"circle\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][/bt_image][bt_header superheadline=\"MPYC\" headline=\"Vision\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][bt_column_inner width=\"5/6\"][bt_text]\r\n<blockquote>To actively promote the Monterey Peninsula Yacht Club as a prominent West Coast destination of choice for Corinthian spirit yacht racing, recreational boating, rowing and cruising.</blockquote>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/6\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1088\" caption_text=\"\" size=\"\" shape=\"circle\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][/bt_image][bt_header superheadline=\"MPYC\" headline=\"Commitment\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][bt_column_inner width=\"5/6\"][bt_text]\r\n<blockquote>To supporting a diverse membership that fosters inclusiveness, camaraderie, friendship, community involvement and leadership with the goal of advancing safe and sustainable maritime ecological practices.</blockquote>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][/bt_slider][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/3\" align=\"left\" vertical_align=\"btMiddleVertical\" border=\"no_border\" cell_padding=\"btDoublePadding\" animation=\"animate animate-fadein\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"#e5e5e5\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"MPYC\" headline=\"Clubhouse\" headline_size=\"large\" dash=\"bottom\" subheadline=\"Our clubhouse on Wharf 2 is home to the Kilpatrick Dining Room and Bear Flag Bar. We are proud to host a variety of events, seminars and our summer sailing camp.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_button text=\"READ MORE\" icon=\"no_icon\" url=\"\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"ExtraSmall\" width=\"Normal\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"2/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_slider height=\"auto\" auto_play=\"\" hide_arrows=\"\" hide_paging=\"btSliderHidePaging\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"81\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"84\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"85\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][/bt_slider][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"yes\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"7/12\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Club News\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Latest happenings and announcements at MPYC\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"5/12\"][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_latest_posts number=\"3\" category=\"\" format=\"horizontal\" post_type=\"blog\" show_excerpt=\"yes\" show_date=\"yes\" show_author=\"yes\" el_class=\"\" el_style=\"\"][/bt_latest_posts][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"1092\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"0.3\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Follow us\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Find out what\'s new at MPYC\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_icons][bt_icon icon=\"fa_f09a\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f099\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f16d\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_column][/bt_row][/bt_section]','MPYC Home','','inherit','closed','closed','','837-revision-v1','','','2021-04-08 04:45:59','2021-04-08 04:45:59','',837,'http://mpycdev.theomggroup.com/?p=1126',0,'revision','',0);
INSERT INTO `smrc_posts` VALUES (1127,1,'2021-04-08 05:24:50','2021-04-08 05:24:50','','clubdining','','inherit','open','closed','','clubdining','','','2021-04-08 05:24:50','2021-04-08 05:24:50','',837,'http://mpycdev.theomggroup.com/wp-content/uploads/2021/04/clubdining.jpg',0,'attachment','image/jpeg',0);
INSERT INTO `smrc_posts` VALUES (1128,1,'2021-04-08 05:25:01','2021-04-08 05:25:01','','receptiontable','','inherit','open','closed','','receptiontable','','','2021-04-08 05:25:01','2021-04-08 05:25:01','',837,'http://mpycdev.theomggroup.com/wp-content/uploads/2021/04/receptiontable.jpg',0,'attachment','image/jpeg',0);
INSERT INTO `smrc_posts` VALUES (1129,1,'2021-04-08 05:25:33','2021-04-08 05:25:33','','eventdinner','','inherit','open','closed','','eventdinner','','','2021-04-08 05:25:33','2021-04-08 05:25:33','',837,'http://mpycdev.theomggroup.com/wp-content/uploads/2021/04/eventdinner.jpg',0,'attachment','image/jpeg',0);
INSERT INTO `smrc_posts` VALUES (1130,1,'2021-04-08 05:27:44','2021-04-08 05:27:44','[bt_section layout=\"wide\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\"][bt_slider height=\"medium\" auto_play=\"5000\" hide_arrows=\"\" hide_paging=\"\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item image=\"1048\" el_class=\"\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1025\" el_class=\"\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1026\" el_class=\"btLightSkin\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1035\" el_class=\"btLightSkin\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1050\" el_class=\"btLightSkin\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1049\" el_class=\"btLightSkin\" el_style=\"\"][/bt_slider_item][/bt_slider][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"dark\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#b71234\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\"][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\r\n<h4 style=\"text-align: center;\"><em>founded 1953 in historic Monterey, California</em></h4>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSemiSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"2/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Our Club\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"A non-profit organization, MPYC is a yachting and social club comprised of adult and junior members with an interest in coming together to share in boating, sailing, yacht racing and social activities. Membership is not limited to boat owners.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/3\"][/bt_column][/bt_row][bt_row][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1068\" caption_text=\"View\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption=\"Double room\" show_titles=\"no\" caption_title=\"Room details\"][bt_header superheadline=\"CORINTHIAN SPIRIT\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Racing\" headline_size=\"medium\" dash=\"top\" subheadline=\"MPYC has built a reputation for top-notch competitive sailing. We host over 100 races per year and have hosted a variety of national championships.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1071\" caption_text=\"\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"PASSION\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Cruising\" headline_size=\"medium\" dash=\"top\" subheadline=\"Our members feature both power and sailboat owners. It\'s our great honor to live along California\'s Monterey Bay and enjoy the scenic vistas and marine wildlife.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1074\" caption_text=\"\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"DRIVE\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Rowing\" headline_size=\"medium\" dash=\"top\" subheadline=\"Our beginning, recreational and advanced rowers enjoy short and long distance local routes in addition to competition in local, West Coast and U.S. regattas. \" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1070\" caption_text=\"\" size=\"medium\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"COMMITMENT\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Youth Sailing\" headline_size=\"medium\" dash=\"top\" subheadline=\"Since its inception, Monterey Peninsula Yacht Club\'s has been proud to invest in the future of sailing and our youth to foster a better future for all us, and our club.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#e5e5e5\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"323\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"width: 60px; margin-top: -28px;\"][/bt_image][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"5/12\"][/bt_column][bt_column width=\"7/12\" align=\"right\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Activities\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Phasellus blandit a massa vitae congue. Nam ex massa, mattis ut sapien sit amet, consequat sodales risus. Sed interdum, ligula et lobortis faucibus, sem sem placerat augue, eget scelerisque turpis lorem et tellus.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][/bt_column][/bt_row][/bt_section][bt_section layout=\"wide\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"dark\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#e5e5e5\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1116\" caption_title=\"On the Water\" caption_text=\"Fun\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Fun\" headline=\"On the Water\" headline_size=\"medium\" dash=\"top\" subheadline=\"Whether you\'re guest crew or a club member, from sailing, boating or paddle boarding, there\'s fun to be had on the water in the harbor on on the Bay.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1115\" caption_title=\"Celebrations\" caption_text=\"Club\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Club\" headline=\"Celebrations\" headline_size=\"medium\" dash=\"top\" subheadline=\"From holiday celebrations, special events and annual gatherings, there\'s always something happening at the club.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1114\" caption_title=\"Dining\" caption_text=\"MPYC\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"MPYC\" headline=\"Dining\" headline_size=\"medium\" dash=\"top\" subheadline=\"From fine dining in the Kirkpatrick Dining Room or enjoying a burger on the Bear Flag Bar deck overlooking Monterey harbor, no one goes hungry at MPYC.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1117\" caption_title=\"Education\" caption_text=\"Safety\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Safety\" headline=\"Education\" headline_size=\"medium\" dash=\"top\" subheadline=\"Committed to safe and proper use of the Monterey Bay National Marine Sanctuary, MPYC is active in a variety of safety and ecological awareness events.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_image][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_slider height=\"auto\" auto_play=\"\" hide_arrows=\"\" hide_paging=\"btSliderHidePaging\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/6\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1088\" caption_text=\"\" size=\"\" shape=\"circle\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][/bt_image][bt_header superheadline=\"MPYC\" headline=\"Mission\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][bt_column_inner width=\"5/6\"][bt_text]\r\n<blockquote>To connect our members and our diverse community to the boundless recreational opportunities and proper stewardship of the Monterey Bay and the Pacific Ocean.</blockquote>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/6\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1088\" caption_text=\"\" size=\"\" shape=\"circle\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][/bt_image][bt_header superheadline=\"MPYC\" headline=\"Vision\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][bt_column_inner width=\"5/6\"][bt_text]\r\n<blockquote>To actively promote the Monterey Peninsula Yacht Club as a prominent West Coast destination of choice for Corinthian spirit yacht racing, recreational boating, rowing and cruising.</blockquote>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/6\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1088\" caption_text=\"\" size=\"\" shape=\"circle\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][/bt_image][bt_header superheadline=\"MPYC\" headline=\"Commitment\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][bt_column_inner width=\"5/6\"][bt_text]\r\n<blockquote>To supporting a diverse membership that fosters inclusiveness, camaraderie, friendship, community involvement and leadership with the goal of advancing safe and sustainable maritime ecological practices.</blockquote>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][/bt_slider][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/3\" align=\"left\" vertical_align=\"btMiddleVertical\" border=\"no_border\" cell_padding=\"btDoublePadding\" animation=\"animate animate-fadein\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"#e5e5e5\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"MPYC\" headline=\"Clubhouse\" headline_size=\"large\" dash=\"bottom\" subheadline=\"Our clubhouse on Wharf II at the Monterey Harbor is home to the Kilpatrick Dining Room and Bear Flag Bar. We are proud to host a variety of events including corporate gatherings, receptions and seminars.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_button text=\"READ MORE\" icon=\"no_icon\" url=\"\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"ExtraSmall\" width=\"Normal\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"2/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_slider height=\"auto\" auto_play=\"\" hide_arrows=\"\" hide_paging=\"btSliderHidePaging\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1127\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1128\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1129\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][/bt_slider][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"yes\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"7/12\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Club News\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Latest happenings and announcements at MPYC\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"5/12\"][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_latest_posts number=\"3\" category=\"\" format=\"horizontal\" post_type=\"blog\" show_excerpt=\"yes\" show_date=\"yes\" show_author=\"yes\" el_class=\"\" el_style=\"\"][/bt_latest_posts][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"1092\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"0.3\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Follow us\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Find out what\'s new at MPYC\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_icons][bt_icon icon=\"fa_f09a\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f099\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f16d\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_column][/bt_row][/bt_section]','MPYC Home','','inherit','closed','closed','','837-revision-v1','','','2021-04-08 05:27:44','2021-04-08 05:27:44','',837,'http://mpycdev.theomggroup.com/?p=1130',0,'revision','',0);
INSERT INTO `smrc_posts` VALUES (1131,1,'2021-04-08 05:47:18','2021-04-08 05:47:18','The Commodore and Board of Directors are updating club policies based on guidance from the Monterey County Health Department and California state health officials. Currently, restrictions are easing in Monterey County and we\'re hopeful that pattern will continue. At this time, masks are required at MPYC events and in the clubhouse when not actively eating or drinking and there a capacity limitations in place.\n<blockquote>The safety of our members and guests is our first priority.</blockquote>\n\"Safety is paramount here,\" said Commodore Jean DuPreez. \"But we are especially encouraged that the vast majority of our members are either fully vaccinated or have received their first shot to prevent the spread of Covid-19.\n\nGiven capacity limitations, members are encouraged to make reservations for dining or drinks on the deck. Should you have any questions regarding the current Covid protection status at the club, don\'t hesitate to call the office.','Covid-19 Precautions',' Curabitur consequat id lorem ac feugiat. In hac habitasse platea dictumst. Donec blandit, tellus vitae volutpat consequat, sapien ex congue dui. ','inherit','closed','closed','','266-autosave-v1','','','2021-04-08 05:47:18','2021-04-08 05:47:18','',266,'http://mpycdev.theomggroup.com/?p=1131',0,'revision','',0);
INSERT INTO `smrc_posts` VALUES (1132,1,'2021-04-08 05:37:53','2021-04-08 05:37:53','','covidvirus','','inherit','open','closed','','covidvirus','','','2021-04-08 05:37:53','2021-04-08 05:37:53','',266,'http://mpycdev.theomggroup.com/wp-content/uploads/2016/02/covidvirus.jpg',0,'attachment','image/jpeg',0);
INSERT INTO `smrc_posts` VALUES (1133,1,'2021-04-08 05:47:19','2021-04-08 05:47:19','The Commodore and Board of Directors are updating club policies based on guidance from the Monterey County Health Department and California state health officials. Currently, restrictions are easing in Monterey County and we\'re hopeful that pattern will continue. At this time, masks are required at MPYC events and in the clubhouse when not actively eating or drinking and there a capacity limitations in place.\r\n<blockquote>The safety of our members and guests is our first priority.</blockquote>\r\n\"Safety is paramount here,\" said Commodore Jean DuPreez. \"But we are especially encouraged that the vast majority of our members are either fully vaccinated or have received their first shot to prevent the spread of Covid-19.\r\n\r\nGiven capacity limitations, members are encouraged to make reservations for dining or drinks on the deck. Should you have any questions regarding the current Covid protection status at the club, don\'t hesitate to call the office.','Covid-19 Precautions',' Curabitur consequat id lorem ac feugiat. In hac habitasse platea dictumst. Donec blandit, tellus vitae volutpat consequat, sapien ex congue dui. ','inherit','closed','closed','','266-revision-v1','','','2021-04-08 05:47:19','2021-04-08 05:47:19','',266,'http://mpycdev.theomggroup.com/?p=1133',0,'revision','',0);
INSERT INTO `smrc_posts` VALUES (1134,1,'2021-04-08 08:46:44','2021-04-08 08:46:44','The Commodore and Board of Directors are updating club policies based on guidance from the Monterey County Health Department and California state health officials. Currently, restrictions are easing in Monterey County and we\'re hopeful that pattern will continue. At this time, masks are required at MPYC events and in the clubhouse when not actively eating or drinking and there a capacity limitations in place.\r\n<blockquote>The safety of our members and guests is our first priority.</blockquote>\r\n\"Safety is paramount at MPYC,\" said Commodore Jean DuPreez. \"But we are especially encouraged that the vast majority of our members are either fully vaccinated or have received their first shot to prevent the spread of Covid-19.\r\n\r\nGiven capacity limitations, members are encouraged to make reservations for dining or drinks on the deck. Should you have any questions regarding the current Covid protection status at the club, don\'t hesitate to call the office.','Covid-19 Precautions',' Curabitur consequat id lorem ac feugiat. In hac habitasse platea dictumst. Donec blandit, tellus vitae volutpat consequat, sapien ex congue dui. ','inherit','closed','closed','','266-revision-v1','','','2021-04-08 08:46:44','2021-04-08 08:46:44','',266,'http://mpycdev.theomggroup.com/?p=1134',0,'revision','',0);
INSERT INTO `smrc_posts` VALUES (1135,1,'2021-04-08 08:48:34','2021-04-08 08:48:34','[bt_section layout=\"wide\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\"][bt_slider height=\"medium\" auto_play=\"5000\" hide_arrows=\"\" hide_paging=\"\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item image=\"1048\" el_class=\"\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1025\" el_class=\"\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1026\" el_class=\"btLightSkin\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1035\" el_class=\"btLightSkin\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1050\" el_class=\"btLightSkin\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1049\" el_class=\"btLightSkin\" el_style=\"\"][/bt_slider_item][/bt_slider][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"dark\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#b71234\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\"][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\r\n<h4 style=\"text-align: center;\"><em>founded 1953 in historic Monterey, California</em></h4>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSemiSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"2/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Our Club\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"A non-profit organization, MPYC is a yachting and social club comprised of adult and junior members with an interest in coming together to share in boating, sailing, yacht racing and social activities. Membership is not limited to boat owners.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/3\"][/bt_column][/bt_row][bt_row][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1068\" caption_text=\"View\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption=\"Double room\" show_titles=\"no\" caption_title=\"Room details\"][bt_header superheadline=\"CORINTHIAN SPIRIT\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Racing\" headline_size=\"medium\" dash=\"top\" subheadline=\"MPYC has built a reputation for top-notch competitive sailing. We host over 100 races per year and have hosted a variety of national championships.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1071\" caption_text=\"\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"PASSION\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Cruising\" headline_size=\"medium\" dash=\"top\" subheadline=\"Our members feature both power and sailboat owners. It\'s our great honor to live along California\'s Monterey Bay and enjoy the scenic vistas and marine wildlife.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1074\" caption_text=\"\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"DRIVE\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Rowing\" headline_size=\"medium\" dash=\"top\" subheadline=\"Our beginning, recreational and advanced rowers enjoy short and long distance local routes in addition to competition in local, West Coast and U.S. regattas. \" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1070\" caption_text=\"\" size=\"medium\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"COMMITMENT\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Youth Sailing\" headline_size=\"medium\" dash=\"top\" subheadline=\"Since its inception, Monterey Peninsula Yacht Club\'s has been proud to invest in the future of sailing and our youth to foster a better future for all us, and our club.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#e5e5e5\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"323\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"width: 60px; margin-top: -28px;\"][/bt_image][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"5/12\"][/bt_column][bt_column width=\"7/12\" align=\"right\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Activities\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Phasellus blandit a massa vitae congue. Nam ex massa, mattis ut sapien sit amet, consequat sodales risus. Sed interdum, ligula et lobortis faucibus, sem sem placerat augue, eget scelerisque turpis lorem et tellus.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][/bt_column][/bt_row][/bt_section][bt_section layout=\"wide\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"dark\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#e5e5e5\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1116\" caption_title=\"On the Water\" caption_text=\"Fun\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Fun\" headline=\"On the Water\" headline_size=\"medium\" dash=\"top\" subheadline=\"Whether you\'re guest crew or a club member, from sailing, boating or paddle boarding, there\'s fun to be had on the water in the harbor on on the Bay.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1115\" caption_title=\"Celebrations\" caption_text=\"Club\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Club\" headline=\"Celebrations\" headline_size=\"medium\" dash=\"top\" subheadline=\"From holiday celebrations, special events and annual gatherings, there\'s always something happening at the club.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1114\" caption_title=\"Dining\" caption_text=\"MPYC\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"MPYC\" headline=\"Dining\" headline_size=\"medium\" dash=\"top\" subheadline=\"From fine dining in the Kirkpatrick Dining Room or enjoying a burger on the Bear Flag Bar deck overlooking Monterey harbor, no one goes hungry at MPYC.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1117\" caption_title=\"Education\" caption_text=\"Safety\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Safety\" headline=\"Education\" headline_size=\"medium\" dash=\"top\" subheadline=\"Committed to safe and proper use of the Monterey Bay National Marine Sanctuary, MPYC is active in a variety of safety and ecological awareness events.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_image][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_slider height=\"auto\" auto_play=\"\" hide_arrows=\"\" hide_paging=\"btSliderHidePaging\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/6\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1088\" caption_text=\"\" size=\"\" shape=\"circle\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][/bt_image][bt_header superheadline=\"MPYC\" headline=\"Mission\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][bt_column_inner width=\"5/6\"][bt_text]\r\n<blockquote>To connect our members and our diverse community to the boundless recreational opportunities and proper stewardship of the Monterey Bay and the Pacific Ocean.</blockquote>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/6\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1088\" caption_text=\"\" size=\"\" shape=\"circle\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][/bt_image][bt_header superheadline=\"MPYC\" headline=\"Vision\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][bt_column_inner width=\"5/6\"][bt_text]\r\n<blockquote>To actively promote the Monterey Peninsula Yacht Club as a prominent West Coast destination of choice for Corinthian spirit yacht racing, recreational boating, rowing and cruising.</blockquote>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/6\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1088\" caption_text=\"\" size=\"\" shape=\"circle\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][/bt_image][bt_header superheadline=\"MPYC\" headline=\"Commitment\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][bt_column_inner width=\"5/6\"][bt_text]\r\n<blockquote>To supporting a diverse membership that fosters inclusiveness, camaraderie, friendship, community involvement and leadership with the goal of advancing safe and sustainable maritime ecological practices.</blockquote>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][/bt_slider][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/3\" align=\"left\" vertical_align=\"btMiddleVertical\" border=\"no_border\" cell_padding=\"btDoublePadding\" animation=\"animate animate-fadein\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"#e5e5e5\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"MPYC\" headline=\"Clubhouse\" headline_size=\"large\" dash=\"bottom\" subheadline=\"Our clubhouse on Wharf II at the Monterey Harbor is home to the Kilpatrick Dining Room and Bear Flag Bar. We are proud to host a variety of events including corporate gatherings, receptions and seminars.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_button text=\"READ MORE\" icon=\"no_icon\" url=\"\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"ExtraSmall\" width=\"Normal\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"2/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_slider height=\"auto\" auto_play=\"\" hide_arrows=\"\" hide_paging=\"btSliderHidePaging\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1127\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1128\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1129\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][/bt_slider][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"yes\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"7/12\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Club News\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Latest happenings and announcements at MPYC\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"5/12\"][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_latest_posts number=\"3\" category=\"\" format=\"horizontal\" post_type=\"blog\" show_excerpt=\"yes\" show_date=\"yes\" show_author=\"no\" el_class=\"\" el_style=\"\"][/bt_latest_posts][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"1092\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"0.3\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Follow us\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Find out what\'s new at MPYC\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_icons][bt_icon icon=\"fa_f09a\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f099\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f16d\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_column][/bt_row][/bt_section]','MPYC Home','','inherit','closed','closed','','837-revision-v1','','','2021-04-08 08:48:34','2021-04-08 08:48:34','',837,'http://mpycdev.theomggroup.com/?p=1135',0,'revision','',0);
INSERT INTO `smrc_posts` VALUES (1136,1,'2021-04-08 08:49:51','2021-04-08 08:49:51','[bt_section layout=\"wide\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\"][bt_slider height=\"medium\" auto_play=\"5000\" hide_arrows=\"\" hide_paging=\"\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item image=\"1048\" el_class=\"\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1025\" el_class=\"\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1026\" el_class=\"btLightSkin\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1035\" el_class=\"btLightSkin\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1050\" el_class=\"btLightSkin\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1049\" el_class=\"btLightSkin\" el_style=\"\"][/bt_slider_item][/bt_slider][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"dark\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#b71234\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\"][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\r\n<h4 style=\"text-align: center;\"><em>founded 1953 in historic Monterey, California</em></h4>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSemiSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"2/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Our Club\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"A non-profit organization, MPYC is a yachting and social club comprised of adult and junior members with an interest in coming together to share in boating, sailing, yacht racing and social activities. Membership is not limited to boat owners.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/3\"][/bt_column][/bt_row][bt_row][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1068\" caption_text=\"View\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption=\"Double room\" show_titles=\"no\" caption_title=\"Room details\"][bt_header superheadline=\"CORINTHIAN SPIRIT\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Racing\" headline_size=\"medium\" dash=\"top\" subheadline=\"MPYC has built a reputation for top-notch competitive sailing. We host over 100 races per year and have hosted a variety of national championships.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1071\" caption_text=\"\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"PASSION\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Cruising\" headline_size=\"medium\" dash=\"top\" subheadline=\"Our members feature both power and sailboat owners. It\'s our great honor to live along California\'s Monterey Bay and enjoy the scenic vistas and marine wildlife.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1074\" caption_text=\"\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"DRIVE\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Rowing\" headline_size=\"medium\" dash=\"top\" subheadline=\"Our beginning, recreational and advanced rowers enjoy short and long distance local routes in addition to competition in local, West Coast and U.S. regattas. \" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1070\" caption_text=\"\" size=\"medium\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"COMMITMENT\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Youth Sailing\" headline_size=\"medium\" dash=\"top\" subheadline=\"Since its inception, Monterey Peninsula Yacht Club\'s has been proud to invest in the future of sailing and our youth to foster a better future for all us, and our club.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#e5e5e5\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"323\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"width: 60px; margin-top: -28px;\"][/bt_image][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"5/12\"][/bt_column][bt_column width=\"7/12\" align=\"right\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Activities\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Phasellus blandit a massa vitae congue. Nam ex massa, mattis ut sapien sit amet, consequat sodales risus. Sed interdum, ligula et lobortis faucibus, sem sem placerat augue, eget scelerisque turpis lorem et tellus.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][/bt_column][/bt_row][/bt_section][bt_section layout=\"wide\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"dark\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#e5e5e5\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1116\" caption_title=\"On the Water\" caption_text=\"Fun\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Fun\" headline=\"On the Water\" headline_size=\"medium\" dash=\"top\" subheadline=\"Whether you\'re guest crew or a club member, from sailing, boating or paddle boarding, there\'s fun to be had on the water in the harbor on on the Bay.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1115\" caption_title=\"Celebrations\" caption_text=\"Club\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Club\" headline=\"Celebrations\" headline_size=\"medium\" dash=\"top\" subheadline=\"From holiday celebrations, special events and annual gatherings, there\'s always something happening at the club.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1114\" caption_title=\"Dining\" caption_text=\"MPYC\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"MPYC\" headline=\"Dining\" headline_size=\"medium\" dash=\"top\" subheadline=\"From fine dining in the Kirkpatrick Dining Room or enjoying a burger on the Bear Flag Bar deck overlooking Monterey harbor, no one goes hungry at MPYC.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1117\" caption_title=\"Education\" caption_text=\"Safety\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Safety\" headline=\"Education\" headline_size=\"medium\" dash=\"top\" subheadline=\"Committed to safe and proper use of the Monterey Bay National Marine Sanctuary, MPYC is active in a variety of safety and ecological awareness events.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_image][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_slider height=\"auto\" auto_play=\"\" hide_arrows=\"\" hide_paging=\"btSliderHidePaging\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/6\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1088\" caption_text=\"\" size=\"\" shape=\"circle\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][/bt_image][bt_header superheadline=\"MPYC\" headline=\"Mission\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][bt_column_inner width=\"5/6\"][bt_text]\r\n<blockquote>To connect our members and our diverse community to the boundless recreational opportunities and proper stewardship of the Monterey Bay and the Pacific Ocean.</blockquote>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/6\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1088\" caption_text=\"\" size=\"\" shape=\"circle\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][/bt_image][bt_header superheadline=\"MPYC\" headline=\"Vision\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][bt_column_inner width=\"5/6\"][bt_text]\r\n<blockquote>To actively promote the Monterey Peninsula Yacht Club as a prominent West Coast destination of choice for Corinthian spirit yacht racing, recreational boating, rowing and cruising.</blockquote>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/6\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1088\" caption_text=\"\" size=\"\" shape=\"circle\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][/bt_image][bt_header superheadline=\"MPYC\" headline=\"Commitment\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][bt_column_inner width=\"5/6\"][bt_text]\r\n<blockquote>To supporting a diverse membership that fosters inclusiveness, camaraderie, friendship, community involvement and leadership with the goal of advancing safe and sustainable maritime ecological practices.</blockquote>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][/bt_slider][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/3\" align=\"left\" vertical_align=\"btMiddleVertical\" border=\"no_border\" cell_padding=\"btDoublePadding\" animation=\"animate animate-fadein\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"#e5e5e5\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"MPYC\" headline=\"Clubhouse\" headline_size=\"large\" dash=\"bottom\" subheadline=\"Our clubhouse on Wharf II at the Monterey Harbor is home to the Kilpatrick Dining Room and Bear Flag Bar. We are proud to host a variety of events including corporate gatherings, receptions and seminars.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_button text=\"READ MORE\" icon=\"no_icon\" url=\"\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"ExtraSmall\" width=\"Normal\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"2/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_slider height=\"auto\" auto_play=\"\" hide_arrows=\"\" hide_paging=\"btSliderHidePaging\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1127\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1128\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1129\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][/bt_slider][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"yes\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"7/12\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Club News\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Latest happenings and announcements at MPYC\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"5/12\"][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_latest_posts number=\"3\" category=\"\" format=\"horizontal\" post_type=\"blog\" show_excerpt=\"no\" show_date=\"yes\" show_author=\"no\" el_class=\"\" el_style=\"\"][/bt_latest_posts][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"1092\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"0.3\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Follow us\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Find out what\'s new at MPYC\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_icons][bt_icon icon=\"fa_f09a\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f099\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f16d\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_column][/bt_row][/bt_section]','MPYC Home','','inherit','closed','closed','','837-revision-v1','','','2021-04-08 08:49:51','2021-04-08 08:49:51','',837,'http://mpycdev.theomggroup.com/?p=1136',0,'revision','',0);
INSERT INTO `smrc_posts` VALUES (1137,1,'2021-04-08 08:50:26','2021-04-08 08:50:26','[bt_section layout=\"wide\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\"][bt_slider height=\"medium\" auto_play=\"5000\" hide_arrows=\"\" hide_paging=\"\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item image=\"1048\" el_class=\"\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1025\" el_class=\"\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1026\" el_class=\"btLightSkin\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1035\" el_class=\"btLightSkin\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1050\" el_class=\"btLightSkin\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1049\" el_class=\"btLightSkin\" el_style=\"\"][/bt_slider_item][/bt_slider][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"dark\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#b71234\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\"][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\r\n<h4 style=\"text-align: center;\"><em>founded 1953 in historic Monterey, California</em></h4>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSemiSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"2/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Our Club\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"A non-profit organization, MPYC is a yachting and social club comprised of adult and junior members with an interest in coming together to share in boating, sailing, yacht racing and social activities. Membership is not limited to boat owners.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/3\"][/bt_column][/bt_row][bt_row][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1068\" caption_text=\"View\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption=\"Double room\" show_titles=\"no\" caption_title=\"Room details\"][bt_header superheadline=\"CORINTHIAN SPIRIT\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Racing\" headline_size=\"medium\" dash=\"top\" subheadline=\"MPYC has built a reputation for top-notch competitive sailing. We host over 100 races per year and have hosted a variety of national championships.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1071\" caption_text=\"\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"PASSION\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Cruising\" headline_size=\"medium\" dash=\"top\" subheadline=\"Our members feature both power and sailboat owners. It\'s our great honor to live along California\'s Monterey Bay and enjoy the scenic vistas and marine wildlife.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1074\" caption_text=\"\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"DRIVE\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Rowing\" headline_size=\"medium\" dash=\"top\" subheadline=\"Our beginning, recreational and advanced rowers enjoy short and long distance local routes in addition to competition in local, West Coast and U.S. regattas. \" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1070\" caption_text=\"\" size=\"medium\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"COMMITMENT\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Youth Sailing\" headline_size=\"medium\" dash=\"top\" subheadline=\"Since its inception, Monterey Peninsula Yacht Club\'s has been proud to invest in the future of sailing and our youth to foster a better future for all us, and our club.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#e5e5e5\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"323\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"width: 60px; margin-top: -28px;\"][/bt_image][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"5/12\"][/bt_column][bt_column width=\"7/12\" align=\"right\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Activities\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Phasellus blandit a massa vitae congue. Nam ex massa, mattis ut sapien sit amet, consequat sodales risus. Sed interdum, ligula et lobortis faucibus, sem sem placerat augue, eget scelerisque turpis lorem et tellus.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][/bt_column][/bt_row][/bt_section][bt_section layout=\"wide\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"dark\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#e5e5e5\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1116\" caption_title=\"On the Water\" caption_text=\"Fun\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Fun\" headline=\"On the Water\" headline_size=\"medium\" dash=\"top\" subheadline=\"Whether you\'re guest crew or a club member, from sailing, boating or paddle boarding, there\'s fun to be had on the water in the harbor on on the Bay.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1115\" caption_title=\"Celebrations\" caption_text=\"Club\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Club\" headline=\"Celebrations\" headline_size=\"medium\" dash=\"top\" subheadline=\"From holiday celebrations, special events and annual gatherings, there\'s always something happening at the club.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1114\" caption_title=\"Dining\" caption_text=\"MPYC\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"MPYC\" headline=\"Dining\" headline_size=\"medium\" dash=\"top\" subheadline=\"From fine dining in the Kirkpatrick Dining Room or enjoying a burger on the Bear Flag Bar deck overlooking Monterey harbor, no one goes hungry at MPYC.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1117\" caption_title=\"Education\" caption_text=\"Safety\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Safety\" headline=\"Education\" headline_size=\"medium\" dash=\"top\" subheadline=\"Committed to safe and proper use of the Monterey Bay National Marine Sanctuary, MPYC is active in a variety of safety and ecological awareness events.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_image][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_slider height=\"auto\" auto_play=\"\" hide_arrows=\"\" hide_paging=\"btSliderHidePaging\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/6\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1088\" caption_text=\"\" size=\"\" shape=\"circle\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][/bt_image][bt_header superheadline=\"MPYC\" headline=\"Mission\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][bt_column_inner width=\"5/6\"][bt_text]\r\n<blockquote>To connect our members and our diverse community to the boundless recreational opportunities and proper stewardship of the Monterey Bay and the Pacific Ocean.</blockquote>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/6\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1088\" caption_text=\"\" size=\"\" shape=\"circle\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][/bt_image][bt_header superheadline=\"MPYC\" headline=\"Vision\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][bt_column_inner width=\"5/6\"][bt_text]\r\n<blockquote>To actively promote the Monterey Peninsula Yacht Club as a prominent West Coast destination of choice for Corinthian spirit yacht racing, recreational boating, rowing and cruising.</blockquote>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/6\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1088\" caption_text=\"\" size=\"\" shape=\"circle\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][/bt_image][bt_header superheadline=\"MPYC\" headline=\"Commitment\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][bt_column_inner width=\"5/6\"][bt_text]\r\n<blockquote>To supporting a diverse membership that fosters inclusiveness, camaraderie, friendship, community involvement and leadership with the goal of advancing safe and sustainable maritime ecological practices.</blockquote>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][/bt_slider][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/3\" align=\"left\" vertical_align=\"btMiddleVertical\" border=\"no_border\" cell_padding=\"btDoublePadding\" animation=\"animate animate-fadein\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"#e5e5e5\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"MPYC\" headline=\"Clubhouse\" headline_size=\"large\" dash=\"bottom\" subheadline=\"Our clubhouse on Wharf II at the Monterey Harbor is home to the Kilpatrick Dining Room and Bear Flag Bar. We are proud to host a variety of events including corporate gatherings, receptions and seminars.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_button text=\"READ MORE\" icon=\"no_icon\" url=\"\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"ExtraSmall\" width=\"Normal\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"2/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_slider height=\"auto\" auto_play=\"\" hide_arrows=\"\" hide_paging=\"btSliderHidePaging\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1127\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1128\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1129\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][/bt_slider][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"yes\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"7/12\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Club News\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Latest happenings and announcements at MPYC\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"5/12\"][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_latest_posts number=\"3\" category=\"\" format=\"horizontal\" post_type=\"blog\" show_excerpt=\"yes\" show_date=\"yes\" show_author=\"no\" el_class=\"\" el_style=\"\"][/bt_latest_posts][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"1092\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"0.3\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Follow us\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Find out what\'s new at MPYC\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_icons][bt_icon icon=\"fa_f09a\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f099\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f16d\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_column][/bt_row][/bt_section]','MPYC Home','','inherit','closed','closed','','837-revision-v1','','','2021-04-08 08:50:26','2021-04-08 08:50:26','',837,'http://mpycdev.theomggroup.com/?p=1137',0,'revision','',0);
INSERT INTO `smrc_posts` VALUES (1138,1,'2021-04-08 08:53:39','2021-04-08 08:53:39','The Commodore and Board of Directors are updating club policies based on guidance from the Monterey County Health Department and California state health officials. Currently, restrictions are easing in Monterey County and we\'re hopeful that pattern will continue. At this time, masks are required at MPYC events and in the clubhouse when not actively eating or drinking and there a capacity limitations in place.\r\n<blockquote>The safety of our members and guests is our first priority.</blockquote>\r\n\"Safety is paramount here,\" said Commodore Jean DuPreez. \"But we are especially encouraged that the vast majority of our members are either fully vaccinated or have received their first shot to prevent the spread of Covid-19.\r\n\r\nGiven capacity limitations, members are encouraged to make reservations for dining or drinks on the deck. Should you have any questions regarding the current Covid protection status at the club, don\'t hesitate to call the office.','Covid-19 Precautions',' Curabitur consequat id lorem ac feugiat. In hac habitasse platea dictumst. Donec blandit, tellus vitae volutpat consequat, sapien ex congue dui. ','inherit','closed','closed','','266-revision-v1','','','2021-04-08 08:53:39','2021-04-08 08:53:39','',266,'http://mpycdev.theomggroup.com/?p=1138',0,'revision','',0);
INSERT INTO `smrc_posts` VALUES (1139,1,'2021-04-08 08:54:29','2021-04-08 08:54:29','The Commodore and Board of Directors are updating club policies based on guidance from the Monterey County Health Department and California state health officials. Currently, restrictions are easing in Monterey County and we\'re hopeful that pattern will continue. At this time, masks are required at MPYC events and in the clubhouse when not actively eating or drinking and there a capacity limitations in place.\r\n<blockquote>The safety of our members and guests is our first priority.</blockquote>\r\n\"Safety is paramount here,\" said Commodore Jean DuPreez. \"But we are especially encouraged that the vast majority of our members are either fully vaccinated or have received their first shot to prevent the spread of Covid-19.\r\n\r\nGiven capacity limitations, members are encouraged to make reservations for dining or drinks on the deck. Should you have any questions regarding the current Covid protection status at the club, don\'t hesitate to call the office.','Covid-19 Precautions','The Commodore and Board of Directors are updating club policies based on guidance from the Monterey County Health Department and California state health officials. ','inherit','closed','closed','','266-revision-v1','','','2021-04-08 08:54:29','2021-04-08 08:54:29','',266,'http://mpycdev.theomggroup.com/?p=1139',0,'revision','',0);
INSERT INTO `smrc_posts` VALUES (1140,1,'2021-04-09 09:18:42','2021-04-09 09:18:42','After a year\'s absence due to the Coronavirus pandemic, the Spinnaker Cup and California Offshore Race Week are set to return to MPYC. The prestigious multi-leg offshore regatta is will start with the Spinnaker Cup May 29-30. The Cup is the first leg of the competition hosted jointly by Encinal YC, Monterey Peninsula YC, Santa Barbara YC and San Diego YC.\n\nThe Spinnaker Cup course runs from San Francisco Bay to Monterey. Sailors then tackle leg 2 from MPYC to Santa Barbara Yacht Club in the Coastal Cup. The final test is the final leg from Santa Barbara to San Diego in the SoCal 300. Scores from all three legs are combined to determine the overall CA500 winner of the week-long event.\n\n[caption id=\"attachment_1240\" align=\"alignright\" width=\"320\"]<img class=\"wp-image-1240 size-medium\" src=\"http://mpycdev.theomggroup.com/wp-content/uploads/2021/03/luckyduck-320x168.jpg\" alt=\"\" width=\"320\" height=\"168\" /> Dave MacEwen\'s Lucky Duck[/caption]\n\nMPYC\'s own Dave MacEwen and his Lucky Duck team claimed top honors in the event in 2018 on the familiar blue Santa Cruz 52. Lucky Duck took top honors in the Spinnaker Cup, second in the Coastal Cup and 3rd in the SoCall 300. Lucky Duck won both it\'s division and in points overall, marking the skipper\'s best performance since the inaugural California Offshore Race Week competitio\n\nMPYC Vice Commodore Scott Brubaker is the MPYC organizer for the event and is excited the big boats are returning after a year off. \"We were worried the Spinnaker Cup might be delayed again because of Covid restrictions from the state,\" he said. \"But case numbers are dropping, new precautions are in place, and we\'re looking forward to a great event.\"\n\nLearn more about Spinnaker Cup and CORW <a href=\"https://offshoreraceweek.com/\">here</a>.','Spinnaker Cup 2021','After a year\'s absence due to the Coronavirus pandemic, the Spinnaker Cup and California Offshore Race Week are set to return to MPYC.','inherit','closed','closed','','232-autosave-v1','','','2021-04-09 09:18:42','2021-04-09 09:18:42','',232,'http://mpycdev.theomggroup.com/?p=1140',0,'revision','',0);
INSERT INTO `smrc_posts` VALUES (1141,1,'2021-04-08 09:25:17','2021-04-08 09:25:17','','spinnaker','','inherit','','closed','','spinnaker','','','2021-04-08 09:25:17','2021-04-08 09:25:17','',232,'http://mpycdev.theomggroup.com/wp-content/uploads/2016/02/spinnaker.jpg',0,'attachment','image/jpeg',0);
INSERT INTO `smrc_posts` VALUES (1142,1,'2021-04-08 09:26:19','2021-04-08 09:26:19','After a year\'s absence due to the Coronavirus pandemic, the Spinnaker Cup and California Offshore Race Week are set to return to MPYC. The prestigious multi-leg offshore regatta is will start with the Spinnaker Cup May 29-30. The Cup is the first leg of the competition hosted jointly by Encinal YC, Monterey Peninsula YC, Santa Barbara YC and San Diego YC.\r\n\r\nThe Spinnaker Cup course runs from San Francisco Bay to Monterey. Sailors then tackle leg 2 from MPYC to Santa Barbara Yacht Club in the Coastal Cup. The final test is the final leg from Santa Barbara to San Diego in the SoCal 300. Scores from all three legs are combined to determine the overall CA500 winner of the week-long event.\r\n\r\nMPYC\'s own Dave MacEwen and his Lucky Duck team claimed top honors in the event in 2018 on the familiar blue Santa Cruz 52. Lucky Duck took top honors in the Spinnaker Cup, second in the Coastal Cup and 3rd in the SoCall 300. Lucky Duck won both it\'s division and in points overall.\r\n\r\nMPYC Vice Commodore Scott Brubaker is the MPYC organizer for the event and is excited the big boats are returning after a year off. \"We were worried the Spinnaker Cup might be delayed again because of Covid restrictions from the state,\" he said. \"But case numbers are dropping, new precautions are in place, and we\'re looking forward to a great event.\"\r\n\r\nLearn more about Spinnaker Cup and CORW <a href=\"https://offshoreraceweek.com/\">here</a>.','Spinnaker Cup 2021','After a year\'s absence due to the Coronavirus pandemic, the Spinnaker Cup and California Offshore Race Week are set to return to MPYC.','inherit','closed','closed','','232-revision-v1','','','2021-04-08 09:26:19','2021-04-08 09:26:19','',232,'http://mpycdev.theomggroup.com/?p=1142',0,'revision','',0);
INSERT INTO `smrc_posts` VALUES (1143,1,'2021-04-08 09:36:09','2021-04-08 09:36:09','','adultdingy','','inherit','','closed','','adultdingy','','','2021-04-08 09:36:09','2021-04-08 09:36:09','',230,'http://mpycdev.theomggroup.com/wp-content/uploads/2016/02/adultdingy.jpg',0,'attachment','image/jpeg',0);
INSERT INTO `smrc_posts` VALUES (1144,1,'2021-04-08 09:42:48','2021-04-08 09:42:48','<span dir=\"ltr\">The new Adult Dinghy Sailing Program is underway. Hosted by coordinator Heidi Hall, a hearty group of adults took them helm of the club Opti\'s and Lasers, most often used by our juniors. The new program gives the older crowd a chance to get hands on learning. All March sessions were filled to capacity and as restrictions from Covid-19 ease, Heidi is expecting full sessions for the foreseeable future. </span>\n\n<span dir=\"ltr\">The program runs on </span><span dir=\"ltr\">Saturdays with the exception of Saturday, April 17th </span><span dir=\"ltr\">when the SUP Clinic will take place. </span><span dir=\"ltr\">If you have always wanted to sail your own boat or would </span><span dir=\"ltr\">like to volunteer please contact </span><a href=\"mailto:adultsailing@mpyc.org\" target=\"_blank\" rel=\"noopener\"><span dir=\"ltr\">adultsailing@mpyc.org</span></a><span dir=\"ltr\"> to </span><span dir=\"ltr\">join the fun! These 2.5 hour dinghy sessions provide </span><span dir=\"ltr\">MPYC members a chance to sail in Optis and Lasers in </span><span dir=\"ltr\">the harbor and on the Bay. This is a fun, relaxed, and supportive </span><span dir=\"ltr\">sailing environment where everyone progresses at his/her/</span><span dir=\"ltr\">their own pace and comfort! In addition to personalized </span><span dir=\"ltr\">sailing instruction, you’ll meet new friends to socialize </span><span dir=\"ltr\">with back at the club.</span>\n\n<span dir=\"ltr\">We hope to see you down at K Dock!</span>','Adults in Dinghys',' Suspendisse in molestie justo. Aliquam vestibulum est nec ultrices egestas. Vestibulum id risus ex. Nam pharetra nunc in ligula laoreet auctor. ','inherit','closed','closed','','230-autosave-v1','','','2021-04-08 09:42:48','2021-04-08 09:42:48','',230,'http://mpycdev.theomggroup.com/?p=1144',0,'revision','',0);
INSERT INTO `smrc_posts` VALUES (1145,1,'2021-04-08 09:43:30','2021-04-08 09:43:30','<span dir=\"ltr\">The new Adult Dinghy Sailing Program is underway. Hosted by coordinator Heidi Hall, a hearty group of adults took them helm of the club Opti\'s and Lasers, most often used by our juniors. The new program gives the older crowd a chance to get hands on learning. All March sessions were filled to capacity and as restrictions from Covid-19 ease, Heidi is expecting full sessions for the foreseeable future. </span>\r\n\r\n<span dir=\"ltr\">The program runs on </span><span dir=\"ltr\">Saturdays with the exception of Saturday, April 17th </span><span dir=\"ltr\">when the SUP Clinic will take place. </span><span dir=\"ltr\">If you have always wanted to sail your own boat or would </span><span dir=\"ltr\">like to volunteer please contact </span><a href=\"mailto:adultsailing@mpyc.org\" target=\"_blank\" rel=\"noopener\"><span dir=\"ltr\">adultsailing@mpyc.org</span></a><span dir=\"ltr\"> to </span><span dir=\"ltr\">join the fun! These 2.5 hour dinghy sessions provide </span><span dir=\"ltr\">MPYC members a chance to sail in Optis and Lasers in </span><span dir=\"ltr\">the harbor and on the Bay. This is a fun, relaxed, and supportive </span><span dir=\"ltr\">sailing environment where everyone progresses at his/her/</span><span dir=\"ltr\">their own pace and comfort! In addition to personalized </span><span dir=\"ltr\">sailing instruction, you’ll meet new friends to socialize </span><span dir=\"ltr\">with back at the club.</span>\r\n\r\n<span dir=\"ltr\">We hope to see you down at K Dock!</span>','Adults in Dinghys','The new Adult Dinghy Sailing Program is underway. Hosted by coordinator Heidi Hall, a hearty group of adults took them helm of the club Opti\'s and Lasers, most often used by our juniors.','inherit','closed','closed','','230-revision-v1','','','2021-04-08 09:43:30','2021-04-08 09:43:30','',230,'http://mpycdev.theomggroup.com/?p=1145',0,'revision','',0);
INSERT INTO `smrc_posts` VALUES (1146,1,'2021-04-08 09:48:24','2021-04-08 09:48:24','','slider-shieldsnc','','inherit','','closed','','slider-shieldsnc','','','2021-04-08 09:48:24','2021-04-08 09:48:24','',837,'http://mpycdev.theomggroup.com/wp-content/uploads/2021/04/slider-shieldsnc.jpg',0,'attachment','image/jpeg',0);
INSERT INTO `smrc_posts` VALUES (1147,1,'2021-04-08 10:18:14','2021-04-08 10:18:14','[bt_section layout=\"wide\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\"][bt_slider height=\"medium\" auto_play=\"5000\" hide_arrows=\"\" hide_paging=\"\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item image=\"1048\" el_class=\"\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1146\" el_class=\"btLightSkin\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1025\" el_class=\"\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1026\" el_class=\"btLightSkin\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1049\" el_class=\"btLightSkin\" el_style=\"\"][/bt_slider_item][/bt_slider][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"dark\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#b71234\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\"][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\r\n<h4 style=\"text-align: center;\"><em>founded 1953 in historic Monterey, California</em></h4>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSemiSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"2/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Our Club\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"A non-profit organization, MPYC is a yachting and social club comprised of adult and junior members with an interest in coming together to share in boating, sailing, yacht racing and social activities. Membership is not limited to boat owners.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/3\"][/bt_column][/bt_row][bt_row][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1068\" caption_text=\"View\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption=\"Double room\" show_titles=\"no\" caption_title=\"Room details\"][bt_header superheadline=\"CORINTHIAN SPIRIT\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Racing\" headline_size=\"medium\" dash=\"top\" subheadline=\"MPYC has built a reputation for top-notch competitive sailing. We host over 100 races per year and have hosted a variety of national championships.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1071\" caption_text=\"\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"PASSION\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Cruising\" headline_size=\"medium\" dash=\"top\" subheadline=\"Our members feature both power and sailboat owners. It\'s our great honor to live along California\'s Monterey Bay and enjoy the scenic vistas and marine wildlife.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1074\" caption_text=\"\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"DRIVE\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Rowing\" headline_size=\"medium\" dash=\"top\" subheadline=\"Our beginning, recreational and advanced rowers enjoy short and long distance local routes in addition to competition in local, West Coast and U.S. regattas. \" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1070\" caption_text=\"\" size=\"medium\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"COMMITMENT\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Youth Sailing\" headline_size=\"medium\" dash=\"top\" subheadline=\"Since its inception, Monterey Peninsula Yacht Club\'s has been proud to invest in the future of sailing and our youth to foster a better future for all us, and our club.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#e5e5e5\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"323\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"width: 60px; margin-top: -28px;\"][/bt_image][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"5/12\"][/bt_column][bt_column width=\"7/12\" align=\"right\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Activities\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Phasellus blandit a massa vitae congue. Nam ex massa, mattis ut sapien sit amet, consequat sodales risus. Sed interdum, ligula et lobortis faucibus, sem sem placerat augue, eget scelerisque turpis lorem et tellus.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][/bt_column][/bt_row][/bt_section][bt_section layout=\"wide\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"dark\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#e5e5e5\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1116\" caption_title=\"On the Water\" caption_text=\"Fun\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Fun\" headline=\"On the Water\" headline_size=\"medium\" dash=\"top\" subheadline=\"Whether you\'re guest crew or a club member, from sailing, boating or paddle boarding, there\'s fun to be had on the water in the harbor on on the Bay.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1115\" caption_title=\"Celebrations\" caption_text=\"Club\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Club\" headline=\"Celebrations\" headline_size=\"medium\" dash=\"top\" subheadline=\"From holiday celebrations, special events and annual gatherings, there\'s always something happening at the club.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1114\" caption_title=\"Dining\" caption_text=\"MPYC\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"MPYC\" headline=\"Dining\" headline_size=\"medium\" dash=\"top\" subheadline=\"From fine dining in the Kirkpatrick Dining Room or enjoying a burger on the Bear Flag Bar deck overlooking Monterey harbor, no one goes hungry at MPYC.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1117\" caption_title=\"Education\" caption_text=\"Safety\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Safety\" headline=\"Education\" headline_size=\"medium\" dash=\"top\" subheadline=\"Committed to safe and proper use of the Monterey Bay National Marine Sanctuary, MPYC is active in a variety of safety and ecological awareness events.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_image][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_slider height=\"auto\" auto_play=\"\" hide_arrows=\"\" hide_paging=\"btSliderHidePaging\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/6\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1088\" caption_text=\"\" size=\"\" shape=\"circle\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][/bt_image][bt_header superheadline=\"MPYC\" headline=\"Mission\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][bt_column_inner width=\"5/6\"][bt_text]\r\n<blockquote>To connect our members and our diverse community to the boundless recreational opportunities and proper stewardship of the Monterey Bay and the Pacific Ocean.</blockquote>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/6\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1088\" caption_text=\"\" size=\"\" shape=\"circle\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][/bt_image][bt_header superheadline=\"MPYC\" headline=\"Vision\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][bt_column_inner width=\"5/6\"][bt_text]\r\n<blockquote>To actively promote the Monterey Peninsula Yacht Club as a prominent West Coast destination of choice for Corinthian spirit yacht racing, recreational boating, rowing and cruising.</blockquote>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/6\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1088\" caption_text=\"\" size=\"\" shape=\"circle\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][/bt_image][bt_header superheadline=\"MPYC\" headline=\"Commitment\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][bt_column_inner width=\"5/6\"][bt_text]\r\n<blockquote>To supporting a diverse membership that fosters inclusiveness, camaraderie, friendship, community involvement and leadership with the goal of advancing safe and sustainable maritime ecological practices.</blockquote>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][/bt_slider][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/3\" align=\"left\" vertical_align=\"btMiddleVertical\" border=\"no_border\" cell_padding=\"btDoublePadding\" animation=\"animate animate-fadein\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"#e5e5e5\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"MPYC\" headline=\"Clubhouse\" headline_size=\"large\" dash=\"bottom\" subheadline=\"Our clubhouse on Wharf II at the Monterey Harbor is home to the Kilpatrick Dining Room and Bear Flag Bar. We are proud to host a variety of events including corporate gatherings, receptions and seminars.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_button text=\"READ MORE\" icon=\"no_icon\" url=\"\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"ExtraSmall\" width=\"Normal\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"2/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_slider height=\"auto\" auto_play=\"\" hide_arrows=\"\" hide_paging=\"btSliderHidePaging\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1127\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1128\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1129\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][/bt_slider][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"yes\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"7/12\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Club News\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Latest happenings and announcements at MPYC\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"5/12\"][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_latest_posts number=\"3\" category=\"\" format=\"horizontal\" post_type=\"blog\" show_excerpt=\"yes\" show_date=\"yes\" show_author=\"no\" el_class=\"\" el_style=\"\"][/bt_latest_posts][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"1092\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"0.3\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Follow us\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Find out what\'s new at MPYC\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_icons][bt_icon icon=\"fa_f09a\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f099\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f16d\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_column][/bt_row][/bt_section]','MPYC Home','','inherit','closed','closed','','837-revision-v1','','','2021-04-08 10:18:14','2021-04-08 10:18:14','',837,'http://mpycdev.theomggroup.com/?p=1147',0,'revision','',0);
INSERT INTO `smrc_posts` VALUES (1148,1,'2021-04-08 10:21:18','2021-04-08 10:21:18','','slider-phrf','','inherit','','closed','','slider-phrf','','','2021-04-08 10:21:18','2021-04-08 10:21:18','',837,'http://mpycdev.theomggroup.com/wp-content/uploads/2021/04/slider-phrf.jpg',0,'attachment','image/jpeg',0);
INSERT INTO `smrc_posts` VALUES (1149,1,'2021-04-08 10:21:22','2021-04-08 10:21:22','','slider-santanas','','inherit','','closed','','slider-santanas','','','2021-04-08 10:21:22','2021-04-08 10:21:22','',837,'http://mpycdev.theomggroup.com/wp-content/uploads/2021/04/slider-santanas.jpg',0,'attachment','image/jpeg',0);
INSERT INTO `smrc_posts` VALUES (1150,1,'2021-04-08 10:21:26','2021-04-08 10:21:26','','slider-shields','','inherit','','closed','','slider-shields','','','2021-04-08 10:21:26','2021-04-08 10:21:26','',837,'http://mpycdev.theomggroup.com/wp-content/uploads/2021/04/slider-shields.jpg',0,'attachment','image/jpeg',0);
INSERT INTO `smrc_posts` VALUES (1151,1,'2021-04-08 10:24:25','2021-04-08 10:24:25','[bt_section layout=\"wide\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\"][bt_slider height=\"medium\" auto_play=\"5000\" hide_arrows=\"\" hide_paging=\"\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item image=\"1148\" el_class=\"\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1048\" el_class=\"\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1027\" el_class=\"\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1048\" el_class=\"\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1150\" el_class=\"btLightSkin\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1025\" el_class=\"\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1149\" el_class=\"\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1049\" el_class=\"btLightSkin\" el_style=\"\"][/bt_slider_item][/bt_slider][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"dark\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#b71234\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\"][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\r\n<h4 style=\"text-align: center;\"><em>founded 1953 in historic Monterey, California</em></h4>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSemiSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"2/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Our Club\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"A non-profit organization, MPYC is a yachting and social club comprised of adult and junior members with an interest in coming together to share in boating, sailing, yacht racing and social activities. Membership is not limited to boat owners.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/3\"][/bt_column][/bt_row][bt_row][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1068\" caption_text=\"View\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption=\"Double room\" show_titles=\"no\" caption_title=\"Room details\"][bt_header superheadline=\"CORINTHIAN SPIRIT\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Racing\" headline_size=\"medium\" dash=\"top\" subheadline=\"MPYC has built a reputation for top-notch competitive sailing. We host over 100 races per year and have hosted a variety of national championships.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1071\" caption_text=\"\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"PASSION\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Cruising\" headline_size=\"medium\" dash=\"top\" subheadline=\"Our members feature both power and sailboat owners. It\'s our great honor to live along California\'s Monterey Bay and enjoy the scenic vistas and marine wildlife.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1074\" caption_text=\"\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"DRIVE\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Rowing\" headline_size=\"medium\" dash=\"top\" subheadline=\"Our beginning, recreational and advanced rowers enjoy short and long distance local routes in addition to competition in local, West Coast and U.S. regattas. \" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1070\" caption_text=\"\" size=\"medium\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"COMMITMENT\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Youth Sailing\" headline_size=\"medium\" dash=\"top\" subheadline=\"Since its inception, Monterey Peninsula Yacht Club\'s has been proud to invest in the future of sailing and our youth to foster a better future for all us, and our club.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#e5e5e5\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"323\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"width: 60px; margin-top: -28px;\"][/bt_image][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"5/12\"][/bt_column][bt_column width=\"7/12\" align=\"right\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Activities\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Phasellus blandit a massa vitae congue. Nam ex massa, mattis ut sapien sit amet, consequat sodales risus. Sed interdum, ligula et lobortis faucibus, sem sem placerat augue, eget scelerisque turpis lorem et tellus.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][/bt_column][/bt_row][/bt_section][bt_section layout=\"wide\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"dark\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#e5e5e5\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1116\" caption_title=\"On the Water\" caption_text=\"Fun\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Fun\" headline=\"On the Water\" headline_size=\"medium\" dash=\"top\" subheadline=\"Whether you\'re guest crew or a club member, from sailing, boating or paddle boarding, there\'s fun to be had on the water in the harbor on on the Bay.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1115\" caption_title=\"Celebrations\" caption_text=\"Club\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Club\" headline=\"Celebrations\" headline_size=\"medium\" dash=\"top\" subheadline=\"From holiday celebrations, special events and annual gatherings, there\'s always something happening at the club.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1114\" caption_title=\"Dining\" caption_text=\"MPYC\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"MPYC\" headline=\"Dining\" headline_size=\"medium\" dash=\"top\" subheadline=\"From fine dining in the Kirkpatrick Dining Room or enjoying a burger on the Bear Flag Bar deck overlooking Monterey harbor, no one goes hungry at MPYC.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1117\" caption_title=\"Education\" caption_text=\"Safety\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Safety\" headline=\"Education\" headline_size=\"medium\" dash=\"top\" subheadline=\"Committed to safe and proper use of the Monterey Bay National Marine Sanctuary, MPYC is active in a variety of safety and ecological awareness events.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_image][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_slider height=\"auto\" auto_play=\"\" hide_arrows=\"\" hide_paging=\"btSliderHidePaging\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/6\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1088\" caption_text=\"\" size=\"\" shape=\"circle\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][/bt_image][bt_header superheadline=\"MPYC\" headline=\"Mission\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][bt_column_inner width=\"5/6\"][bt_text]\r\n<blockquote>To connect our members and our diverse community to the boundless recreational opportunities and proper stewardship of the Monterey Bay and the Pacific Ocean.</blockquote>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/6\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1088\" caption_text=\"\" size=\"\" shape=\"circle\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][/bt_image][bt_header superheadline=\"MPYC\" headline=\"Vision\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][bt_column_inner width=\"5/6\"][bt_text]\r\n<blockquote>To actively promote the Monterey Peninsula Yacht Club as a prominent West Coast destination of choice for Corinthian spirit yacht racing, recreational boating, rowing and cruising.</blockquote>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/6\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1088\" caption_text=\"\" size=\"\" shape=\"circle\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][/bt_image][bt_header superheadline=\"MPYC\" headline=\"Commitment\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][bt_column_inner width=\"5/6\"][bt_text]\r\n<blockquote>To supporting a diverse membership that fosters inclusiveness, camaraderie, friendship, community involvement and leadership with the goal of advancing safe and sustainable maritime ecological practices.</blockquote>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][/bt_slider][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/3\" align=\"left\" vertical_align=\"btMiddleVertical\" border=\"no_border\" cell_padding=\"btDoublePadding\" animation=\"animate animate-fadein\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"#e5e5e5\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"MPYC\" headline=\"Clubhouse\" headline_size=\"large\" dash=\"bottom\" subheadline=\"Our clubhouse on Wharf II at the Monterey Harbor is home to the Kilpatrick Dining Room and Bear Flag Bar. We are proud to host a variety of events including corporate gatherings, receptions and seminars.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_button text=\"READ MORE\" icon=\"no_icon\" url=\"\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"ExtraSmall\" width=\"Normal\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"2/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_slider height=\"auto\" auto_play=\"\" hide_arrows=\"\" hide_paging=\"btSliderHidePaging\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1127\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1128\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1129\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][/bt_slider][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"yes\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"7/12\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Club News\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Latest happenings and announcements at MPYC\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"5/12\"][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_latest_posts number=\"3\" category=\"\" format=\"horizontal\" post_type=\"blog\" show_excerpt=\"yes\" show_date=\"yes\" show_author=\"no\" el_class=\"\" el_style=\"\"][/bt_latest_posts][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"1092\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"0.3\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Follow us\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Find out what\'s new at MPYC\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_icons][bt_icon icon=\"fa_f09a\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f099\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f16d\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_column][/bt_row][/bt_section]','MPYC Home','','inherit','closed','closed','','837-revision-v1','','','2021-04-08 10:24:25','2021-04-08 10:24:25','',837,'http://mpycdev.theomggroup.com/?p=1151',0,'revision','',0);
INSERT INTO `smrc_posts` VALUES (1152,1,'2021-04-08 10:27:54','2021-04-08 10:27:54','[bt_section layout=\"wide\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\"][bt_slider height=\"medium\" auto_play=\"5000\" hide_arrows=\"\" hide_paging=\"\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item image=\"1148\" el_class=\"\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1048\" el_class=\"\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1027\" el_class=\"\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1048\" el_class=\"\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1150\" el_class=\"btLightSkin\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1025\" el_class=\"\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1028\" el_class=\"\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1049\" el_class=\"btLightSkin\" el_style=\"\"][/bt_slider_item][/bt_slider][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"dark\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#b71234\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\"][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\r\n<h4 style=\"text-align: center;\"><em>founded 1953 in historic Monterey, California</em></h4>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSemiSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"2/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Our Club\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"A non-profit organization, MPYC is a yachting and social club comprised of adult and junior members with an interest in coming together to share in boating, sailing, yacht racing and social activities. Membership is not limited to boat owners.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/3\"][/bt_column][/bt_row][bt_row][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1068\" caption_text=\"View\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption=\"Double room\" show_titles=\"no\" caption_title=\"Room details\"][bt_header superheadline=\"CORINTHIAN SPIRIT\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Racing\" headline_size=\"medium\" dash=\"top\" subheadline=\"MPYC has built a reputation for top-notch competitive sailing. We host over 100 races per year and have hosted a variety of national championships.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1071\" caption_text=\"\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"PASSION\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Cruising\" headline_size=\"medium\" dash=\"top\" subheadline=\"Our members feature both power and sailboat owners. It\'s our great honor to live along California\'s Monterey Bay and enjoy the scenic vistas and marine wildlife.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1074\" caption_text=\"\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"DRIVE\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Rowing\" headline_size=\"medium\" dash=\"top\" subheadline=\"Our beginning, recreational and advanced rowers enjoy short and long distance local routes in addition to competition in local, West Coast and U.S. regattas. \" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1070\" caption_text=\"\" size=\"medium\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"COMMITMENT\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Youth Sailing\" headline_size=\"medium\" dash=\"top\" subheadline=\"Since its inception, Monterey Peninsula Yacht Club\'s has been proud to invest in the future of sailing and our youth to foster a better future for all us, and our club.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#e5e5e5\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"323\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"width: 60px; margin-top: -28px;\"][/bt_image][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"5/12\"][/bt_column][bt_column width=\"7/12\" align=\"right\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Activities\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Phasellus blandit a massa vitae congue. Nam ex massa, mattis ut sapien sit amet, consequat sodales risus. Sed interdum, ligula et lobortis faucibus, sem sem placerat augue, eget scelerisque turpis lorem et tellus.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][/bt_column][/bt_row][/bt_section][bt_section layout=\"wide\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"dark\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#e5e5e5\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1116\" caption_title=\"On the Water\" caption_text=\"Fun\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Fun\" headline=\"On the Water\" headline_size=\"medium\" dash=\"top\" subheadline=\"Whether you\'re guest crew or a club member, from sailing, boating or paddle boarding, there\'s fun to be had on the water in the harbor on on the Bay.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1115\" caption_title=\"Celebrations\" caption_text=\"Club\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Club\" headline=\"Celebrations\" headline_size=\"medium\" dash=\"top\" subheadline=\"From holiday celebrations, special events and annual gatherings, there\'s always something happening at the club.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1114\" caption_title=\"Dining\" caption_text=\"MPYC\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"MPYC\" headline=\"Dining\" headline_size=\"medium\" dash=\"top\" subheadline=\"From fine dining in the Kirkpatrick Dining Room or enjoying a burger on the Bear Flag Bar deck overlooking Monterey harbor, no one goes hungry at MPYC.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1117\" caption_title=\"Education\" caption_text=\"Safety\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Safety\" headline=\"Education\" headline_size=\"medium\" dash=\"top\" subheadline=\"Committed to safe and proper use of the Monterey Bay National Marine Sanctuary, MPYC is active in a variety of safety and ecological awareness events.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_image][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_slider height=\"auto\" auto_play=\"\" hide_arrows=\"\" hide_paging=\"btSliderHidePaging\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/6\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1088\" caption_text=\"\" size=\"\" shape=\"circle\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][/bt_image][bt_header superheadline=\"MPYC\" headline=\"Mission\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][bt_column_inner width=\"5/6\"][bt_text]\r\n<blockquote>To connect our members and our diverse community to the boundless recreational opportunities and proper stewardship of the Monterey Bay and the Pacific Ocean.</blockquote>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/6\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1088\" caption_text=\"\" size=\"\" shape=\"circle\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][/bt_image][bt_header superheadline=\"MPYC\" headline=\"Vision\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][bt_column_inner width=\"5/6\"][bt_text]\r\n<blockquote>To actively promote the Monterey Peninsula Yacht Club as a prominent West Coast destination of choice for Corinthian spirit yacht racing, recreational boating, rowing and cruising.</blockquote>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/6\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1088\" caption_text=\"\" size=\"\" shape=\"circle\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][/bt_image][bt_header superheadline=\"MPYC\" headline=\"Commitment\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][bt_column_inner width=\"5/6\"][bt_text]\r\n<blockquote>To supporting a diverse membership that fosters inclusiveness, camaraderie, friendship, community involvement and leadership with the goal of advancing safe and sustainable maritime ecological practices.</blockquote>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][/bt_slider][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/3\" align=\"left\" vertical_align=\"btMiddleVertical\" border=\"no_border\" cell_padding=\"btDoublePadding\" animation=\"animate animate-fadein\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"#e5e5e5\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"MPYC\" headline=\"Clubhouse\" headline_size=\"large\" dash=\"bottom\" subheadline=\"Our clubhouse on Wharf II at the Monterey Harbor is home to the Kilpatrick Dining Room and Bear Flag Bar. We are proud to host a variety of events including corporate gatherings, receptions and seminars.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_button text=\"READ MORE\" icon=\"no_icon\" url=\"\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"ExtraSmall\" width=\"Normal\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"2/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_slider height=\"auto\" auto_play=\"\" hide_arrows=\"\" hide_paging=\"btSliderHidePaging\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1127\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1128\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1129\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][/bt_slider][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"yes\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"7/12\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Club News\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Latest happenings and announcements at MPYC\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"5/12\"][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_latest_posts number=\"3\" category=\"\" format=\"horizontal\" post_type=\"blog\" show_excerpt=\"yes\" show_date=\"yes\" show_author=\"no\" el_class=\"\" el_style=\"\"][/bt_latest_posts][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"1092\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"0.3\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Follow us\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Find out what\'s new at MPYC\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_icons][bt_icon icon=\"fa_f09a\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f099\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f16d\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_column][/bt_row][/bt_section]','MPYC Home','','inherit','closed','closed','','837-revision-v1','','','2021-04-08 10:27:54','2021-04-08 10:27:54','',837,'http://mpycdev.theomggroup.com/?p=1152',0,'revision','',0);
INSERT INTO `smrc_posts` VALUES (1153,1,'2021-04-08 10:40:14','2021-04-08 10:40:14','[bt_section layout=\"wide\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\"][bt_slider height=\"medium\" auto_play=\"5000\" hide_arrows=\"\" hide_paging=\"\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item image=\"1148\" el_class=\"\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1048\" el_class=\"\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1027\" el_class=\"\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1048\" el_class=\"\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1150\" el_class=\"btLightSkin\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1025\" el_class=\"\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1028\" el_class=\"\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1049\" el_class=\"btLightSkin\" el_style=\"\"][/bt_slider_item][/bt_slider][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"dark\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#b71234\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\"][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\r\n<h4 style=\"text-align: center;\"><em>founded 1953 in historic Monterey, California</em></h4>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSemiSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"2/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Our Club\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"A non-profit organization, MPYC is a yachting and social club comprised of adult and junior members with an interest in coming together to share in boating, sailing, yacht racing and social activities. Membership is not limited to boat owners.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/3\"][/bt_column][/bt_row][bt_row][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1068\" caption_text=\"View\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption=\"Double room\" show_titles=\"no\" caption_title=\"Room details\"][bt_header superheadline=\"CORINTHIAN SPIRIT\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Racing\" headline_size=\"medium\" dash=\"top\" subheadline=\"MPYC has built a reputation for top-notch competitive sailing. We host over 100 races per year and have hosted a variety of national championships.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1071\" caption_text=\"\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"PASSION\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Cruising\" headline_size=\"medium\" dash=\"top\" subheadline=\"Our members feature both power and sailboat owners. It\'s our great honor to live along California\'s Monterey Bay and enjoy the scenic vistas and marine wildlife.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1074\" caption_text=\"\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"DRIVE\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Rowing\" headline_size=\"medium\" dash=\"top\" subheadline=\"Our beginning, recreational and advanced rowers enjoy short and long distance local routes in addition to competition in local, West Coast and U.S. regattas. \" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1070\" caption_text=\"\" size=\"medium\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"COMMITMENT\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Youth Sailing\" headline_size=\"medium\" dash=\"top\" subheadline=\"Since its inception, Monterey Peninsula Yacht Club\'s has been proud to invest in the future of sailing and our youth to foster a better future for all us, and our club.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#e5e5e5\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"323\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"width: 60px; margin-top: -28px;\"][/bt_image][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"5/12\"][/bt_column][bt_column width=\"7/12\" align=\"right\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Activities\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Whether on the water or on shore, there are activities for all ages at MPYC. From competitive sailing, ocean rowing, cruising or paddle boarding on the water, to an array of events on land or in the clubhouse, we celebrate the Monterey Bay and work to preserve it for generations to come.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][/bt_column][/bt_row][/bt_section][bt_section layout=\"wide\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"dark\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#e5e5e5\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1116\" caption_title=\"On the Water\" caption_text=\"Fun\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Fun\" headline=\"On the Water\" headline_size=\"medium\" dash=\"top\" subheadline=\"Whether you\'re guest crew or a club member, from sailing, boating or paddle boarding, there\'s fun to be had on the water in the harbor on on the Bay.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1115\" caption_title=\"Celebrations\" caption_text=\"Club\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Club\" headline=\"Celebrations\" headline_size=\"medium\" dash=\"top\" subheadline=\"From holiday celebrations, special events and annual gatherings, there\'s always something happening at the club.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1114\" caption_title=\"Dining\" caption_text=\"MPYC\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"MPYC\" headline=\"Dining\" headline_size=\"medium\" dash=\"top\" subheadline=\"From fine dining in the Kirkpatrick Dining Room or enjoying a burger on the Bear Flag Bar deck overlooking Monterey harbor, no one goes hungry at MPYC.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1117\" caption_title=\"Education\" caption_text=\"Safety\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Safety\" headline=\"Education\" headline_size=\"medium\" dash=\"top\" subheadline=\"Committed to safe and proper use of the Monterey Bay National Marine Sanctuary, MPYC is active in a variety of safety and ecological awareness events.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_image][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_slider height=\"auto\" auto_play=\"\" hide_arrows=\"\" hide_paging=\"btSliderHidePaging\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/6\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1088\" caption_text=\"\" size=\"\" shape=\"circle\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][/bt_image][bt_header superheadline=\"MPYC\" headline=\"Mission\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][bt_column_inner width=\"5/6\"][bt_text]\r\n<blockquote>To connect our members and our diverse community to the boundless recreational opportunities and proper stewardship of the Monterey Bay and the Pacific Ocean.</blockquote>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/6\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1088\" caption_text=\"\" size=\"\" shape=\"circle\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][/bt_image][bt_header superheadline=\"MPYC\" headline=\"Vision\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][bt_column_inner width=\"5/6\"][bt_text]\r\n<blockquote>To actively promote the Monterey Peninsula Yacht Club as a prominent West Coast destination of choice for Corinthian spirit yacht racing, recreational boating, rowing and cruising.</blockquote>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/6\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1088\" caption_text=\"\" size=\"\" shape=\"circle\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][/bt_image][bt_header superheadline=\"MPYC\" headline=\"Commitment\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][bt_column_inner width=\"5/6\"][bt_text]\r\n<blockquote>To supporting a diverse membership that fosters inclusiveness, camaraderie, friendship, community involvement and leadership with the goal of advancing safe and sustainable maritime ecological practices.</blockquote>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][/bt_slider][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/3\" align=\"left\" vertical_align=\"btMiddleVertical\" border=\"no_border\" cell_padding=\"btDoublePadding\" animation=\"animate animate-fadein\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"#e5e5e5\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"MPYC\" headline=\"Clubhouse\" headline_size=\"large\" dash=\"bottom\" subheadline=\"Our clubhouse on Wharf II at the Monterey Harbor is home to the Kilpatrick Dining Room and Bear Flag Bar. We are proud to host a variety of events including corporate gatherings, receptions and seminars.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_button text=\"READ MORE\" icon=\"no_icon\" url=\"\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"ExtraSmall\" width=\"Normal\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"2/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_slider height=\"auto\" auto_play=\"\" hide_arrows=\"\" hide_paging=\"btSliderHidePaging\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1127\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1128\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1129\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][/bt_slider][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"yes\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"7/12\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Club News\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Latest happenings and announcements at MPYC\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"5/12\"][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_latest_posts number=\"3\" category=\"\" format=\"horizontal\" post_type=\"blog\" show_excerpt=\"yes\" show_date=\"yes\" show_author=\"no\" el_class=\"\" el_style=\"\"][/bt_latest_posts][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"1092\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"0.3\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Follow us\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Find out what\'s new at MPYC\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_icons][bt_icon icon=\"fa_f09a\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f099\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f16d\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_column][/bt_row][/bt_section]','MPYC Home','','inherit','closed','closed','','837-revision-v1','','','2021-04-08 10:40:14','2021-04-08 10:40:14','',837,'http://mpycdev.theomggroup.com/?p=1153',0,'revision','',0);
INSERT INTO `smrc_posts` VALUES (1154,1,'2021-04-08 10:41:40','2021-04-08 10:41:40','[bt_section layout=\"wide\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\"][bt_slider height=\"medium\" auto_play=\"5000\" hide_arrows=\"\" hide_paging=\"\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item image=\"1148\" el_class=\"\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1048\" el_class=\"\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1027\" el_class=\"\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1048\" el_class=\"\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1150\" el_class=\"btLightSkin\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1025\" el_class=\"\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1028\" el_class=\"\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1049\" el_class=\"btLightSkin\" el_style=\"\"][/bt_slider_item][/bt_slider][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"dark\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#b71234\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\"][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\r\n<h4 style=\"text-align: center;\"><em>founded 1953 in historic Monterey, California</em></h4>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSemiSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"2/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Our Club\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"A non-profit organization, MPYC is a yachting and social club comprised of adult and junior members with an interest in coming together to share in boating, sailing, yacht racing and social activities. Membership is not limited to boat owners.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/3\"][/bt_column][/bt_row][bt_row][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1068\" caption_text=\"View\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption=\"Double room\" show_titles=\"no\" caption_title=\"Room details\"][bt_header superheadline=\"CORINTHIAN SPIRIT\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Racing\" headline_size=\"medium\" dash=\"top\" subheadline=\"MPYC has built a reputation for top-notch competitive sailing. We host over 100 races per year and have hosted a variety of national championships.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1071\" caption_text=\"\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"PASSION\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Cruising\" headline_size=\"medium\" dash=\"top\" subheadline=\"Our members feature both power and sailboat owners. It\'s our great honor to live along California\'s Monterey Bay and enjoy the scenic vistas and marine wildlife.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1074\" caption_text=\"\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"DRIVE\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Rowing\" headline_size=\"medium\" dash=\"top\" subheadline=\"Our beginning, recreational and advanced rowers enjoy short and long distance local routes in addition to competition in local, West Coast and U.S. regattas. \" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1070\" caption_text=\"\" size=\"medium\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"COMMITMENT\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Youth Sailing\" headline_size=\"medium\" dash=\"top\" subheadline=\"Since its inception, Monterey Peninsula Yacht Club\'s has been proud to invest in the future of sailing and our youth to foster a better future for all us, and our club.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#e5e5e5\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"323\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"width: 60px; margin-top: -28px;\"][/bt_image][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"5/12\"][/bt_column][bt_column width=\"7/12\" align=\"right\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Activities\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Whether on the water or on shore, there are activities for all ages at MPYC. From competitive sailing, ocean rowing, cruising or paddle boarding on the water, to an array of events on land or in the clubhouse, we celebrate the Monterey Bay and work to preserve it year round.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][/bt_column][/bt_row][/bt_section][bt_section layout=\"wide\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"dark\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#e5e5e5\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1116\" caption_title=\"On the Water\" caption_text=\"Fun\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Fun\" headline=\"On the Water\" headline_size=\"medium\" dash=\"top\" subheadline=\"Whether you\'re guest crew or a club member, from sailing, boating or paddle boarding, there\'s fun to be had on the water in the harbor on on the Bay.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1115\" caption_title=\"Celebrations\" caption_text=\"Club\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Club\" headline=\"Celebrations\" headline_size=\"medium\" dash=\"top\" subheadline=\"From holiday celebrations, special events and annual gatherings, there\'s always something happening at the club.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1114\" caption_title=\"Dining\" caption_text=\"MPYC\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"MPYC\" headline=\"Dining\" headline_size=\"medium\" dash=\"top\" subheadline=\"From fine dining in the Kirkpatrick Dining Room or enjoying a burger on the Bear Flag Bar deck overlooking Monterey harbor, no one goes hungry at MPYC.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1117\" caption_title=\"Education\" caption_text=\"Safety\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Safety\" headline=\"Education\" headline_size=\"medium\" dash=\"top\" subheadline=\"Committed to safe and proper use of the Monterey Bay National Marine Sanctuary, MPYC is active in a variety of safety and ecological awareness events.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_image][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_slider height=\"auto\" auto_play=\"\" hide_arrows=\"\" hide_paging=\"btSliderHidePaging\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/6\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1088\" caption_text=\"\" size=\"\" shape=\"circle\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][/bt_image][bt_header superheadline=\"MPYC\" headline=\"Mission\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][bt_column_inner width=\"5/6\"][bt_text]\r\n<blockquote>To connect our members and our diverse community to the boundless recreational opportunities and proper stewardship of the Monterey Bay and the Pacific Ocean.</blockquote>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/6\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1088\" caption_text=\"\" size=\"\" shape=\"circle\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][/bt_image][bt_header superheadline=\"MPYC\" headline=\"Vision\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][bt_column_inner width=\"5/6\"][bt_text]\r\n<blockquote>To actively promote the Monterey Peninsula Yacht Club as a prominent West Coast destination of choice for Corinthian spirit yacht racing, recreational boating, rowing and cruising.</blockquote>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/6\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1088\" caption_text=\"\" size=\"\" shape=\"circle\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][/bt_image][bt_header superheadline=\"MPYC\" headline=\"Commitment\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][bt_column_inner width=\"5/6\"][bt_text]\r\n<blockquote>To supporting a diverse membership that fosters inclusiveness, camaraderie, friendship, community involvement and leadership with the goal of advancing safe and sustainable maritime ecological practices.</blockquote>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][/bt_slider][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/3\" align=\"left\" vertical_align=\"btMiddleVertical\" border=\"no_border\" cell_padding=\"btDoublePadding\" animation=\"animate animate-fadein\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"#e5e5e5\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"MPYC\" headline=\"Clubhouse\" headline_size=\"large\" dash=\"bottom\" subheadline=\"Our clubhouse on Wharf II at the Monterey Harbor is home to the Kilpatrick Dining Room and Bear Flag Bar. We are proud to host a variety of events including corporate gatherings, receptions and seminars.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_button text=\"READ MORE\" icon=\"no_icon\" url=\"\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"ExtraSmall\" width=\"Normal\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"2/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_slider height=\"auto\" auto_play=\"\" hide_arrows=\"\" hide_paging=\"btSliderHidePaging\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1127\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1128\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1129\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][/bt_slider][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"yes\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"7/12\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Club News\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Latest happenings and announcements at MPYC\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"5/12\"][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_latest_posts number=\"3\" category=\"\" format=\"horizontal\" post_type=\"blog\" show_excerpt=\"yes\" show_date=\"yes\" show_author=\"no\" el_class=\"\" el_style=\"\"][/bt_latest_posts][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"1092\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"0.3\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Follow us\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Find out what\'s new at MPYC\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_icons][bt_icon icon=\"fa_f09a\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f099\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f16d\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_column][/bt_row][/bt_section]','MPYC Home','','inherit','closed','closed','','837-revision-v1','','','2021-04-08 10:41:40','2021-04-08 10:41:40','',837,'http://mpycdev.theomggroup.com/?p=1154',0,'revision','',0);
INSERT INTO `smrc_posts` VALUES (1155,1,'2021-04-08 10:43:39','2021-04-08 10:43:39','[bt_section layout=\"wide\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\"][bt_slider height=\"medium\" auto_play=\"5000\" hide_arrows=\"\" hide_paging=\"\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item image=\"1148\" el_class=\"\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1048\" el_class=\"\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1027\" el_class=\"\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1048\" el_class=\"\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1150\" el_class=\"btLightSkin\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1025\" el_class=\"\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1028\" el_class=\"\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1049\" el_class=\"btLightSkin\" el_style=\"\"][/bt_slider_item][/bt_slider][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"dark\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#b71234\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\"][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\r\n<h4 style=\"text-align: center;\"><em>founded 1953 in historic Monterey, California</em></h4>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSemiSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"2/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Our Club\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"A non-profit organization, MPYC is a yachting and social club comprised of adult and junior members with an interest in coming together to share in boating, sailing, yacht racing and social activities. Membership is not limited to boat owners.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/3\"][/bt_column][/bt_row][bt_row][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1068\" caption_text=\"View\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption=\"Double room\" show_titles=\"no\" caption_title=\"Room details\"][bt_header superheadline=\"CORINTHIAN SPIRIT\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Racing\" headline_size=\"medium\" dash=\"top\" subheadline=\"MPYC has built a reputation for top-notch competitive sailing. We host over 100 races per year and have hosted a variety of national championships.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1071\" caption_text=\"\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"PASSION\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Cruising\" headline_size=\"medium\" dash=\"top\" subheadline=\"Our members feature both power and sailboat owners. It\'s our great honor to live along California\'s Monterey Bay and enjoy the scenic vistas and marine wildlife.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1074\" caption_text=\"\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"DRIVE\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Rowing\" headline_size=\"medium\" dash=\"top\" subheadline=\"Our beginning, recreational and advanced rowers enjoy short and long distance local routes in addition to competition in local, West Coast and U.S. regattas. \" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1070\" caption_text=\"\" size=\"medium\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"COMMITMENT\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Youth Sailing\" headline_size=\"medium\" dash=\"top\" subheadline=\"Since its inception, Monterey Peninsula Yacht Club\'s has been proud to invest in the future of sailing and our youth to foster a better future for all us, and our club.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#e5e5e5\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"323\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"width: 60px; margin-top: -28px;\"][/bt_image][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"5/12\"][/bt_column][bt_column width=\"7/12\" align=\"right\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Activities\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Whether on the water or onshore, there are activities for all ages at MPYC. From competitive sailing, ocean rowing, cruising or paddle boarding on the water, to an array of events on land or in the clubhouse, we celebrate the Monterey Bay and work to preserve it year-round.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][/bt_column][/bt_row][/bt_section][bt_section layout=\"wide\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"dark\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#e5e5e5\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1116\" caption_title=\"On the Water\" caption_text=\"Fun\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Fun\" headline=\"On the Water\" headline_size=\"medium\" dash=\"top\" subheadline=\"Whether you\'re guest crew or a club member, from sailing, boating or paddle boarding, there\'s fun to be had on the water in the harbor on on the Bay.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1115\" caption_title=\"Celebrations\" caption_text=\"Club\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Club\" headline=\"Celebrations\" headline_size=\"medium\" dash=\"top\" subheadline=\"From holiday celebrations, special events and annual gatherings, there\'s always something happening at the club.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1114\" caption_title=\"Dining\" caption_text=\"MPYC\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"MPYC\" headline=\"Dining\" headline_size=\"medium\" dash=\"top\" subheadline=\"From fine dining in the Kirkpatrick Dining Room or enjoying a burger on the Bear Flag Bar deck overlooking Monterey harbor, no one goes hungry at MPYC.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1117\" caption_title=\"Education\" caption_text=\"Safety\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Safety\" headline=\"Education\" headline_size=\"medium\" dash=\"top\" subheadline=\"Committed to safe and proper use of the Monterey Bay National Marine Sanctuary, MPYC is active in a variety of safety and ecological awareness events.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_image][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_slider height=\"auto\" auto_play=\"\" hide_arrows=\"\" hide_paging=\"btSliderHidePaging\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/6\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1088\" caption_text=\"\" size=\"\" shape=\"circle\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][/bt_image][bt_header superheadline=\"MPYC\" headline=\"Mission\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][bt_column_inner width=\"5/6\"][bt_text]\r\n<blockquote>To connect our members and our diverse community to the boundless recreational opportunities and proper stewardship of the Monterey Bay and the Pacific Ocean.</blockquote>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/6\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1088\" caption_text=\"\" size=\"\" shape=\"circle\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][/bt_image][bt_header superheadline=\"MPYC\" headline=\"Vision\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][bt_column_inner width=\"5/6\"][bt_text]\r\n<blockquote>To actively promote the Monterey Peninsula Yacht Club as a prominent West Coast destination of choice for Corinthian spirit yacht racing, recreational boating, rowing and cruising.</blockquote>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/6\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1088\" caption_text=\"\" size=\"\" shape=\"circle\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][/bt_image][bt_header superheadline=\"MPYC\" headline=\"Commitment\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][bt_column_inner width=\"5/6\"][bt_text]\r\n<blockquote>To supporting a diverse membership that fosters inclusiveness, camaraderie, friendship, community involvement and leadership with the goal of advancing safe and sustainable maritime ecological practices.</blockquote>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][/bt_slider][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/3\" align=\"left\" vertical_align=\"btMiddleVertical\" border=\"no_border\" cell_padding=\"btDoublePadding\" animation=\"animate animate-fadein\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"#e5e5e5\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"MPYC\" headline=\"Clubhouse\" headline_size=\"large\" dash=\"bottom\" subheadline=\"Our clubhouse on Wharf II at the Monterey Harbor is home to the Kilpatrick Dining Room and Bear Flag Bar. We are proud to host a variety of events including corporate gatherings, receptions and seminars.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_button text=\"READ MORE\" icon=\"no_icon\" url=\"\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"ExtraSmall\" width=\"Normal\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"2/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_slider height=\"auto\" auto_play=\"\" hide_arrows=\"\" hide_paging=\"btSliderHidePaging\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1127\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1128\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1129\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][/bt_slider][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"yes\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"7/12\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Club News\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Latest happenings and announcements at MPYC\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"5/12\"][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_latest_posts number=\"3\" category=\"\" format=\"horizontal\" post_type=\"blog\" show_excerpt=\"yes\" show_date=\"yes\" show_author=\"no\" el_class=\"\" el_style=\"\"][/bt_latest_posts][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"1092\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"0.3\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Follow us\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Find out what\'s new at MPYC\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_icons][bt_icon icon=\"fa_f09a\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f099\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f16d\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_column][/bt_row][/bt_section]','MPYC Home','','inherit','closed','closed','','837-revision-v1','','','2021-04-08 10:43:39','2021-04-08 10:43:39','',837,'http://mpycdev.theomggroup.com/?p=1155',0,'revision','',0);
INSERT INTO `smrc_posts` VALUES (1156,1,'2021-04-08 11:07:43','2021-04-08 11:07:43','','slider-cnidarian','','inherit','','closed','','slider-cnidarian','','','2021-04-08 11:07:43','2021-04-08 11:07:43','',837,'http://mpycdev.theomggroup.com/wp-content/uploads/2021/04/slider-cnidarian.jpg',0,'attachment','image/jpeg',0);
INSERT INTO `smrc_posts` VALUES (1157,1,'2021-04-08 11:09:19','2021-04-08 11:09:19','','slider-stillwater','','inherit','','closed','','slider-stillwater','','','2021-04-08 11:09:19','2021-04-08 11:09:19','',837,'http://mpycdev.theomggroup.com/wp-content/uploads/2021/04/slider-stillwater.jpg',0,'attachment','image/jpeg',0);
INSERT INTO `smrc_posts` VALUES (1158,1,'2021-04-08 11:10:12','2021-04-08 11:10:12','[bt_section layout=\"wide\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\"][bt_slider height=\"medium\" auto_play=\"5000\" hide_arrows=\"\" hide_paging=\"\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item image=\"1148\" el_class=\"\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1048\" el_class=\"\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1156\" el_class=\"\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1048\" el_class=\"\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1027\" el_class=\"\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1157\" el_class=\"\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1150\" el_class=\"btLightSkin\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1025\" el_class=\"\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1028\" el_class=\"\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1049\" el_class=\"btLightSkin\" el_style=\"\"][/bt_slider_item][/bt_slider][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"dark\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#b71234\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\"][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\r\n<h4 style=\"text-align: center;\"><em>founded 1953 in historic Monterey, California</em></h4>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSemiSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"2/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Our Club\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"A non-profit organization, MPYC is a yachting and social club comprised of adult and junior members with an interest in coming together to share in boating, sailing, yacht racing and social activities. Membership is not limited to boat owners.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/3\"][/bt_column][/bt_row][bt_row][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1068\" caption_text=\"View\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption=\"Double room\" show_titles=\"no\" caption_title=\"Room details\"][bt_header superheadline=\"CORINTHIAN SPIRIT\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Racing\" headline_size=\"medium\" dash=\"top\" subheadline=\"MPYC has built a reputation for top-notch competitive sailing. We host over 100 races per year and have hosted a variety of national championships.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1071\" caption_text=\"\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"PASSION\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Cruising\" headline_size=\"medium\" dash=\"top\" subheadline=\"Our members feature both power and sailboat owners. It\'s our great honor to live along California\'s Monterey Bay and enjoy the scenic vistas and marine wildlife.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1074\" caption_text=\"\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"DRIVE\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Rowing\" headline_size=\"medium\" dash=\"top\" subheadline=\"Our beginning, recreational and advanced rowers enjoy short and long distance local routes in addition to competition in local, West Coast and U.S. regattas. \" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1070\" caption_text=\"\" size=\"medium\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"COMMITMENT\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Youth Sailing\" headline_size=\"medium\" dash=\"top\" subheadline=\"Since its inception, Monterey Peninsula Yacht Club\'s has been proud to invest in the future of sailing and our youth to foster a better future for all us, and our club.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#e5e5e5\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"323\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"width: 60px; margin-top: -28px;\"][/bt_image][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"5/12\"][/bt_column][bt_column width=\"7/12\" align=\"right\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Activities\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Whether on the water or onshore, there are activities for all ages at MPYC. From competitive sailing, ocean rowing, cruising or paddle boarding on the water, to an array of events on land or in the clubhouse, we celebrate the Monterey Bay and work to preserve it year-round.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][/bt_column][/bt_row][/bt_section][bt_section layout=\"wide\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"dark\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#e5e5e5\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1116\" caption_title=\"On the Water\" caption_text=\"Fun\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Fun\" headline=\"On the Water\" headline_size=\"medium\" dash=\"top\" subheadline=\"Whether you\'re guest crew or a club member, from sailing, boating or paddle boarding, there\'s fun to be had on the water in the harbor on on the Bay.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1115\" caption_title=\"Celebrations\" caption_text=\"Club\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Club\" headline=\"Celebrations\" headline_size=\"medium\" dash=\"top\" subheadline=\"From holiday celebrations, special events and annual gatherings, there\'s always something happening at the club.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1114\" caption_title=\"Dining\" caption_text=\"MPYC\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"MPYC\" headline=\"Dining\" headline_size=\"medium\" dash=\"top\" subheadline=\"From fine dining in the Kirkpatrick Dining Room or enjoying a burger on the Bear Flag Bar deck overlooking Monterey harbor, no one goes hungry at MPYC.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1117\" caption_title=\"Education\" caption_text=\"Safety\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Safety\" headline=\"Education\" headline_size=\"medium\" dash=\"top\" subheadline=\"Committed to safe and proper use of the Monterey Bay National Marine Sanctuary, MPYC is active in a variety of safety and ecological awareness events.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_image][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_slider height=\"auto\" auto_play=\"\" hide_arrows=\"\" hide_paging=\"btSliderHidePaging\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/6\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1088\" caption_text=\"\" size=\"\" shape=\"circle\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][/bt_image][bt_header superheadline=\"MPYC\" headline=\"Mission\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][bt_column_inner width=\"5/6\"][bt_text]\r\n<blockquote>To connect our members and our diverse community to the boundless recreational opportunities and proper stewardship of the Monterey Bay and the Pacific Ocean.</blockquote>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/6\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1088\" caption_text=\"\" size=\"\" shape=\"circle\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][/bt_image][bt_header superheadline=\"MPYC\" headline=\"Vision\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][bt_column_inner width=\"5/6\"][bt_text]\r\n<blockquote>To actively promote the Monterey Peninsula Yacht Club as a prominent West Coast destination of choice for Corinthian spirit yacht racing, recreational boating, rowing and cruising.</blockquote>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/6\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1088\" caption_text=\"\" size=\"\" shape=\"circle\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][/bt_image][bt_header superheadline=\"MPYC\" headline=\"Commitment\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][bt_column_inner width=\"5/6\"][bt_text]\r\n<blockquote>To supporting a diverse membership that fosters inclusiveness, camaraderie, friendship, community involvement and leadership with the goal of advancing safe and sustainable maritime ecological practices.</blockquote>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][/bt_slider][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/3\" align=\"left\" vertical_align=\"btMiddleVertical\" border=\"no_border\" cell_padding=\"btDoublePadding\" animation=\"animate animate-fadein\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"#e5e5e5\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"MPYC\" headline=\"Clubhouse\" headline_size=\"large\" dash=\"bottom\" subheadline=\"Our clubhouse on Wharf II at the Monterey Harbor is home to the Kilpatrick Dining Room and Bear Flag Bar. We are proud to host a variety of events including corporate gatherings, receptions and seminars.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_button text=\"READ MORE\" icon=\"no_icon\" url=\"\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"ExtraSmall\" width=\"Normal\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"2/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_slider height=\"auto\" auto_play=\"\" hide_arrows=\"\" hide_paging=\"btSliderHidePaging\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1127\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1128\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1129\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][/bt_slider][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"yes\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"7/12\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Club News\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Latest happenings and announcements at MPYC\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"5/12\"][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_latest_posts number=\"3\" category=\"\" format=\"horizontal\" post_type=\"blog\" show_excerpt=\"yes\" show_date=\"yes\" show_author=\"no\" el_class=\"\" el_style=\"\"][/bt_latest_posts][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"1092\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"0.3\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Follow us\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Find out what\'s new at MPYC\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_icons][bt_icon icon=\"fa_f09a\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f099\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f16d\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_column][/bt_row][/bt_section]','MPYC Home','','inherit','closed','closed','','837-revision-v1','','','2021-04-08 11:10:12','2021-04-08 11:10:12','',837,'http://mpycdev.theomggroup.com/?p=1158',0,'revision','',0);
INSERT INTO `smrc_posts` VALUES (1159,1,'2021-04-08 11:14:18','2021-04-08 11:14:18','[bt_section layout=\"wide\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\"][bt_slider height=\"medium\" auto_play=\"5000\" hide_arrows=\"\" hide_paging=\"\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item image=\"1148\" el_class=\"\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1028\" el_class=\"\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1048\" el_class=\"\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1156\" el_class=\"\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1027\" el_class=\"\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1150\" el_class=\"btLightSkin\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1025\" el_class=\"\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1049\" el_class=\"btLightSkin\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1157\" el_class=\"\" el_style=\"\"][/bt_slider_item][/bt_slider][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"dark\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#b71234\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\"][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\r\n<h4 style=\"text-align: center;\"><em>founded 1953 in historic Monterey, California</em></h4>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSemiSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"2/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Our Club\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"A non-profit organization, MPYC is a yachting and social club comprised of adult and junior members with an interest in coming together to share in boating, sailing, yacht racing and social activities. Membership is not limited to boat owners.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/3\"][/bt_column][/bt_row][bt_row][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1068\" caption_text=\"View\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption=\"Double room\" show_titles=\"no\" caption_title=\"Room details\"][bt_header superheadline=\"CORINTHIAN SPIRIT\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Racing\" headline_size=\"medium\" dash=\"top\" subheadline=\"MPYC has built a reputation for top-notch competitive sailing. We host over 100 races per year and have hosted a variety of national championships.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1071\" caption_text=\"\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"PASSION\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Cruising\" headline_size=\"medium\" dash=\"top\" subheadline=\"Our members feature both power and sailboat owners. It\'s our great honor to live along California\'s Monterey Bay and enjoy the scenic vistas and marine wildlife.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1074\" caption_text=\"\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"DRIVE\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Rowing\" headline_size=\"medium\" dash=\"top\" subheadline=\"Our beginning, recreational and advanced rowers enjoy short and long distance local routes in addition to competition in local, West Coast and U.S. regattas. \" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1070\" caption_text=\"\" size=\"medium\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"COMMITMENT\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Youth Sailing\" headline_size=\"medium\" dash=\"top\" subheadline=\"Since its inception, Monterey Peninsula Yacht Club\'s has been proud to invest in the future of sailing and our youth to foster a better future for all us, and our club.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#e5e5e5\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"323\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"width: 60px; margin-top: -28px;\"][/bt_image][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"5/12\"][/bt_column][bt_column width=\"7/12\" align=\"right\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Activities\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Whether on the water or onshore, there are activities for all ages at MPYC. From competitive sailing, ocean rowing, cruising or paddle boarding on the water, to an array of events on land or in the clubhouse, we celebrate the Monterey Bay and work to preserve it year-round.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][/bt_column][/bt_row][/bt_section][bt_section layout=\"wide\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"dark\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#e5e5e5\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1116\" caption_title=\"On the Water\" caption_text=\"Fun\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Fun\" headline=\"On the Water\" headline_size=\"medium\" dash=\"top\" subheadline=\"Whether you\'re guest crew or a club member, from sailing, boating or paddle boarding, there\'s fun to be had on the water in the harbor on on the Bay.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1115\" caption_title=\"Celebrations\" caption_text=\"Club\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Club\" headline=\"Celebrations\" headline_size=\"medium\" dash=\"top\" subheadline=\"From holiday celebrations, special events and annual gatherings, there\'s always something happening at the club.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1114\" caption_title=\"Dining\" caption_text=\"MPYC\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"MPYC\" headline=\"Dining\" headline_size=\"medium\" dash=\"top\" subheadline=\"From fine dining in the Kirkpatrick Dining Room or enjoying a burger on the Bear Flag Bar deck overlooking Monterey harbor, no one goes hungry at MPYC.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1117\" caption_title=\"Education\" caption_text=\"Safety\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Safety\" headline=\"Education\" headline_size=\"medium\" dash=\"top\" subheadline=\"Committed to safe and proper use of the Monterey Bay National Marine Sanctuary, MPYC is active in a variety of safety and ecological awareness events.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_image][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_slider height=\"auto\" auto_play=\"\" hide_arrows=\"\" hide_paging=\"btSliderHidePaging\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/6\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1088\" caption_text=\"\" size=\"\" shape=\"circle\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][/bt_image][bt_header superheadline=\"MPYC\" headline=\"Mission\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][bt_column_inner width=\"5/6\"][bt_text]\r\n<blockquote>To connect our members and our diverse community to the boundless recreational opportunities and proper stewardship of the Monterey Bay and the Pacific Ocean.</blockquote>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/6\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1088\" caption_text=\"\" size=\"\" shape=\"circle\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][/bt_image][bt_header superheadline=\"MPYC\" headline=\"Vision\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][bt_column_inner width=\"5/6\"][bt_text]\r\n<blockquote>To actively promote the Monterey Peninsula Yacht Club as a prominent West Coast destination of choice for Corinthian spirit yacht racing, recreational boating, rowing and cruising.</blockquote>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/6\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1088\" caption_text=\"\" size=\"\" shape=\"circle\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][/bt_image][bt_header superheadline=\"MPYC\" headline=\"Commitment\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][bt_column_inner width=\"5/6\"][bt_text]\r\n<blockquote>To supporting a diverse membership that fosters inclusiveness, camaraderie, friendship, community involvement and leadership with the goal of advancing safe and sustainable maritime ecological practices.</blockquote>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][/bt_slider][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/3\" align=\"left\" vertical_align=\"btMiddleVertical\" border=\"no_border\" cell_padding=\"btDoublePadding\" animation=\"animate animate-fadein\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"#e5e5e5\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"MPYC\" headline=\"Clubhouse\" headline_size=\"large\" dash=\"bottom\" subheadline=\"Our clubhouse on Wharf II at the Monterey Harbor is home to the Kilpatrick Dining Room and Bear Flag Bar. We are proud to host a variety of events including corporate gatherings, receptions and seminars.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_button text=\"READ MORE\" icon=\"no_icon\" url=\"\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"ExtraSmall\" width=\"Normal\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"2/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_slider height=\"auto\" auto_play=\"\" hide_arrows=\"\" hide_paging=\"btSliderHidePaging\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1127\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1128\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1129\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][/bt_slider][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"yes\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"7/12\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Club News\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Latest happenings and announcements at MPYC\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"5/12\"][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_latest_posts number=\"3\" category=\"\" format=\"horizontal\" post_type=\"blog\" show_excerpt=\"yes\" show_date=\"yes\" show_author=\"no\" el_class=\"\" el_style=\"\"][/bt_latest_posts][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"1092\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"0.3\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Follow us\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Find out what\'s new at MPYC\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_icons][bt_icon icon=\"fa_f09a\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f099\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f16d\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_column][/bt_row][/bt_section]','MPYC Home','','inherit','closed','closed','','837-revision-v1','','','2021-04-08 11:14:18','2021-04-08 11:14:18','',837,'http://mpycdev.theomggroup.com/?p=1159',0,'revision','',0);
INSERT INTO `smrc_posts` VALUES (1160,1,'2021-04-08 11:18:32','2021-04-08 11:18:32','[bt_section layout=\"wide\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\"][bt_slider height=\"medium\" auto_play=\"5000\" hide_arrows=\"\" hide_paging=\"\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item image=\"1148\" el_class=\"\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1028\" el_class=\"\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1048\" el_class=\"\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1156\" el_class=\"\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1027\" el_class=\"\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1150\" el_class=\"btLightSkin\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1025\" el_class=\"\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1049\" el_class=\"btLightSkin\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1157\" el_class=\"\" el_style=\"\"][/bt_slider_item][/bt_slider][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"dark\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#b71234\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\"][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\r\n<h4 style=\"text-align: center;\"><em>founded 1953 in historic Monterey, California</em></h4>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSemiSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"2/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Our Club\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"A non-profit organization, MPYC is a yachting and social club comprised of adult and junior members with an interest in coming together to share in boating, sailing, yacht racing and social activities. Membership is not limited to boat owners.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/3\"][/bt_column][/bt_row][bt_row][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1068\" caption_text=\"View\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption=\"Double room\" show_titles=\"no\" caption_title=\"Room details\"][bt_header superheadline=\"CORINTHIAN SPIRIT\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Racing\" headline_size=\"medium\" dash=\"top\" subheadline=\"MPYC has built a reputation for top-notch competitive sailing. We host over 100 races per year and have hosted a variety of national championships.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1071\" caption_text=\"\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"PASSION\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Cruising\" headline_size=\"medium\" dash=\"top\" subheadline=\"Our members feature both power and sailboat owners. It\'s our great honor to live along California\'s Monterey Bay and enjoy the scenic vistas and marine wildlife.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1074\" caption_text=\"\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"DRIVE\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Rowing\" headline_size=\"medium\" dash=\"top\" subheadline=\"Our beginning, recreational and advanced rowers enjoy short and long distance local routes in addition to competition in local, West Coast and U.S. regattas. \" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1070\" caption_text=\"\" size=\"medium\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"COMMITMENT\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Youth Sailing\" headline_size=\"medium\" dash=\"top\" subheadline=\"Since its inception, Monterey Peninsula Yacht Club\'s has been proud to invest in the future of sailing and our youth to foster a better future for all us, and our club.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#e5e5e5\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"323\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"width: 60px; margin-top: -28px;\"][/bt_image][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"5/12\"][/bt_column][bt_column width=\"7/12\" align=\"right\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Activities\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Whether on the water or onshore, there are activities for all ages at MPYC. From competitive sailing, ocean rowing, cruising or paddle boarding on the water, to an array of events on land or in the clubhouse, we celebrate the Monterey Bay and work to preserve it year-round.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][/bt_column][/bt_row][/bt_section][bt_section layout=\"wide\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"dark\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#e5e5e5\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1116\" caption_title=\"On the Water\" caption_text=\"Fun\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Fun\" headline=\"On the Water\" headline_size=\"medium\" dash=\"top\" subheadline=\"Whether you\'re guest crew or a club member, from sailing, boating or paddle boarding, there\'s fun to be had on the water in the harbor on on the Bay.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1115\" caption_title=\"Celebrations\" caption_text=\"Club\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Club\" headline=\"Celebrations\" headline_size=\"medium\" dash=\"top\" subheadline=\"From holiday celebrations, special events and annual gatherings, there\'s always something happening at the club.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1114\" caption_title=\"Dining\" caption_text=\"MPYC\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"MPYC\" headline=\"Dining\" headline_size=\"medium\" dash=\"top\" subheadline=\"From fine dining in the Kirkpatrick Dining Room or enjoying a burger on the Bear Flag Bar deck overlooking Monterey harbor, no one goes hungry at MPYC.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1117\" caption_title=\"Education\" caption_text=\"Safety\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Safety\" headline=\"Education\" headline_size=\"medium\" dash=\"top\" subheadline=\"Committed to safe and proper use of the Monterey Bay National Marine Sanctuary, MPYC is active in a variety of safety and ecological awareness events.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_image][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_slider height=\"auto\" auto_play=\"\" hide_arrows=\"\" hide_paging=\"btSliderHidePaging\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/6\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1088\" caption_text=\"\" size=\"\" shape=\"circle\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][/bt_image][bt_header superheadline=\"MPYC\" headline=\"Mission\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][bt_column_inner width=\"5/6\"][bt_text]\r\n<blockquote>To connect our members and our diverse community to the boundless recreational opportunities and proper stewardship of the Monterey Bay and the Pacific Ocean.</blockquote>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/6\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1088\" caption_text=\"\" size=\"\" shape=\"circle\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][/bt_image][bt_header superheadline=\"MPYC\" headline=\"Vision\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][bt_column_inner width=\"5/6\"][bt_text]\r\n<blockquote>To actively promote the Monterey Peninsula Yacht Club as a prominent West Coast destination of choice for Corinthian spirit yacht racing, recreational boating, rowing and cruising.</blockquote>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/6\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1088\" caption_text=\"\" size=\"\" shape=\"circle\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][/bt_image][bt_header superheadline=\"MPYC\" headline=\"Commitment\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][bt_column_inner width=\"5/6\"][bt_text]\r\n<blockquote>To supporting a diverse membership that fosters inclusiveness, camaraderie, friendship, community involvement and leadership with the goal of advancing safe and sustainable maritime ecological practices.</blockquote>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][/bt_slider][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/3\" align=\"left\" vertical_align=\"btMiddleVertical\" border=\"no_border\" cell_padding=\"btDoublePadding\" animation=\"animate animate-fadein\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"#e5e5e5\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"MPYC\" headline=\"Clubhouse\" headline_size=\"large\" dash=\"bottom\" subheadline=\"Our clubhouse on Wharf II at the Monterey Harbor is home to the Kilpatrick Dining Room and Bear Flag Bar. We are proud to host a variety of events including corporate gatherings, receptions and seminars.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_button text=\"READ MORE\" icon=\"no_icon\" url=\"\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"ExtraSmall\" width=\"Normal\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"2/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_slider height=\"auto\" auto_play=\"\" hide_arrows=\"\" hide_paging=\"btSliderHidePaging\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1129\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1128\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1127\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][/bt_slider][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"yes\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"7/12\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Club News\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Latest happenings and announcements at MPYC\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"5/12\"][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_latest_posts number=\"3\" category=\"\" format=\"horizontal\" post_type=\"blog\" show_excerpt=\"yes\" show_date=\"yes\" show_author=\"no\" el_class=\"\" el_style=\"\"][/bt_latest_posts][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"1092\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"0.3\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Follow us\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Find out what\'s new at MPYC\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_icons][bt_icon icon=\"fa_f09a\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f099\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f16d\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_column][/bt_row][/bt_section]','MPYC Home','','inherit','closed','closed','','837-revision-v1','','','2021-04-08 11:18:32','2021-04-08 11:18:32','',837,'http://mpycdev.theomggroup.com/?p=1160',0,'revision','',0);
INSERT INTO `smrc_posts` VALUES (1161,1,'2021-04-08 11:25:39','2021-04-08 11:25:39','','slider-fjs','','inherit','','closed','','slider-fjs','','','2021-04-08 11:25:39','2021-04-08 11:25:39','',0,'http://mpycdev.theomggroup.com/wp-content/uploads/2021/04/slider-fjs.jpg',0,'attachment','image/jpeg',0);
INSERT INTO `smrc_posts` VALUES (1162,1,'2021-04-08 11:25:43','2021-04-08 11:25:43','','slider-loverspoint','','inherit','','closed','','slider-loverspoint','','','2021-04-08 11:25:43','2021-04-08 11:25:43','',0,'http://mpycdev.theomggroup.com/wp-content/uploads/2021/04/slider-loverspoint.jpg',0,'attachment','image/jpeg',0);
INSERT INTO `smrc_posts` VALUES (1163,1,'2021-04-08 11:25:47','2021-04-08 11:25:47','','slider-luckyduckpg','','inherit','','closed','','slider-luckyduckpg','','','2021-04-08 11:25:47','2021-04-08 11:25:47','',0,'http://mpycdev.theomggroup.com/wp-content/uploads/2021/04/slider-luckyduckpg.jpg',0,'attachment','image/jpeg',0);
INSERT INTO `smrc_posts` VALUES (1164,1,'2021-04-08 11:28:38','2021-04-08 11:28:38','[bt_section layout=\"wide\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\"][bt_slider height=\"medium\" auto_play=\"5000\" hide_arrows=\"\" hide_paging=\"\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item image=\"1148\" el_class=\"\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1028\" el_class=\"\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1048\" el_class=\"\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1156\" el_class=\"\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1163\" el_class=\"\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1027\" el_class=\"\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1049\" el_class=\"btLightSkin\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1162\" el_class=\"\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1150\" el_class=\"btLightSkin\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1025\" el_class=\"\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1157\" el_class=\"\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1161\" el_class=\"\" el_style=\"\"][/bt_slider_item][/bt_slider][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"dark\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#b71234\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\"][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\r\n<h4 style=\"text-align: center;\"><em>founded 1953 in historic Monterey, California</em></h4>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSemiSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"2/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Our Club\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"A non-profit organization, MPYC is a yachting and social club comprised of adult and junior members with an interest in coming together to share in boating, sailing, yacht racing and social activities. Membership is not limited to boat owners.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/3\"][/bt_column][/bt_row][bt_row][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1068\" caption_text=\"View\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption=\"Double room\" show_titles=\"no\" caption_title=\"Room details\"][bt_header superheadline=\"CORINTHIAN SPIRIT\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Racing\" headline_size=\"medium\" dash=\"top\" subheadline=\"MPYC has built a reputation for top-notch competitive sailing. We host over 100 races per year and have hosted a variety of national championships.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1071\" caption_text=\"\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"PASSION\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Cruising\" headline_size=\"medium\" dash=\"top\" subheadline=\"Our members feature both power and sailboat owners. It\'s our great honor to live along California\'s Monterey Bay and enjoy the scenic vistas and marine wildlife.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1074\" caption_text=\"\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"DRIVE\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Rowing\" headline_size=\"medium\" dash=\"top\" subheadline=\"Our beginning, recreational and advanced rowers enjoy short and long distance local routes in addition to competition in local, West Coast and U.S. regattas. \" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1070\" caption_text=\"\" size=\"medium\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"COMMITMENT\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Youth Sailing\" headline_size=\"medium\" dash=\"top\" subheadline=\"Since its inception, Monterey Peninsula Yacht Club\'s has been proud to invest in the future of sailing and our youth to foster a better future for all us, and our club.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#e5e5e5\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"323\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"width: 60px; margin-top: -28px;\"][/bt_image][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"5/12\"][/bt_column][bt_column width=\"7/12\" align=\"right\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Activities\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Whether on the water or onshore, there are activities for all ages at MPYC. From competitive sailing, ocean rowing, cruising or paddle boarding on the water, to an array of events on land or in the clubhouse, we celebrate the Monterey Bay and work to preserve it year-round.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][/bt_column][/bt_row][/bt_section][bt_section layout=\"wide\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"dark\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#e5e5e5\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1116\" caption_title=\"On the Water\" caption_text=\"Fun\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Fun\" headline=\"On the Water\" headline_size=\"medium\" dash=\"top\" subheadline=\"Whether you\'re guest crew or a club member, from sailing, boating or paddle boarding, there\'s fun to be had on the water in the harbor on on the Bay.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1115\" caption_title=\"Celebrations\" caption_text=\"Club\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Club\" headline=\"Celebrations\" headline_size=\"medium\" dash=\"top\" subheadline=\"From holiday celebrations, special events and annual gatherings, there\'s always something happening at the club.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1114\" caption_title=\"Dining\" caption_text=\"MPYC\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"MPYC\" headline=\"Dining\" headline_size=\"medium\" dash=\"top\" subheadline=\"From fine dining in the Kirkpatrick Dining Room or enjoying a burger on the Bear Flag Bar deck overlooking Monterey harbor, no one goes hungry at MPYC.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1117\" caption_title=\"Education\" caption_text=\"Safety\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Safety\" headline=\"Education\" headline_size=\"medium\" dash=\"top\" subheadline=\"Committed to safe and proper use of the Monterey Bay National Marine Sanctuary, MPYC is active in a variety of safety and ecological awareness events.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_image][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_slider height=\"auto\" auto_play=\"\" hide_arrows=\"\" hide_paging=\"btSliderHidePaging\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/6\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1088\" caption_text=\"\" size=\"\" shape=\"circle\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][/bt_image][bt_header superheadline=\"MPYC\" headline=\"Mission\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][bt_column_inner width=\"5/6\"][bt_text]\r\n<blockquote>To connect our members and our diverse community to the boundless recreational opportunities and proper stewardship of the Monterey Bay and the Pacific Ocean.</blockquote>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/6\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1088\" caption_text=\"\" size=\"\" shape=\"circle\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][/bt_image][bt_header superheadline=\"MPYC\" headline=\"Vision\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][bt_column_inner width=\"5/6\"][bt_text]\r\n<blockquote>To actively promote the Monterey Peninsula Yacht Club as a prominent West Coast destination of choice for Corinthian spirit yacht racing, recreational boating, rowing and cruising.</blockquote>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/6\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1088\" caption_text=\"\" size=\"\" shape=\"circle\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][/bt_image][bt_header superheadline=\"MPYC\" headline=\"Commitment\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][bt_column_inner width=\"5/6\"][bt_text]\r\n<blockquote>To supporting a diverse membership that fosters inclusiveness, camaraderie, friendship, community involvement and leadership with the goal of advancing safe and sustainable maritime ecological practices.</blockquote>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][/bt_slider][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/3\" align=\"left\" vertical_align=\"btMiddleVertical\" border=\"no_border\" cell_padding=\"btDoublePadding\" animation=\"animate animate-fadein\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"#e5e5e5\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"MPYC\" headline=\"Clubhouse\" headline_size=\"large\" dash=\"bottom\" subheadline=\"Our clubhouse on Wharf II at the Monterey Harbor is home to the Kilpatrick Dining Room and Bear Flag Bar. We are proud to host a variety of events including corporate gatherings, receptions and seminars.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_button text=\"READ MORE\" icon=\"no_icon\" url=\"\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"ExtraSmall\" width=\"Normal\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"2/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_slider height=\"auto\" auto_play=\"\" hide_arrows=\"\" hide_paging=\"btSliderHidePaging\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1129\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1128\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1127\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][/bt_slider][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"yes\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"7/12\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Club News\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Latest happenings and announcements at MPYC\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"5/12\"][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_latest_posts number=\"3\" category=\"\" format=\"horizontal\" post_type=\"blog\" show_excerpt=\"yes\" show_date=\"yes\" show_author=\"no\" el_class=\"\" el_style=\"\"][/bt_latest_posts][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"1092\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"0.3\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Follow us\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Find out what\'s new at MPYC\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_icons][bt_icon icon=\"fa_f09a\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f099\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f16d\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_column][/bt_row][/bt_section]','MPYC Home','','inherit','closed','closed','','837-revision-v1','','','2021-04-08 11:28:38','2021-04-08 11:28:38','',837,'http://mpycdev.theomggroup.com/?p=1164',0,'revision','',0);
INSERT INTO `smrc_posts` VALUES (1165,1,'2021-04-08 11:31:13','2021-04-08 11:31:13','[bt_section layout=\"wide\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\"][bt_slider height=\"medium\" auto_play=\"5000\" hide_arrows=\"\" hide_paging=\"\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item image=\"1148\" el_class=\"\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1028\" el_class=\"\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1156\" el_class=\"\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1163\" el_class=\"\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1027\" el_class=\"\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1049\" el_class=\"btLightSkin\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1162\" el_class=\"\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1048\" el_class=\"\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1150\" el_class=\"btLightSkin\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1025\" el_class=\"\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1161\" el_class=\"\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1157\" el_class=\"\" el_style=\"\"][/bt_slider_item][/bt_slider][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"dark\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#b71234\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\"][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\r\n<h4 style=\"text-align: center;\"><em>founded 1953 in historic Monterey, California</em></h4>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSemiSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"2/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Our Club\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"A non-profit organization, MPYC is a yachting and social club comprised of adult and junior members with an interest in coming together to share in boating, sailing, yacht racing and social activities. Membership is not limited to boat owners.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/3\"][/bt_column][/bt_row][bt_row][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1068\" caption_text=\"View\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption=\"Double room\" show_titles=\"no\" caption_title=\"Room details\"][bt_header superheadline=\"CORINTHIAN SPIRIT\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Racing\" headline_size=\"medium\" dash=\"top\" subheadline=\"MPYC has built a reputation for top-notch competitive sailing. We host over 100 races per year and have hosted a variety of national championships.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1071\" caption_text=\"\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"PASSION\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Cruising\" headline_size=\"medium\" dash=\"top\" subheadline=\"Our members feature both power and sailboat owners. It\'s our great honor to live along California\'s Monterey Bay and enjoy the scenic vistas and marine wildlife.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1074\" caption_text=\"\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"DRIVE\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Rowing\" headline_size=\"medium\" dash=\"top\" subheadline=\"Our beginning, recreational and advanced rowers enjoy short and long distance local routes in addition to competition in local, West Coast and U.S. regattas. \" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1070\" caption_text=\"\" size=\"medium\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"COMMITMENT\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Youth Sailing\" headline_size=\"medium\" dash=\"top\" subheadline=\"Since its inception, Monterey Peninsula Yacht Club\'s has been proud to invest in the future of sailing and our youth to foster a better future for all us, and our club.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#e5e5e5\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"323\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"width: 60px; margin-top: -28px;\"][/bt_image][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"5/12\"][/bt_column][bt_column width=\"7/12\" align=\"right\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Activities\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Whether on the water or onshore, there are activities for all ages at MPYC. From competitive sailing, ocean rowing, cruising or paddle boarding on the water, to an array of events on land or in the clubhouse, we celebrate the Monterey Bay and work to preserve it year-round.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][/bt_column][/bt_row][/bt_section][bt_section layout=\"wide\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"dark\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#e5e5e5\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1116\" caption_title=\"On the Water\" caption_text=\"Fun\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Fun\" headline=\"On the Water\" headline_size=\"medium\" dash=\"top\" subheadline=\"Whether you\'re guest crew or a club member, from sailing, boating or paddle boarding, there\'s fun to be had on the water in the harbor on on the Bay.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1115\" caption_title=\"Celebrations\" caption_text=\"Club\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Club\" headline=\"Celebrations\" headline_size=\"medium\" dash=\"top\" subheadline=\"From holiday celebrations, special events and annual gatherings, there\'s always something happening at the club.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1114\" caption_title=\"Dining\" caption_text=\"MPYC\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"MPYC\" headline=\"Dining\" headline_size=\"medium\" dash=\"top\" subheadline=\"From fine dining in the Kirkpatrick Dining Room or enjoying a burger on the Bear Flag Bar deck overlooking Monterey harbor, no one goes hungry at MPYC.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1117\" caption_title=\"Education\" caption_text=\"Safety\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Safety\" headline=\"Education\" headline_size=\"medium\" dash=\"top\" subheadline=\"Committed to safe and proper use of the Monterey Bay National Marine Sanctuary, MPYC is active in a variety of safety and ecological awareness events.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_image][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_slider height=\"auto\" auto_play=\"\" hide_arrows=\"\" hide_paging=\"btSliderHidePaging\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/6\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1088\" caption_text=\"\" size=\"\" shape=\"circle\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][/bt_image][bt_header superheadline=\"MPYC\" headline=\"Mission\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][bt_column_inner width=\"5/6\"][bt_text]\r\n<blockquote>To connect our members and our diverse community to the boundless recreational opportunities and proper stewardship of the Monterey Bay and the Pacific Ocean.</blockquote>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/6\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1088\" caption_text=\"\" size=\"\" shape=\"circle\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][/bt_image][bt_header superheadline=\"MPYC\" headline=\"Vision\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][bt_column_inner width=\"5/6\"][bt_text]\r\n<blockquote>To actively promote the Monterey Peninsula Yacht Club as a prominent West Coast destination of choice for Corinthian spirit yacht racing, recreational boating, rowing and cruising.</blockquote>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/6\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1088\" caption_text=\"\" size=\"\" shape=\"circle\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][/bt_image][bt_header superheadline=\"MPYC\" headline=\"Commitment\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][bt_column_inner width=\"5/6\"][bt_text]\r\n<blockquote>To supporting a diverse membership that fosters inclusiveness, camaraderie, friendship, community involvement and leadership with the goal of advancing safe and sustainable maritime ecological practices.</blockquote>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][/bt_slider][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/3\" align=\"left\" vertical_align=\"btMiddleVertical\" border=\"no_border\" cell_padding=\"btDoublePadding\" animation=\"animate animate-fadein\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"#e5e5e5\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"MPYC\" headline=\"Clubhouse\" headline_size=\"large\" dash=\"bottom\" subheadline=\"Our clubhouse on Wharf II at the Monterey Harbor is home to the Kilpatrick Dining Room and Bear Flag Bar. We are proud to host a variety of events including corporate gatherings, receptions and seminars.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_button text=\"READ MORE\" icon=\"no_icon\" url=\"\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"ExtraSmall\" width=\"Normal\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"2/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_slider height=\"auto\" auto_play=\"\" hide_arrows=\"\" hide_paging=\"btSliderHidePaging\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1129\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1128\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1127\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][/bt_slider][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"yes\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"7/12\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Club News\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Latest happenings and announcements at MPYC\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"5/12\"][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_latest_posts number=\"3\" category=\"\" format=\"horizontal\" post_type=\"blog\" show_excerpt=\"yes\" show_date=\"yes\" show_author=\"no\" el_class=\"\" el_style=\"\"][/bt_latest_posts][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"1092\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"0.3\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Follow us\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Find out what\'s new at MPYC\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_icons][bt_icon icon=\"fa_f09a\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f099\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f16d\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_column][/bt_row][/bt_section]','MPYC Home','','inherit','closed','closed','','837-revision-v1','','','2021-04-08 11:31:13','2021-04-08 11:31:13','',837,'http://mpycdev.theomggroup.com/?p=1165',0,'revision','',0);
INSERT INTO `smrc_posts` VALUES (1166,1,'2021-04-08 11:33:03','2021-04-08 11:33:03','[bt_section layout=\"wide\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\"][bt_slider height=\"medium\" auto_play=\"5000\" hide_arrows=\"\" hide_paging=\"\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item image=\"1148\" el_class=\"\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1028\" el_class=\"\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1156\" el_class=\"\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1163\" el_class=\"\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1027\" el_class=\"\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1049\" el_class=\"btLightSkin\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1048\" el_class=\"\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1150\" el_class=\"btLightSkin\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1025\" el_class=\"\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1162\" el_class=\"\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1161\" el_class=\"\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1157\" el_class=\"\" el_style=\"\"][/bt_slider_item][/bt_slider][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"dark\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#b71234\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\"][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\r\n<h4 style=\"text-align: center;\"><em>founded 1953 in historic Monterey, California</em></h4>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSemiSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"2/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Our Club\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"A non-profit organization, MPYC is a yachting and social club comprised of adult and junior members with an interest in coming together to share in boating, sailing, yacht racing and social activities. Membership is not limited to boat owners.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/3\"][/bt_column][/bt_row][bt_row][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1068\" caption_text=\"View\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption=\"Double room\" show_titles=\"no\" caption_title=\"Room details\"][bt_header superheadline=\"CORINTHIAN SPIRIT\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Racing\" headline_size=\"medium\" dash=\"top\" subheadline=\"MPYC has built a reputation for top-notch competitive sailing. We host over 100 races per year and have hosted a variety of national championships.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1071\" caption_text=\"\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"PASSION\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Cruising\" headline_size=\"medium\" dash=\"top\" subheadline=\"Our members feature both power and sailboat owners. It\'s our great honor to live along California\'s Monterey Bay and enjoy the scenic vistas and marine wildlife.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1074\" caption_text=\"\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"DRIVE\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Rowing\" headline_size=\"medium\" dash=\"top\" subheadline=\"Our beginning, recreational and advanced rowers enjoy short and long distance local routes in addition to competition in local, West Coast and U.S. regattas. \" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1070\" caption_text=\"\" size=\"medium\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"COMMITMENT\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Youth Sailing\" headline_size=\"medium\" dash=\"top\" subheadline=\"Since its inception, Monterey Peninsula Yacht Club\'s has been proud to invest in the future of sailing and our youth to foster a better future for all us, and our club.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#e5e5e5\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"323\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"width: 60px; margin-top: -28px;\"][/bt_image][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"5/12\"][/bt_column][bt_column width=\"7/12\" align=\"right\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Activities\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Whether on the water or onshore, there are activities for all ages at MPYC. From competitive sailing, ocean rowing, cruising or paddle boarding on the water, to an array of events on land or in the clubhouse, we celebrate the Monterey Bay and work to preserve it year-round.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][/bt_column][/bt_row][/bt_section][bt_section layout=\"wide\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"dark\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#e5e5e5\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1116\" caption_title=\"On the Water\" caption_text=\"Fun\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Fun\" headline=\"On the Water\" headline_size=\"medium\" dash=\"top\" subheadline=\"Whether you\'re guest crew or a club member, from sailing, boating or paddle boarding, there\'s fun to be had on the water in the harbor on on the Bay.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1115\" caption_title=\"Celebrations\" caption_text=\"Club\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Club\" headline=\"Celebrations\" headline_size=\"medium\" dash=\"top\" subheadline=\"From holiday celebrations, special events and annual gatherings, there\'s always something happening at the club.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1114\" caption_title=\"Dining\" caption_text=\"MPYC\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"MPYC\" headline=\"Dining\" headline_size=\"medium\" dash=\"top\" subheadline=\"From fine dining in the Kirkpatrick Dining Room or enjoying a burger on the Bear Flag Bar deck overlooking Monterey harbor, no one goes hungry at MPYC.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1117\" caption_title=\"Education\" caption_text=\"Safety\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Safety\" headline=\"Education\" headline_size=\"medium\" dash=\"top\" subheadline=\"Committed to safe and proper use of the Monterey Bay National Marine Sanctuary, MPYC is active in a variety of safety and ecological awareness events.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_image][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_slider height=\"auto\" auto_play=\"\" hide_arrows=\"\" hide_paging=\"btSliderHidePaging\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/6\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1088\" caption_text=\"\" size=\"\" shape=\"circle\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][/bt_image][bt_header superheadline=\"MPYC\" headline=\"Mission\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][bt_column_inner width=\"5/6\"][bt_text]\r\n<blockquote>To connect our members and our diverse community to the boundless recreational opportunities and proper stewardship of the Monterey Bay and the Pacific Ocean.</blockquote>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/6\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1088\" caption_text=\"\" size=\"\" shape=\"circle\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][/bt_image][bt_header superheadline=\"MPYC\" headline=\"Vision\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][bt_column_inner width=\"5/6\"][bt_text]\r\n<blockquote>To actively promote the Monterey Peninsula Yacht Club as a prominent West Coast destination of choice for Corinthian spirit yacht racing, recreational boating, rowing and cruising.</blockquote>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/6\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1088\" caption_text=\"\" size=\"\" shape=\"circle\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][/bt_image][bt_header superheadline=\"MPYC\" headline=\"Commitment\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][bt_column_inner width=\"5/6\"][bt_text]\r\n<blockquote>To supporting a diverse membership that fosters inclusiveness, camaraderie, friendship, community involvement and leadership with the goal of advancing safe and sustainable maritime ecological practices.</blockquote>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][/bt_slider][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/3\" align=\"left\" vertical_align=\"btMiddleVertical\" border=\"no_border\" cell_padding=\"btDoublePadding\" animation=\"animate animate-fadein\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"#e5e5e5\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"MPYC\" headline=\"Clubhouse\" headline_size=\"large\" dash=\"bottom\" subheadline=\"Our clubhouse on Wharf II at the Monterey Harbor is home to the Kilpatrick Dining Room and Bear Flag Bar. We are proud to host a variety of events including corporate gatherings, receptions and seminars.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_button text=\"READ MORE\" icon=\"no_icon\" url=\"\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"ExtraSmall\" width=\"Normal\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"2/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_slider height=\"auto\" auto_play=\"\" hide_arrows=\"\" hide_paging=\"btSliderHidePaging\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1129\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1128\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1127\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][/bt_slider][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"yes\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"7/12\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Club News\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Latest happenings and announcements at MPYC\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"5/12\"][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_latest_posts number=\"3\" category=\"\" format=\"horizontal\" post_type=\"blog\" show_excerpt=\"yes\" show_date=\"yes\" show_author=\"no\" el_class=\"\" el_style=\"\"][/bt_latest_posts][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"1092\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"0.3\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Follow us\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Find out what\'s new at MPYC\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_icons][bt_icon icon=\"fa_f09a\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f099\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f16d\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_column][/bt_row][/bt_section]','MPYC Home','','inherit','closed','closed','','837-revision-v1','','','2021-04-08 11:33:03','2021-04-08 11:33:03','',837,'http://mpycdev.theomggroup.com/?p=1166',0,'revision','',0);
INSERT INTO `smrc_posts` VALUES (1167,1,'2021-04-08 11:46:35','2021-04-08 11:46:35','[bt_section layout=\"wide\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\"][bt_slider height=\"medium\" auto_play=\"5000\" hide_arrows=\"\" hide_paging=\"\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item image=\"1148\" el_class=\"\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1028\" el_class=\"\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1156\" el_class=\"\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1163\" el_class=\"\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1027\" el_class=\"\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1049\" el_class=\"btLightSkin\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1048\" el_class=\"\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1150\" el_class=\"btLightSkin\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1025\" el_class=\"\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1162\" el_class=\"\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1161\" el_class=\"\" el_style=\"\"][/bt_slider_item][bt_slider_item image=\"1157\" el_class=\"\" el_style=\"\"][/bt_slider_item][/bt_slider][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"dark\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#b71234\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\"][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\r\n<h4 style=\"text-align: center;\"><em>founded 1953 in historic Monterey, California</em></h4>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSemiSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"2/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"About Us\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"A non-profit organization, MPYC is a yachting and social club comprised of adult and junior members with an interest in coming together to share in boating, sailing, yacht racing and social activities. Membership is not limited to boat owners.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/3\"][/bt_column][/bt_row][bt_row][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1068\" caption_text=\"View\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption=\"Double room\" show_titles=\"no\" caption_title=\"Room details\"][bt_header superheadline=\"CORINTHIAN SPIRIT\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Racing\" headline_size=\"medium\" dash=\"top\" subheadline=\"MPYC has built a reputation for top-notch competitive sailing. We host over 100 races per year and have hosted a variety of national championships.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1071\" caption_text=\"\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"PASSION\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Cruising\" headline_size=\"medium\" dash=\"top\" subheadline=\"Our members feature both power and sailboat owners. It\'s our great honor to live along California\'s Monterey Bay and enjoy the scenic vistas and marine wildlife.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1074\" caption_text=\"\" size=\"\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"DRIVE\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Rowing\" headline_size=\"medium\" dash=\"top\" subheadline=\"Our beginning, recreational and advanced rowers enjoy short and long distance local routes in addition to competition in local, West Coast and U.S. regattas. \" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1070\" caption_text=\"\" size=\"medium\" shape=\"square\" url=\"room-details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"COMMITMENT\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"\" headline=\"Youth Sailing\" headline_size=\"medium\" dash=\"top\" subheadline=\"Since its inception, Monterey Peninsula Yacht Club\'s has been proud to invest in the future of sailing and our youth to foster a better future for all us, and our club.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#e5e5e5\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"323\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"width: 60px; margin-top: -28px;\"][/bt_image][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"5/12\"][/bt_column][bt_column width=\"7/12\" align=\"right\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Activities\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Whether on the water or onshore, there are activities for all ages at MPYC. From competitive sailing, ocean rowing, cruising or paddle boarding on the water, to an array of events on land or in the clubhouse, we celebrate the Monterey Bay and work to preserve it year-round.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][/bt_column][/bt_row][/bt_section][bt_section layout=\"wide\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"dark\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#e5e5e5\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1116\" caption_title=\"On the Water\" caption_text=\"Fun\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Fun\" headline=\"On the Water\" headline_size=\"medium\" dash=\"top\" subheadline=\"Whether you\'re guest crew or a club member, from sailing, boating or paddle boarding, there\'s fun to be had on the water in the harbor on on the Bay.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1115\" caption_title=\"Celebrations\" caption_text=\"Club\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Club\" headline=\"Celebrations\" headline_size=\"medium\" dash=\"top\" subheadline=\"From holiday celebrations, special events and annual gatherings, there\'s always something happening at the club.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1114\" caption_title=\"Dining\" caption_text=\"MPYC\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"MPYC\" headline=\"Dining\" headline_size=\"medium\" dash=\"top\" subheadline=\"From fine dining in the Kirkpatrick Dining Room or enjoying a burger on the Bear Flag Bar deck overlooking Monterey harbor, no one goes hungry at MPYC.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_image][/bt_column][bt_column width=\"1/4\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1117\" caption_title=\"Education\" caption_text=\"Safety\" show_titles=\"yes\" size=\"\" shape=\"square\" url=\"activities\" target=\"_self\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Safety\" headline=\"Education\" headline_size=\"medium\" dash=\"top\" subheadline=\"Committed to safe and proper use of the Monterey Bay National Marine Sanctuary, MPYC is active in a variety of safety and ecological awareness events.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_image][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_slider height=\"auto\" auto_play=\"\" hide_arrows=\"\" hide_paging=\"btSliderHidePaging\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/6\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1088\" caption_text=\"\" size=\"\" shape=\"circle\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][/bt_image][bt_header superheadline=\"MPYC\" headline=\"Mission\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][bt_column_inner width=\"5/6\"][bt_text]\r\n<blockquote>To connect our members and our diverse community to the boundless recreational opportunities and proper stewardship of the Monterey Bay and the Pacific Ocean.</blockquote>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/6\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1088\" caption_text=\"\" size=\"\" shape=\"circle\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][/bt_image][bt_header superheadline=\"MPYC\" headline=\"Vision\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][bt_column_inner width=\"5/6\"][bt_text]\r\n<blockquote>To actively promote the Monterey Peninsula Yacht Club as a prominent West Coast destination of choice for Corinthian spirit yacht racing, recreational boating, rowing and cruising.</blockquote>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/6\" align=\"center\" cell_padding=\"default\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1088\" caption_text=\"\" size=\"\" shape=\"circle\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][/bt_image][bt_header superheadline=\"MPYC\" headline=\"Commitment\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][bt_column_inner width=\"5/6\"][bt_text]\r\n<blockquote>To supporting a diverse membership that fosters inclusiveness, camaraderie, friendship, community involvement and leadership with the goal of advancing safe and sustainable maritime ecological practices.</blockquote>\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][/bt_slider][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/3\" align=\"left\" vertical_align=\"btMiddleVertical\" border=\"no_border\" cell_padding=\"btDoublePadding\" animation=\"animate animate-fadein\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"#e5e5e5\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"MPYC\" headline=\"Clubhouse\" headline_size=\"large\" dash=\"bottom\" subheadline=\"Our clubhouse on Wharf II at the Monterey Harbor is home to the Kilpatrick Dining Room and Bear Flag Bar. We are proud to host a variety of events including corporate gatherings, receptions and seminars.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_button text=\"READ MORE\" icon=\"no_icon\" url=\"\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"ExtraSmall\" width=\"Normal\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"2/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_slider height=\"auto\" auto_play=\"\" hide_arrows=\"\" hide_paging=\"btSliderHidePaging\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1129\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1128\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][bt_slider_item image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"1127\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_slider_item][/bt_slider][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"yes\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"7/12\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Club News\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Latest happenings and announcements at MPYC\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"5/12\"][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_latest_posts number=\"3\" category=\"\" format=\"horizontal\" post_type=\"blog\" show_excerpt=\"yes\" show_date=\"yes\" show_author=\"no\" el_class=\"\" el_style=\"\"][/bt_latest_posts][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"1092\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"0.3\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Follow us\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Find out what\'s new at MPYC\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"animate animate-fadein\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_icons][bt_icon icon=\"fa_f09a\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f099\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f16d\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_column][/bt_row][/bt_section]','MPYC Home','','inherit','closed','closed','','837-revision-v1','','','2021-04-08 11:46:35','2021-04-08 11:46:35','',837,'http://mpycdev.theomggroup.com/?p=1167',0,'revision','',0);
INSERT INTO `smrc_posts` VALUES (1170,1,'2021-04-09 08:06:15','2021-04-09 02:54:41','','Welcome','','publish','closed','closed','','welcome','','','2021-04-09 08:06:15','2021-04-09 08:06:15','',0,'http://mpycdev.theomggroup.com/welcome/',2,'nav_menu_item','',0);
INSERT INTO `smrc_posts` VALUES (1171,1,'2021-04-09 08:06:15','2021-04-09 02:54:41','','History','','publish','closed','closed','','history','','','2021-04-09 08:06:15','2021-04-09 08:06:15','',0,'http://mpycdev.theomggroup.com/history/',3,'nav_menu_item','',0);
INSERT INTO `smrc_posts` VALUES (1172,1,'2021-04-09 08:06:15','2021-04-09 02:54:41','','Membership','','publish','closed','closed','','membership','','','2021-04-09 08:06:15','2021-04-09 08:06:15','',0,'http://mpycdev.theomggroup.com/membership/',4,'nav_menu_item','',0);
INSERT INTO `smrc_posts` VALUES (1174,1,'2021-04-09 08:06:15','2021-04-09 02:54:41','','Results','','publish','closed','closed','','results','','','2021-04-09 08:06:15','2021-04-09 08:06:15','',0,'http://mpycdev.theomggroup.com/results/',6,'nav_menu_item','',0);
INSERT INTO `smrc_posts` VALUES (1175,1,'2021-04-09 08:06:15','2021-04-09 02:54:41','','Fleets','','publish','closed','closed','','fleets','','','2021-04-09 08:06:15','2021-04-09 08:06:15','',0,'http://mpycdev.theomggroup.com/fleets/',7,'nav_menu_item','',0);
INSERT INTO `smrc_posts` VALUES (1176,1,'2021-04-09 08:06:15','2021-04-09 02:54:41','','Races','','publish','closed','closed','','races','','','2021-04-09 08:06:15','2021-04-09 08:06:15','',0,'http://mpycdev.theomggroup.com/races/',8,'nav_menu_item','',0);
INSERT INTO `smrc_posts` VALUES (1178,1,'2021-04-09 08:33:07','2021-04-09 02:54:42','','Cruising','','publish','closed','closed','','cruising','','','2021-04-09 08:33:07','2021-04-09 08:33:07','',0,'http://mpycdev.theomggroup.com/cruising/',2,'nav_menu_item','',0);
INSERT INTO `smrc_posts` VALUES (1179,1,'2021-04-09 08:33:07','2021-04-09 02:54:42','','Rowing','','publish','closed','closed','','rowing','','','2021-04-09 08:33:07','2021-04-09 08:33:07','',0,'http://mpycdev.theomggroup.com/rowing/',1,'nav_menu_item','',0);
INSERT INTO `smrc_posts` VALUES (1180,1,'2021-04-09 08:33:07','2021-04-09 02:54:42','','Green Team','','publish','closed','closed','','green-team','','','2021-04-09 08:33:07','2021-04-09 08:33:07','',0,'http://mpycdev.theomggroup.com/green-team/',4,'nav_menu_item','',0);
INSERT INTO `smrc_posts` VALUES (1181,1,'2021-04-09 08:33:07','2021-04-09 02:54:42','','Fun!','','publish','closed','closed','','fun','','','2021-04-09 08:33:07','2021-04-09 08:33:07','',0,'http://mpycdev.theomggroup.com/fun/',3,'nav_menu_item','',0);
INSERT INTO `smrc_posts` VALUES (1182,1,'2021-04-09 08:33:07','2021-04-09 02:54:42','','Juniors','','publish','closed','closed','','juniors','','','2021-04-09 08:33:07','2021-04-09 08:33:07','',0,'http://mpycdev.theomggroup.com/juniors/',24,'nav_menu_item','',0);
INSERT INTO `smrc_posts` VALUES (1183,1,'2021-04-09 05:46:42','2021-04-09 02:54:42','','Summer Camp','','publish','closed','closed','','summer-camp','','','2021-04-09 05:46:42','2021-04-09 05:46:42','',0,'http://mpycdev.theomggroup.com/summer-camp/',16,'nav_menu_item','',0);
INSERT INTO `smrc_posts` VALUES (1186,1,'2021-04-09 08:33:07','2021-04-09 02:54:42','','Clubhouse','','publish','closed','closed','','clubhouse','','','2021-04-09 08:33:07','2021-04-09 08:33:07','',0,'http://mpycdev.theomggroup.com/clubhouse/',25,'nav_menu_item','',0);
INSERT INTO `smrc_posts` VALUES (1187,1,'2021-04-09 08:06:15','2021-04-09 02:54:42','','Dining','','publish','closed','closed','','dining','','','2021-04-09 08:06:15','2021-04-09 08:06:15','',0,'http://mpycdev.theomggroup.com/dining/',18,'nav_menu_item','',0);
INSERT INTO `smrc_posts` VALUES (1188,1,'2021-04-09 08:06:15','2021-04-09 02:54:42','','Events','','publish','closed','closed','','events','','','2021-04-09 08:06:15','2021-04-09 08:06:15','',0,'http://mpycdev.theomggroup.com/events/',19,'nav_menu_item','',0);
INSERT INTO `smrc_posts` VALUES (1189,1,'2021-04-09 08:06:15','2021-04-09 02:54:42','','Visiting MPYC','','publish','closed','closed','','visiting-mpyc','','','2021-04-09 08:06:15','2021-04-09 08:06:15','',0,'http://mpycdev.theomggroup.com/visiting-mpyc/',20,'nav_menu_item','',0);
INSERT INTO `smrc_posts` VALUES (1191,1,'2021-04-09 08:06:15','2021-04-09 04:29:29','','Honors','','publish','closed','closed','','honors','','','2021-04-09 08:06:15','2021-04-09 08:06:15','',0,'http://mpycdev.theomggroup.com/honors/',9,'nav_menu_item','',0);
INSERT INTO `smrc_posts` VALUES (1195,1,'2021-04-09 04:40:56','2021-04-09 04:40:56','[bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"624\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/2\"][/bt_column][bt_column width=\"1/2\"][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"2/3\"][bt_header superheadline=\"Remarkable in it\'s way\" headline=\"Hotel California\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Nulla quis vestibulum risus. Sed eros augue, laoreet ac risus finibus, semper porta eros. Donec eleifend blandit luctus. Curabitur at massa dignissim, semper mauris a, sollicitudin ipsum. \" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][/bt_column][bt_column width=\"1/3\"][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\"][bt_text]\r\n\r\nMaecenas enim arcu, pharetra pharetra rutrum ac, condimentum vel nulla. Duis risus diam, consectetur sed purus in, ullamcorper vulputate eros. Aliquam felis neque, posuere vel purus eu, dapibus mattis dolor. Nam maximus elit augue, eu ornare tortor feugiat eget.\r\n<blockquote>Nulla dictum euismod purus, quis commodo mauris posuere auctor. Phasellus nec lectus gravida, tempus metus sit amet, mattis leo. Donec mauris orci, consectetur in congue et, dapibus sed nisi. Duis sem lacus, elementum vel luctus quis, scelerisque et nibh.</blockquote>\r\nMauris eget bibendum libero, hendrerit faucibus tellus. Morbi felis dolor, tempus ac posuere id, facilisis non diam. Pellentesque vitae libero lacus. Sed rhoncus eros vel elit lacinia lacinia. Fusce laoreet sit amet urna ut sagittis. Fusce vitae ornare massa. Nam mollis elit quis eleifend dictum.\r\n\r\n[/bt_text][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/2\" align=\"left\" vertical_align=\"btMiddleVertical\" border=\"no_border\" cell_padding=\"btDoublePadding\" animation=\"no_animation\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"#e5e5e5\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"California variety\" headline=\"Colorful & vibrant\" headline_size=\"large\" dash=\"bottom\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_text]\r\n\r\nNullam sit amet diam nisi. Pellentesque risus elit, tempor et nisl vel, feugiat lacinia elit. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae.\r\n\r\nEtiam aliquam ligula massa. Nam sollicitudin tincidunt diam eu pretium. Curabitur lacinia nisi eu sodales volutpat. Nam ullamcorper risus eu felis posuere maximus.\r\n\r\nAliquam nisl ex, porta vitae rutrum sed, rutrum non erat. Praesent eu risus eu justo tempor faucibus vel ut tortor. Fusce velit neque, faucibus hendrerit vulputate et, scelerisque sit amet odio. Donec suscipit, elit vitae bibendum efficitur, felis nulla porttitor lacus, ut semper sem nisi vel libero.\r\n\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/2\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_row_inner][bt_column_inner width=\"1/2\" align=\"left\" cell_padding=\"btNoPadding\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"618\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_column_inner][bt_column_inner width=\"1/2\" align=\"left\" cell_padding=\"btNoPadding\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"617\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_column_inner][/bt_row_inner][bt_row_inner][bt_column_inner width=\"1/2\" align=\"left\" cell_padding=\"btNoPadding\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"620\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_column_inner][bt_column_inner width=\"1/2\" align=\"left\" cell_padding=\"btNoPadding\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"621\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_column_inner][/bt_row_inner][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSemiSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"2/3\" align=\"left\" vertical_align=\"btMiddleVertical\" border=\"no_border\" cell_padding=\"default\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Our Accomodation\" headline=\"Rooms <i>&</i> Suites\" headline_size=\"extralarge\" dash=\"bottom\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\" subheadline=\"If you chose to stay with us you will enjoy modern home comforts in a traditional setting. Whether you are looking for a short weekend break or a longer holiday, we offer a range of packages that will cater for all.\" el_class=\"\" el_style=\"\"][/bt_header][/bt_column][bt_column width=\"1/3\" align=\"left\" vertical_align=\"btMiddleVertical\" border=\"no_border\" cell_padding=\"default\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][/bt_column][/bt_row][bt_row][bt_column width=\"1/4\"][bt_image image=\"44\" caption_text=\"View\" size=\"\" shape=\"square\" url=\"room details\" target=\"_self\" el_class=\"\" el_style=\"\" caption=\"Double room\" show_titles=\"no\" caption_title=\"Room details\"][bt_header superheadline=\"Room features\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"cs_ea18\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9c2\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea2c\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1c\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"DELUXE\" headline=\"Double Room\" headline_size=\"medium\" dash=\"top\" subheadline=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer mollis viverra diam ac ornare. Donec rhoncus nisi in felis congue, at pulvinar nibh dapibus.\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/2\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"room details\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"1/2\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\"][bt_image image=\"43\" caption_text=\"\" size=\"\" shape=\"square\" url=\"room details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"Room features\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"cs_ea18\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9c5\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1a\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1c\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"EXECUTIVE\" headline=\"Junior Suite\" headline_size=\"medium\" dash=\"top\" subheadline=\"Sed sodales tortor non metus iaculis, non commodo ipsum mattis. Ut at dolor elit. Proin dignissim, lacus eget ullamcorper consectetur, mauris mi mattis elit sagittis.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/2\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"room details\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"1/2\"][bt_header superheadline=\"FROM\" headline=\"$79 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\"][bt_image image=\"42\" caption_text=\"\" size=\"\" shape=\"square\" url=\"room details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"Room features\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"cs_ea30\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea18\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea2d\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1c\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"DELUXE\" headline=\"Double Room\" headline_size=\"medium\" dash=\"top\" subheadline=\"Mauris suscipit lectus pellentesque ante efficitur, at dignissim tellus maximus. Sed leo magna, faucibus non ante non, pulvinar scelerisque magna sit elis.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/2\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"room details\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"1/2\"][bt_header superheadline=\"FROM\" headline=\"$49 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\"][bt_image image=\"41\" caption_text=\"\" size=\"medium\" shape=\"square\" url=\"room details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"Room features\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"cs_ea18\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1b\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea21\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1c\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"DELUXE\" headline=\"Family Room\" headline_size=\"medium\" dash=\"top\" subheadline=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer mollis viverra diam ac ornare. Donec rhoncus nisi in felis congue, at pulvinar nibh dapibus.\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/2\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"room details\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"1/2\"][bt_header superheadline=\"FROM\" headline=\"$79 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"1/4\"][bt_image image=\"563\" caption_text=\"View\" size=\"\" shape=\"square\" url=\"room details\" target=\"_self\" el_class=\"\" el_style=\"\" caption=\"Double room\" show_titles=\"no\" caption_title=\"Room details\"][bt_header superheadline=\"Room features\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"cs_ea18\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9c2\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea2c\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1c\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"GARDEN\" headline=\"Family Room\" headline_size=\"medium\" dash=\"top\" subheadline=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer mollis viverra diam ac ornare. Donec rhoncus nisi in felis congue, at pulvinar nibh dapibus.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/2\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"room details\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"1/2\"][bt_header superheadline=\"FROM\" headline=\"$89 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\"][bt_image image=\"562\" caption_text=\"\" size=\"\" shape=\"square\" url=\"room details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"Room features\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"cs_ea18\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9c5\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1a\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1c\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"EXECUTIVE\" headline=\"Double Suite\" headline_size=\"medium\" dash=\"top\" subheadline=\"Curabitur sollicitudin vitae tellus ac porta. Donec aliquam turpis augue, eu sagittis risus consectetur non. Cras ut feugiat dolor, consectetur tristique nibh.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/2\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"room details\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"1/2\"][bt_header superheadline=\"FROM\" headline=\"$119 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\"][bt_image image=\"565\" caption_text=\"\" size=\"\" shape=\"square\" url=\"room details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"Room features\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"cs_ea30\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea18\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea2d\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1c\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"EXECUTIVE\" headline=\"Deluxe Suite\" headline_size=\"medium\" dash=\"top\" subheadline=\"Proin lobortis tempus elit sit amet consectetur. Proin egestas velit nibh, a viverra magna imperdiet sit amet. Nam diam neque, consectetur vel dolor et.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/2\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"room details\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"1/2\"][bt_header superheadline=\"FROM\" headline=\"$109 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\"][bt_image image=\"564\" caption_text=\"\" size=\"medium\" shape=\"square\" url=\"room details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"Room features\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"cs_ea18\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1b\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea21\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1c\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"DETACHED\" headline=\"Maisonette\" headline_size=\"medium\" dash=\"top\" subheadline=\"Vestibulum faucibus est sit amet dolor mollis, vitae auctor massa ullamcorper. Integer ultrices quis sapien a viverra. Aenean at nunc at mauris congue egestas.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/2\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"room details\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"1/2\"][bt_header superheadline=\"FROM\" headline=\"$129 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSemiSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#e6e6e6\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\"][bt_slider height=\"auto\" auto_play=\"\" hide_arrows=\"\" hide_paging=\"btSliderHidePaging\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/3\"][bt_icons][bt_image image=\"78\" caption_text=\"\" size=\"thumbnail\" shape=\"circle\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][/bt_image][/bt_icons][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\r\n\r\n<em>This was our absolutely best vacation ever, for each and everyone of us. We were looking for a good family hotel with lots of activities for the whole family and that was exactly what we got!</em>\r\n\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"June 2016\" headline=\"Alan Jones\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"1/3\"][bt_icons][bt_image image=\"447\" caption_text=\"\" size=\"thumbnail\" shape=\"circle\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][/bt_image][/bt_icons][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\r\n\r\n<em>I was looking for a nice hotel, but with various activities when staying there. Boy, was I surprised! California was anything but boring and all the things I did and places I visited was well worth it!</em>\r\n\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"July 2016\" headline=\"Adrianne White\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"1/3\"][bt_icons][bt_image image=\"446\" caption_text=\"\" size=\"thumbnail\" shape=\"circle\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][/bt_image][/bt_icons][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\r\n\r\n<em>The best vacation for me and my fiancee, and a very affordable I might add! I throughly enjoyed every day at the beach, and every minute in the room, restaurant, everywhere! I can recommend this to everyone!</em>\r\n\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"August 2016\" headline=\"Jenna & Mike\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/3\"][bt_icons][bt_image image=\"78\" caption_text=\"\" size=\"thumbnail\" shape=\"circle\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][/bt_image][/bt_icons][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\r\n\r\n<em>This was our absolutely best vacation ever, for each and everyone of us. We were looking for a good family hotel with lots of activities for the whole family and that was exactly what we got!</em>\r\n\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"June 2016\" headline=\"Alan Jones\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"1/3\"][bt_icons][bt_image image=\"447\" caption_text=\"\" size=\"thumbnail\" shape=\"circle\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][/bt_image][/bt_icons][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\r\n\r\n<em>I was looking for a nice hotel, but with various activities when staying there. Boy, was I surprised! California was anything but boring and all the things I did and places I visited was well worth it!</em>\r\n\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"July 2016\" headline=\"Adrianne White\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"1/3\"][bt_icons][bt_image image=\"446\" caption_text=\"\" size=\"thumbnail\" shape=\"circle\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][/bt_image][/bt_icons][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\r\n\r\n<em>The best vacation for me and my fiancee, and a very affordable I might add! I throughly enjoyed every day at the beach, and every minute in the room, restaurant, everywhere! I can recommend this to everyone!</em>\r\n\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"August 2016\" headline=\"Jenna & Mike\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][/bt_slider][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"dark\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#584528\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\"][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\r\n\r\n[contact-form-7 id=\"397\" title=\"Booking form\"]\r\n\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"wide\" top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/6\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"618\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_column][bt_column width=\"1/6\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"619\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_column][bt_column width=\"1/6\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"620\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_column][bt_column width=\"1/6\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"622\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_column][bt_column width=\"1/6\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"621\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_column][bt_column width=\"1/6\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"617\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_column][/bt_row][/bt_section]','About us','\n ','inherit','closed','closed','','33-revision-v1','','','2021-04-09 04:40:56','2021-04-09 04:40:56','',33,'http://mpycdev.theomggroup.com/?p=1195',0,'revision','',0);
INSERT INTO `smrc_posts` VALUES (1196,1,'2021-04-09 04:44:03','2021-04-09 04:44:03','[bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"624\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\"][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"2/3\"][bt_header superheadline=\"Remarkable in it\'s way\" headline=\"Hotel California\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Nulla quis vestibulum risus. Sed eros augue, laoreet ac risus finibus, semper porta eros. Donec eleifend blandit luctus. Curabitur at massa dignissim, semper mauris a, sollicitudin ipsum. \" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_text]\r\n\r\nMaecenas enim arcu, pharetra pharetra rutrum ac, condimentum vel nulla. Duis risus diam, consectetur sed purus in, ullamcorper vulputate eros. Aliquam felis neque, posuere vel purus eu, dapibus mattis dolor. Nam maximus elit augue, eu ornare tortor feugiat eget.\r\n<blockquote>Nulla dictum euismod purus, quis commodo mauris posuere auctor. Phasellus nec lectus gravida, tempus metus sit amet, mattis leo. Donec mauris orci, consectetur in congue et, dapibus sed nisi. Duis sem lacus, elementum vel luctus quis, scelerisque et nibh.</blockquote>\r\nMauris eget bibendum libero, hendrerit faucibus tellus. Morbi felis dolor, tempus ac posuere id, facilisis non diam. Pellentesque vitae libero lacus. Sed rhoncus eros vel elit lacinia lacinia. Fusce laoreet sit amet urna ut sagittis. Fusce vitae ornare massa. Nam mollis elit quis eleifend dictum.\r\n\r\n[/bt_text][/bt_column][bt_column width=\"1/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"#ededed\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\"][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/2\" align=\"left\" vertical_align=\"btMiddleVertical\" border=\"no_border\" cell_padding=\"btDoublePadding\" animation=\"no_animation\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"#e5e5e5\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"California variety\" headline=\"Colorful & vibrant\" headline_size=\"large\" dash=\"bottom\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_text]\r\n\r\nNullam sit amet diam nisi. Pellentesque risus elit, tempor et nisl vel, feugiat lacinia elit. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae.\r\n\r\nEtiam aliquam ligula massa. Nam sollicitudin tincidunt diam eu pretium. Curabitur lacinia nisi eu sodales volutpat. Nam ullamcorper risus eu felis posuere maximus.\r\n\r\nAliquam nisl ex, porta vitae rutrum sed, rutrum non erat. Praesent eu risus eu justo tempor faucibus vel ut tortor. Fusce velit neque, faucibus hendrerit vulputate et, scelerisque sit amet odio. Donec suscipit, elit vitae bibendum efficitur, felis nulla porttitor lacus, ut semper sem nisi vel libero.\r\n\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/2\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_row_inner][bt_column_inner width=\"1/2\" align=\"left\" cell_padding=\"btNoPadding\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"618\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_column_inner][bt_column_inner width=\"1/2\" align=\"left\" cell_padding=\"btNoPadding\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"617\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_column_inner][/bt_row_inner][bt_row_inner][bt_column_inner width=\"1/2\" align=\"left\" cell_padding=\"btNoPadding\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"620\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_column_inner][bt_column_inner width=\"1/2\" align=\"left\" cell_padding=\"btNoPadding\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"621\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_column_inner][/bt_row_inner][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSemiSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"2/3\" align=\"left\" vertical_align=\"btMiddleVertical\" border=\"no_border\" cell_padding=\"default\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Our Accomodation\" headline=\"Rooms <i>&</i> Suites\" headline_size=\"extralarge\" dash=\"bottom\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\" subheadline=\"If you chose to stay with us you will enjoy modern home comforts in a traditional setting. Whether you are looking for a short weekend break or a longer holiday, we offer a range of packages that will cater for all.\" el_class=\"\" el_style=\"\"][/bt_header][/bt_column][bt_column width=\"1/3\" align=\"left\" vertical_align=\"btMiddleVertical\" border=\"no_border\" cell_padding=\"default\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][/bt_column][/bt_row][bt_row][bt_column width=\"1/4\"][bt_image image=\"44\" caption_text=\"View\" size=\"\" shape=\"square\" url=\"room details\" target=\"_self\" el_class=\"\" el_style=\"\" caption=\"Double room\" show_titles=\"no\" caption_title=\"Room details\"][bt_header superheadline=\"Room features\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"cs_ea18\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9c2\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea2c\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1c\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"DELUXE\" headline=\"Double Room\" headline_size=\"medium\" dash=\"top\" subheadline=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer mollis viverra diam ac ornare. Donec rhoncus nisi in felis congue, at pulvinar nibh dapibus.\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/2\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"room details\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"1/2\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\"][bt_image image=\"43\" caption_text=\"\" size=\"\" shape=\"square\" url=\"room details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"Room features\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"cs_ea18\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9c5\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1a\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1c\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"EXECUTIVE\" headline=\"Junior Suite\" headline_size=\"medium\" dash=\"top\" subheadline=\"Sed sodales tortor non metus iaculis, non commodo ipsum mattis. Ut at dolor elit. Proin dignissim, lacus eget ullamcorper consectetur, mauris mi mattis elit sagittis.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/2\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"room details\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"1/2\"][bt_header superheadline=\"FROM\" headline=\"$79 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\"][bt_image image=\"42\" caption_text=\"\" size=\"\" shape=\"square\" url=\"room details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"Room features\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"cs_ea30\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea18\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea2d\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1c\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"DELUXE\" headline=\"Double Room\" headline_size=\"medium\" dash=\"top\" subheadline=\"Mauris suscipit lectus pellentesque ante efficitur, at dignissim tellus maximus. Sed leo magna, faucibus non ante non, pulvinar scelerisque magna sit elis.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/2\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"room details\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"1/2\"][bt_header superheadline=\"FROM\" headline=\"$49 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\"][bt_image image=\"41\" caption_text=\"\" size=\"medium\" shape=\"square\" url=\"room details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"Room features\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"cs_ea18\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1b\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea21\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1c\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"DELUXE\" headline=\"Family Room\" headline_size=\"medium\" dash=\"top\" subheadline=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer mollis viverra diam ac ornare. Donec rhoncus nisi in felis congue, at pulvinar nibh dapibus.\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/2\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"room details\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"1/2\"][bt_header superheadline=\"FROM\" headline=\"$79 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"1/4\"][bt_image image=\"563\" caption_text=\"View\" size=\"\" shape=\"square\" url=\"room details\" target=\"_self\" el_class=\"\" el_style=\"\" caption=\"Double room\" show_titles=\"no\" caption_title=\"Room details\"][bt_header superheadline=\"Room features\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"cs_ea18\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9c2\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea2c\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1c\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"GARDEN\" headline=\"Family Room\" headline_size=\"medium\" dash=\"top\" subheadline=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer mollis viverra diam ac ornare. Donec rhoncus nisi in felis congue, at pulvinar nibh dapibus.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/2\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"room details\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"1/2\"][bt_header superheadline=\"FROM\" headline=\"$89 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\"][bt_image image=\"562\" caption_text=\"\" size=\"\" shape=\"square\" url=\"room details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"Room features\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"cs_ea18\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9c5\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1a\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1c\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"EXECUTIVE\" headline=\"Double Suite\" headline_size=\"medium\" dash=\"top\" subheadline=\"Curabitur sollicitudin vitae tellus ac porta. Donec aliquam turpis augue, eu sagittis risus consectetur non. Cras ut feugiat dolor, consectetur tristique nibh.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/2\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"room details\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"1/2\"][bt_header superheadline=\"FROM\" headline=\"$119 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\"][bt_image image=\"565\" caption_text=\"\" size=\"\" shape=\"square\" url=\"room details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"Room features\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"cs_ea30\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea18\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea2d\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1c\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"EXECUTIVE\" headline=\"Deluxe Suite\" headline_size=\"medium\" dash=\"top\" subheadline=\"Proin lobortis tempus elit sit amet consectetur. Proin egestas velit nibh, a viverra magna imperdiet sit amet. Nam diam neque, consectetur vel dolor et.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/2\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"room details\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"1/2\"][bt_header superheadline=\"FROM\" headline=\"$109 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\"][bt_image image=\"564\" caption_text=\"\" size=\"medium\" shape=\"square\" url=\"room details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"Room features\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"cs_ea18\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1b\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea21\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1c\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"DETACHED\" headline=\"Maisonette\" headline_size=\"medium\" dash=\"top\" subheadline=\"Vestibulum faucibus est sit amet dolor mollis, vitae auctor massa ullamcorper. Integer ultrices quis sapien a viverra. Aenean at nunc at mauris congue egestas.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/2\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"room details\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"1/2\"][bt_header superheadline=\"FROM\" headline=\"$129 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSemiSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#e6e6e6\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\"][bt_slider height=\"auto\" auto_play=\"\" hide_arrows=\"\" hide_paging=\"btSliderHidePaging\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/3\"][bt_icons][bt_image image=\"78\" caption_text=\"\" size=\"thumbnail\" shape=\"circle\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][/bt_image][/bt_icons][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\r\n\r\n<em>This was our absolutely best vacation ever, for each and everyone of us. We were looking for a good family hotel with lots of activities for the whole family and that was exactly what we got!</em>\r\n\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"June 2016\" headline=\"Alan Jones\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"1/3\"][bt_icons][bt_image image=\"447\" caption_text=\"\" size=\"thumbnail\" shape=\"circle\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][/bt_image][/bt_icons][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\r\n\r\n<em>I was looking for a nice hotel, but with various activities when staying there. Boy, was I surprised! California was anything but boring and all the things I did and places I visited was well worth it!</em>\r\n\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"July 2016\" headline=\"Adrianne White\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"1/3\"][bt_icons][bt_image image=\"446\" caption_text=\"\" size=\"thumbnail\" shape=\"circle\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][/bt_image][/bt_icons][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\r\n\r\n<em>The best vacation for me and my fiancee, and a very affordable I might add! I throughly enjoyed every day at the beach, and every minute in the room, restaurant, everywhere! I can recommend this to everyone!</em>\r\n\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"August 2016\" headline=\"Jenna & Mike\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/3\"][bt_icons][bt_image image=\"78\" caption_text=\"\" size=\"thumbnail\" shape=\"circle\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][/bt_image][/bt_icons][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\r\n\r\n<em>This was our absolutely best vacation ever, for each and everyone of us. We were looking for a good family hotel with lots of activities for the whole family and that was exactly what we got!</em>\r\n\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"June 2016\" headline=\"Alan Jones\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"1/3\"][bt_icons][bt_image image=\"447\" caption_text=\"\" size=\"thumbnail\" shape=\"circle\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][/bt_image][/bt_icons][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\r\n\r\n<em>I was looking for a nice hotel, but with various activities when staying there. Boy, was I surprised! California was anything but boring and all the things I did and places I visited was well worth it!</em>\r\n\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"July 2016\" headline=\"Adrianne White\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"1/3\"][bt_icons][bt_image image=\"446\" caption_text=\"\" size=\"thumbnail\" shape=\"circle\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][/bt_image][/bt_icons][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\r\n\r\n<em>The best vacation for me and my fiancee, and a very affordable I might add! I throughly enjoyed every day at the beach, and every minute in the room, restaurant, everywhere! I can recommend this to everyone!</em>\r\n\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"August 2016\" headline=\"Jenna & Mike\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][/bt_slider][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"dark\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#584528\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\"][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\r\n\r\n[contact-form-7 id=\"397\" title=\"Booking form\"]\r\n\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"wide\" top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/6\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"618\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_column][bt_column width=\"1/6\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"619\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_column][bt_column width=\"1/6\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"620\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_column][bt_column width=\"1/6\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"622\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_column][bt_column width=\"1/6\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"621\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_column][bt_column width=\"1/6\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"617\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_column][/bt_row][/bt_section]','About us','\n ','inherit','closed','closed','','33-revision-v1','','','2021-04-09 04:44:03','2021-04-09 04:44:03','',33,'http://mpycdev.theomggroup.com/?p=1196',0,'revision','',0);
INSERT INTO `smrc_posts` VALUES (1197,1,'2021-04-09 04:47:53','2021-04-09 04:47:53','[bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"624\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\"][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"2/3\"][bt_header superheadline=\"Remarkable in it\'s way\" headline=\"Hotel California\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Nulla quis vestibulum risus. Sed eros augue, laoreet ac risus finibus, semper porta eros. Donec eleifend blandit luctus. Curabitur at massa dignissim, semper mauris a, sollicitudin ipsum. \" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_text]\r\n\r\nMaecenas enim arcu, pharetra pharetra rutrum ac, condimentum vel nulla. Duis risus diam, consectetur sed purus in, ullamcorper vulputate eros. Aliquam felis neque, posuere vel purus eu, dapibus mattis dolor. Nam maximus elit augue, eu ornare tortor feugiat eget.\r\n<blockquote>Nulla dictum euismod purus, quis commodo mauris posuere auctor. Phasellus nec lectus gravida, tempus metus sit amet, mattis leo. Donec mauris orci, consectetur in congue et, dapibus sed nisi. Duis sem lacus, elementum vel luctus quis, scelerisque et nibh.</blockquote>\r\nMauris eget bibendum libero, hendrerit faucibus tellus. Morbi felis dolor, tempus ac posuere id, facilisis non diam. Pellentesque vitae libero lacus. Sed rhoncus eros vel elit lacinia lacinia. Fusce laoreet sit amet urna ut sagittis. Fusce vitae ornare massa. Nam mollis elit quis eleifend dictum.\r\n\r\n[/bt_text][/bt_column][bt_column width=\"1/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"#ededed\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_text]\r\n<ul>\r\n <li>Welcome</li>\r\n <li>History</li>\r\n <li>Membership</li>\r\n</ul>\r\n[/bt_text][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\"][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/2\" align=\"left\" vertical_align=\"btMiddleVertical\" border=\"no_border\" cell_padding=\"btDoublePadding\" animation=\"no_animation\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"#e5e5e5\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"California variety\" headline=\"Colorful & vibrant\" headline_size=\"large\" dash=\"bottom\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_text]\r\n\r\nNullam sit amet diam nisi. Pellentesque risus elit, tempor et nisl vel, feugiat lacinia elit. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae.\r\n\r\nEtiam aliquam ligula massa. Nam sollicitudin tincidunt diam eu pretium. Curabitur lacinia nisi eu sodales volutpat. Nam ullamcorper risus eu felis posuere maximus.\r\n\r\nAliquam nisl ex, porta vitae rutrum sed, rutrum non erat. Praesent eu risus eu justo tempor faucibus vel ut tortor. Fusce velit neque, faucibus hendrerit vulputate et, scelerisque sit amet odio. Donec suscipit, elit vitae bibendum efficitur, felis nulla porttitor lacus, ut semper sem nisi vel libero.\r\n\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/2\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_row_inner][bt_column_inner width=\"1/2\" align=\"left\" cell_padding=\"btNoPadding\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"618\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_column_inner][bt_column_inner width=\"1/2\" align=\"left\" cell_padding=\"btNoPadding\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"617\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_column_inner][/bt_row_inner][bt_row_inner][bt_column_inner width=\"1/2\" align=\"left\" cell_padding=\"btNoPadding\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"620\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_column_inner][bt_column_inner width=\"1/2\" align=\"left\" cell_padding=\"btNoPadding\" vertical_align=\"inherit\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"621\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_column_inner][/bt_row_inner][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSemiSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"2/3\" align=\"left\" vertical_align=\"btMiddleVertical\" border=\"no_border\" cell_padding=\"default\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Our Accomodation\" headline=\"Rooms <i>&</i> Suites\" headline_size=\"extralarge\" dash=\"bottom\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\" subheadline=\"If you chose to stay with us you will enjoy modern home comforts in a traditional setting. Whether you are looking for a short weekend break or a longer holiday, we offer a range of packages that will cater for all.\" el_class=\"\" el_style=\"\"][/bt_header][/bt_column][bt_column width=\"1/3\" align=\"left\" vertical_align=\"btMiddleVertical\" border=\"no_border\" cell_padding=\"default\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][/bt_column][/bt_row][bt_row][bt_column width=\"1/4\"][bt_image image=\"44\" caption_text=\"View\" size=\"\" shape=\"square\" url=\"room details\" target=\"_self\" el_class=\"\" el_style=\"\" caption=\"Double room\" show_titles=\"no\" caption_title=\"Room details\"][bt_header superheadline=\"Room features\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"cs_ea18\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9c2\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea2c\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1c\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"DELUXE\" headline=\"Double Room\" headline_size=\"medium\" dash=\"top\" subheadline=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer mollis viverra diam ac ornare. Donec rhoncus nisi in felis congue, at pulvinar nibh dapibus.\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/2\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"room details\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"1/2\"][bt_header superheadline=\"FROM\" headline=\"$59 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\"][bt_image image=\"43\" caption_text=\"\" size=\"\" shape=\"square\" url=\"room details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"Room features\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"cs_ea18\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9c5\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1a\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1c\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"EXECUTIVE\" headline=\"Junior Suite\" headline_size=\"medium\" dash=\"top\" subheadline=\"Sed sodales tortor non metus iaculis, non commodo ipsum mattis. Ut at dolor elit. Proin dignissim, lacus eget ullamcorper consectetur, mauris mi mattis elit sagittis.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/2\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"room details\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"1/2\"][bt_header superheadline=\"FROM\" headline=\"$79 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\"][bt_image image=\"42\" caption_text=\"\" size=\"\" shape=\"square\" url=\"room details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"Room features\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"cs_ea30\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea18\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea2d\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1c\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"DELUXE\" headline=\"Double Room\" headline_size=\"medium\" dash=\"top\" subheadline=\"Mauris suscipit lectus pellentesque ante efficitur, at dignissim tellus maximus. Sed leo magna, faucibus non ante non, pulvinar scelerisque magna sit elis.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/2\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"room details\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"1/2\"][bt_header superheadline=\"FROM\" headline=\"$49 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\"][bt_image image=\"41\" caption_text=\"\" size=\"medium\" shape=\"square\" url=\"room details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"Room features\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"cs_ea18\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1b\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea21\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1c\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"DELUXE\" headline=\"Family Room\" headline_size=\"medium\" dash=\"top\" subheadline=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer mollis viverra diam ac ornare. Donec rhoncus nisi in felis congue, at pulvinar nibh dapibus.\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/2\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"room details\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"1/2\"][bt_header superheadline=\"FROM\" headline=\"$79 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"1/4\"][bt_image image=\"563\" caption_text=\"View\" size=\"\" shape=\"square\" url=\"room details\" target=\"_self\" el_class=\"\" el_style=\"\" caption=\"Double room\" show_titles=\"no\" caption_title=\"Room details\"][bt_header superheadline=\"Room features\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"cs_ea18\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9c2\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea2c\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1c\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"GARDEN\" headline=\"Family Room\" headline_size=\"medium\" dash=\"top\" subheadline=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer mollis viverra diam ac ornare. Donec rhoncus nisi in felis congue, at pulvinar nibh dapibus.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/2\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"room details\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"1/2\"][bt_header superheadline=\"FROM\" headline=\"$89 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\"][bt_image image=\"562\" caption_text=\"\" size=\"\" shape=\"square\" url=\"room details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"Room features\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"cs_ea18\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_e9c5\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1a\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1c\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"EXECUTIVE\" headline=\"Double Suite\" headline_size=\"medium\" dash=\"top\" subheadline=\"Curabitur sollicitudin vitae tellus ac porta. Donec aliquam turpis augue, eu sagittis risus consectetur non. Cras ut feugiat dolor, consectetur tristique nibh.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/2\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"room details\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"1/2\"][bt_header superheadline=\"FROM\" headline=\"$119 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\"][bt_image image=\"565\" caption_text=\"\" size=\"\" shape=\"square\" url=\"room details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"Room features\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"cs_ea30\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea18\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea2d\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1c\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"EXECUTIVE\" headline=\"Deluxe Suite\" headline_size=\"medium\" dash=\"top\" subheadline=\"Proin lobortis tempus elit sit amet consectetur. Proin egestas velit nibh, a viverra magna imperdiet sit amet. Nam diam neque, consectetur vel dolor et.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/2\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"room details\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"1/2\"][bt_header superheadline=\"FROM\" headline=\"$109 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"1/4\"][bt_image image=\"564\" caption_text=\"\" size=\"medium\" shape=\"square\" url=\"room details\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][bt_header superheadline=\"Room features\" headline=\"\" headline_size=\"small\" dash=\"top\" subheadline=\"\" el_class=\"\" el_style=\"\"][/bt_header][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"border\" el_class=\"\" el_style=\"\"][/bt_hr][bt_icons][bt_icon icon=\"cs_ea18\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1b\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea21\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"cs_ea1c\" icon_title=\"\" icon_type=\"btIcoDefaultType\" icon_color=\"btIcoDefaultColor\" icon_size=\"btIcoMediumSize\" url=\"\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_image][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"DETACHED\" headline=\"Maisonette\" headline_size=\"medium\" dash=\"top\" subheadline=\"Vestibulum faucibus est sit amet dolor mollis, vitae auctor massa ullamcorper. Integer ultrices quis sapien a viverra. Aenean at nunc at mauris congue egestas.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_row_inner][bt_column_inner width=\"1/2\" align=\"center\" cell_padding=\"default\" vertical_align=\"btMiddleVertical\" highlight=\"no_highlight\" text_indent=\"no_text_indent\" animation=\"no_animation\" background_color=\"\" opacity=\"\" el_class=\"\" el_style=\"\"][bt_button text=\"DETAILS\" icon=\"no_icon\" url=\"room details\" target=\"no_target\" style=\"Filled\" icon_position=\"Right\" color=\"Accent\" size=\"Small\" width=\"Full\" el_class=\"\" el_style=\"\"][/bt_button][bt_hr top_spaced=\"topExtraSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"1/2\"][bt_header superheadline=\"FROM\" headline=\"$129 / night\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"topSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSemiSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#e6e6e6\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\"][bt_slider height=\"auto\" auto_play=\"\" hide_arrows=\"\" hide_paging=\"btSliderHidePaging\" simple_arrows=\"yes\" el_class=\"\" el_style=\"\"][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/3\"][bt_icons][bt_image image=\"78\" caption_text=\"\" size=\"thumbnail\" shape=\"circle\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][/bt_image][/bt_icons][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\r\n\r\n<em>This was our absolutely best vacation ever, for each and everyone of us. We were looking for a good family hotel with lots of activities for the whole family and that was exactly what we got!</em>\r\n\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"June 2016\" headline=\"Alan Jones\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"1/3\"][bt_icons][bt_image image=\"447\" caption_text=\"\" size=\"thumbnail\" shape=\"circle\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][/bt_image][/bt_icons][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\r\n\r\n<em>I was looking for a nice hotel, but with various activities when staying there. Boy, was I surprised! California was anything but boring and all the things I did and places I visited was well worth it!</em>\r\n\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"July 2016\" headline=\"Adrianne White\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"1/3\"][bt_icons][bt_image image=\"446\" caption_text=\"\" size=\"thumbnail\" shape=\"circle\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][/bt_image][/bt_icons][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\r\n\r\n<em>The best vacation for me and my fiancee, and a very affordable I might add! I throughly enjoyed every day at the beach, and every minute in the room, restaurant, everywhere! I can recommend this to everyone!</em>\r\n\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"August 2016\" headline=\"Jenna & Mike\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][bt_slider_item][bt_row_inner][bt_column_inner width=\"1/3\"][bt_icons][bt_image image=\"78\" caption_text=\"\" size=\"thumbnail\" shape=\"circle\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][/bt_image][/bt_icons][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\r\n\r\n<em>This was our absolutely best vacation ever, for each and everyone of us. We were looking for a good family hotel with lots of activities for the whole family and that was exactly what we got!</em>\r\n\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"June 2016\" headline=\"Alan Jones\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"1/3\"][bt_icons][bt_image image=\"447\" caption_text=\"\" size=\"thumbnail\" shape=\"circle\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][/bt_image][/bt_icons][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\r\n\r\n<em>I was looking for a nice hotel, but with various activities when staying there. Boy, was I surprised! California was anything but boring and all the things I did and places I visited was well worth it!</em>\r\n\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"July 2016\" headline=\"Adrianne White\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][bt_column_inner width=\"1/3\"][bt_icons][bt_image image=\"446\" caption_text=\"\" size=\"thumbnail\" shape=\"circle\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\" caption_title=\"\" show_titles=\"no\"][/bt_image][/bt_icons][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\r\n\r\n<em>The best vacation for me and my fiancee, and a very affordable I might add! I throughly enjoyed every day at the beach, and every minute in the room, restaurant, everywhere! I can recommend this to everyone!</em>\r\n\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"August 2016\" headline=\"Jenna & Mike\" headline_size=\"small\" dash=\"no\" subheadline=\"\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineAccentColor\" bottom_dash_color=\"btBottomDashDefaultColor\"][/bt_header][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomExtraSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column_inner][/bt_row_inner][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_slider_item][/bt_slider][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"dark\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"#584528\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\"][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\r\n\r\n[contact-form-7 id=\"397\" title=\"Booking form\"]\r\n\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][/bt_section][bt_section layout=\"wide\" top_spaced=\"not-spaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/6\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"618\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_column][bt_column width=\"1/6\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"619\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_column][bt_column width=\"1/6\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"620\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_column][bt_column width=\"1/6\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"622\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_column][bt_column width=\"1/6\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"621\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_column][bt_column width=\"1/6\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btNoPadding\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_image image=\"617\" caption_text=\"\" caption_title=\"\" show_titles=\"no\" size=\"\" shape=\"square\" url=\"\" target=\"_self\" el_class=\"\" el_style=\"\"][/bt_image][/bt_column][/bt_row][/bt_section]','About us','\n ','inherit','closed','closed','','33-revision-v1','','','2021-04-09 04:47:53','2021-04-09 04:47:53','',33,'http://mpycdev.theomggroup.com/?p=1197',0,'revision','',0);
INSERT INTO `smrc_posts` VALUES (1198,1,'2021-04-09 04:49:10','2021-04-09 04:49:10','[bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"624\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\"][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"2/3\"][bt_header superheadline=\"Remarkable in it\'s way\" headline=\"Hotel California\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Nulla quis vestibulum risus. Sed eros augue, laoreet ac risus finibus, semper porta eros. Donec eleifend blandit luctus. Curabitur at massa dignissim, semper mauris a, sollicitudin ipsum. \" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_text]\r\n\r\nMaecenas enim arcu, pharetra pharetra rutrum ac, condimentum vel nulla. Duis risus diam, consectetur sed purus in, ullamcorper vulputate eros. Aliquam felis neque, posuere vel purus eu, dapibus mattis dolor. Nam maximus elit augue, eu ornare tortor feugiat eget.\r\n<blockquote>Nulla dictum euismod purus, quis commodo mauris posuere auctor. Phasellus nec lectus gravida, tempus metus sit amet, mattis leo. Donec mauris orci, consectetur in congue et, dapibus sed nisi. Duis sem lacus, elementum vel luctus quis, scelerisque et nibh.</blockquote>\r\nMauris eget bibendum libero, hendrerit faucibus tellus. Morbi felis dolor, tempus ac posuere id, facilisis non diam. Pellentesque vitae libero lacus. Sed rhoncus eros vel elit lacinia lacinia. Fusce laoreet sit amet urna ut sagittis. Fusce vitae ornare massa. Nam mollis elit quis eleifend dictum.\r\n\r\n[/bt_text][/bt_column][bt_column width=\"1/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"#ededed\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_text]\r\n<ul>\r\n <li>Welcome</li>\r\n <li>History</li>\r\n <li>Membership</li>\r\n</ul>\r\n[/bt_text][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\"][/bt_column][/bt_row][/bt_section]','About us','\n ','inherit','closed','closed','','33-revision-v1','','','2021-04-09 04:49:10','2021-04-09 04:49:10','',33,'http://mpycdev.theomggroup.com/?p=1198',0,'revision','',0);
INSERT INTO `smrc_posts` VALUES (1199,1,'2021-04-09 04:52:17','2021-04-09 04:52:17','[bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"624\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\"][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"2/3\"][bt_header superheadline=\"Remarkable in it\'s way\" headline=\"Hotel California\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Nulla quis vestibulum risus. Sed eros augue, laoreet ac risus finibus, semper porta eros. Donec eleifend blandit luctus. Curabitur at massa dignissim, semper mauris a, sollicitudin ipsum. \" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_text]\r\n\r\nMaecenas enim arcu, pharetra pharetra rutrum ac, condimentum vel nulla. Duis risus diam, consectetur sed purus in, ullamcorper vulputate eros. Aliquam felis neque, posuere vel purus eu, dapibus mattis dolor. Nam maximus elit augue, eu ornare tortor feugiat eget.\r\n<blockquote>Nulla dictum euismod purus, quis commodo mauris posuere auctor. Phasellus nec lectus gravida, tempus metus sit amet, mattis leo. Donec mauris orci, consectetur in congue et, dapibus sed nisi. Duis sem lacus, elementum vel luctus quis, scelerisque et nibh.</blockquote>\r\nMauris eget bibendum libero, hendrerit faucibus tellus. Morbi felis dolor, tempus ac posuere id, facilisis non diam. Pellentesque vitae libero lacus. Sed rhoncus eros vel elit lacinia lacinia. Fusce laoreet sit amet urna ut sagittis. Fusce vitae ornare massa. Nam mollis elit quis eleifend dictum.\r\n\r\n[/bt_text][/bt_column][bt_column width=\"1/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"#ededed\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_custom_menu menu=\"About Us\" el_class=\"\" el_style=\"\"][/bt_custom_menu][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\"][/bt_column][/bt_row][/bt_section]','About us','\n ','inherit','closed','closed','','33-revision-v1','','','2021-04-09 04:52:17','2021-04-09 04:52:17','',33,'http://mpycdev.theomggroup.com/?p=1199',0,'revision','',0);
INSERT INTO `smrc_posts` VALUES (1200,1,'2021-04-09 04:53:28','2021-04-09 04:53:28','[bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"624\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\"][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"#ededed\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_custom_menu menu=\"About Us\" el_class=\"\" el_style=\"\"][/bt_custom_menu][/bt_column][bt_column width=\"2/3\"][bt_header superheadline=\"Remarkable in it\'s way\" headline=\"Hotel California\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Nulla quis vestibulum risus. Sed eros augue, laoreet ac risus finibus, semper porta eros. Donec eleifend blandit luctus. Curabitur at massa dignissim, semper mauris a, sollicitudin ipsum. \" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_text]\r\n\r\nMaecenas enim arcu, pharetra pharetra rutrum ac, condimentum vel nulla. Duis risus diam, consectetur sed purus in, ullamcorper vulputate eros. Aliquam felis neque, posuere vel purus eu, dapibus mattis dolor. Nam maximus elit augue, eu ornare tortor feugiat eget.\r\n<blockquote>Nulla dictum euismod purus, quis commodo mauris posuere auctor. Phasellus nec lectus gravida, tempus metus sit amet, mattis leo. Donec mauris orci, consectetur in congue et, dapibus sed nisi. Duis sem lacus, elementum vel luctus quis, scelerisque et nibh.</blockquote>\r\nMauris eget bibendum libero, hendrerit faucibus tellus. Morbi felis dolor, tempus ac posuere id, facilisis non diam. Pellentesque vitae libero lacus. Sed rhoncus eros vel elit lacinia lacinia. Fusce laoreet sit amet urna ut sagittis. Fusce vitae ornare massa. Nam mollis elit quis eleifend dictum.\r\n\r\n[/bt_text][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\"][/bt_column][/bt_row][/bt_section]','About us','\n ','inherit','closed','closed','','33-revision-v1','','','2021-04-09 04:53:28','2021-04-09 04:53:28','',33,'http://mpycdev.theomggroup.com/?p=1200',0,'revision','',0);
INSERT INTO `smrc_posts` VALUES (1201,1,'2021-04-09 04:55:47','2021-04-09 04:55:47','[bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"624\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\"][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"yes\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"#ededed\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_custom_menu menu=\"About Us\" el_class=\"\" el_style=\"\"][/bt_custom_menu][/bt_column][bt_column width=\"2/3\"][bt_header superheadline=\"Remarkable in it\'s way\" headline=\"Hotel California\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Nulla quis vestibulum risus. Sed eros augue, laoreet ac risus finibus, semper porta eros. Donec eleifend blandit luctus. Curabitur at massa dignissim, semper mauris a, sollicitudin ipsum. \" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_text]\r\n\r\nMaecenas enim arcu, pharetra pharetra rutrum ac, condimentum vel nulla. Duis risus diam, consectetur sed purus in, ullamcorper vulputate eros. Aliquam felis neque, posuere vel purus eu, dapibus mattis dolor. Nam maximus elit augue, eu ornare tortor feugiat eget.\r\n<blockquote>Nulla dictum euismod purus, quis commodo mauris posuere auctor. Phasellus nec lectus gravida, tempus metus sit amet, mattis leo. Donec mauris orci, consectetur in congue et, dapibus sed nisi. Duis sem lacus, elementum vel luctus quis, scelerisque et nibh.</blockquote>\r\nMauris eget bibendum libero, hendrerit faucibus tellus. Morbi felis dolor, tempus ac posuere id, facilisis non diam. Pellentesque vitae libero lacus. Sed rhoncus eros vel elit lacinia lacinia. Fusce laoreet sit amet urna ut sagittis. Fusce vitae ornare massa. Nam mollis elit quis eleifend dictum.\r\n\r\n[/bt_text][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\"][/bt_column][/bt_row][bt_row][/bt_row][bt_row][/bt_row][bt_row][/bt_row][bt_row][/bt_row][bt_row][/bt_row][bt_row][/bt_row][bt_row][/bt_row][bt_row][/bt_row][bt_row][/bt_row][/bt_section]','About us','\n ','inherit','closed','closed','','33-revision-v1','','','2021-04-09 04:55:47','2021-04-09 04:55:47','',33,'http://mpycdev.theomggroup.com/?p=1201',0,'revision','',0);
INSERT INTO `smrc_posts` VALUES (1202,1,'2021-04-09 04:56:53','2021-04-09 04:56:53','[bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"624\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\"][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"yes\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"2/3\"][bt_header superheadline=\"Remarkable in it\'s way\" headline=\"Hotel California\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Nulla quis vestibulum risus. Sed eros augue, laoreet ac risus finibus, semper porta eros. Donec eleifend blandit luctus. Curabitur at massa dignissim, semper mauris a, sollicitudin ipsum. \" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_text]\r\n\r\nMaecenas enim arcu, pharetra pharetra rutrum ac, condimentum vel nulla. Duis risus diam, consectetur sed purus in, ullamcorper vulputate eros. Aliquam felis neque, posuere vel purus eu, dapibus mattis dolor. Nam maximus elit augue, eu ornare tortor feugiat eget.\r\n<blockquote>Nulla dictum euismod purus, quis commodo mauris posuere auctor. Phasellus nec lectus gravida, tempus metus sit amet, mattis leo. Donec mauris orci, consectetur in congue et, dapibus sed nisi. Duis sem lacus, elementum vel luctus quis, scelerisque et nibh.</blockquote>\r\nMauris eget bibendum libero, hendrerit faucibus tellus. Morbi felis dolor, tempus ac posuere id, facilisis non diam. Pellentesque vitae libero lacus. Sed rhoncus eros vel elit lacinia lacinia. Fusce laoreet sit amet urna ut sagittis. Fusce vitae ornare massa. Nam mollis elit quis eleifend dictum.\r\n\r\n[/bt_text][/bt_column][bt_column width=\"1/3\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_custom_menu menu=\"About Us\" el_class=\"\" el_style=\"\"][/bt_custom_menu][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\"][/bt_column][/bt_row][bt_row][/bt_row][bt_row][/bt_row][bt_row][/bt_row][bt_row][/bt_row][bt_row][/bt_row][bt_row][/bt_row][bt_row][/bt_row][bt_row][/bt_row][bt_row][/bt_row][/bt_section]','About us','\n ','inherit','closed','closed','','33-revision-v1','','','2021-04-09 04:56:53','2021-04-09 04:56:53','',33,'http://mpycdev.theomggroup.com/?p=1202',0,'revision','',0);
INSERT INTO `smrc_posts` VALUES (1203,1,'2021-04-09 04:57:56','2021-04-09 04:57:56','[bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"624\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\"][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"yes\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"2/3\"][bt_header superheadline=\"Remarkable in it\'s way\" headline=\"Hotel California\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Nulla quis vestibulum risus. Sed eros augue, laoreet ac risus finibus, semper porta eros. Donec eleifend blandit luctus. Curabitur at massa dignissim, semper mauris a, sollicitudin ipsum. \" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_text]\r\n\r\nMaecenas enim arcu, pharetra pharetra rutrum ac, condimentum vel nulla. Duis risus diam, consectetur sed purus in, ullamcorper vulputate eros. Aliquam felis neque, posuere vel purus eu, dapibus mattis dolor. Nam maximus elit augue, eu ornare tortor feugiat eget.\r\n<blockquote>Nulla dictum euismod purus, quis commodo mauris posuere auctor. Phasellus nec lectus gravida, tempus metus sit amet, mattis leo. Donec mauris orci, consectetur in congue et, dapibus sed nisi. Duis sem lacus, elementum vel luctus quis, scelerisque et nibh.</blockquote>\r\nMauris eget bibendum libero, hendrerit faucibus tellus. Morbi felis dolor, tempus ac posuere id, facilisis non diam. Pellentesque vitae libero lacus. Sed rhoncus eros vel elit lacinia lacinia. Fusce laoreet sit amet urna ut sagittis. Fusce vitae ornare massa. Nam mollis elit quis eleifend dictum.\r\n\r\n[/bt_text][/bt_column][bt_column width=\"1/3\" align=\"right\" vertical_align=\"inherit\" border=\"btLeftBorder\" cell_padding=\"default\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_custom_menu menu=\"About Us\" el_class=\"\" el_style=\"\"][/bt_custom_menu][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\"][/bt_column][/bt_row][bt_row][/bt_row][bt_row][/bt_row][bt_row][/bt_row][bt_row][/bt_row][bt_row][/bt_row][bt_row][/bt_row][bt_row][/bt_row][bt_row][/bt_row][bt_row][/bt_row][/bt_section]','About us','\n ','inherit','closed','closed','','33-revision-v1','','','2021-04-09 04:57:56','2021-04-09 04:57:56','',33,'http://mpycdev.theomggroup.com/?p=1203',0,'revision','',0);
INSERT INTO `smrc_posts` VALUES (1204,1,'2021-04-09 04:58:53','2021-04-09 04:58:53','[bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"624\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\"][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"yes\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"2/3\"][bt_header superheadline=\"MPYC\" headline=\"About Us\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Nulla quis vestibulum risus. Sed eros augue, laoreet ac risus finibus, semper porta eros. Donec eleifend blandit luctus. Curabitur at massa dignissim, semper mauris a, sollicitudin ipsum. \" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_text]\r\n\r\nMaecenas enim arcu, pharetra pharetra rutrum ac, condimentum vel nulla. Duis risus diam, consectetur sed purus in, ullamcorper vulputate eros. Aliquam felis neque, posuere vel purus eu, dapibus mattis dolor. Nam maximus elit augue, eu ornare tortor feugiat eget.\r\n<blockquote>Nulla dictum euismod purus, quis commodo mauris posuere auctor. Phasellus nec lectus gravida, tempus metus sit amet, mattis leo. Donec mauris orci, consectetur in congue et, dapibus sed nisi. Duis sem lacus, elementum vel luctus quis, scelerisque et nibh.</blockquote>\r\nMauris eget bibendum libero, hendrerit faucibus tellus. Morbi felis dolor, tempus ac posuere id, facilisis non diam. Pellentesque vitae libero lacus. Sed rhoncus eros vel elit lacinia lacinia. Fusce laoreet sit amet urna ut sagittis. Fusce vitae ornare massa. Nam mollis elit quis eleifend dictum.\r\n\r\n[/bt_text][/bt_column][bt_column width=\"1/3\" align=\"right\" vertical_align=\"inherit\" border=\"btLeftBorder\" cell_padding=\"default\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_custom_menu menu=\"About Us\" el_class=\"\" el_style=\"\"][/bt_custom_menu][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\"][/bt_column][/bt_row][bt_row][/bt_row][bt_row][/bt_row][bt_row][/bt_row][bt_row][/bt_row][bt_row][/bt_row][bt_row][/bt_row][bt_row][/bt_row][bt_row][/bt_row][bt_row][/bt_row][/bt_section]','About us','\n ','inherit','closed','closed','','33-revision-v1','','','2021-04-09 04:58:53','2021-04-09 04:58:53','',33,'http://mpycdev.theomggroup.com/?p=1204',0,'revision','',0);
INSERT INTO `smrc_posts` VALUES (1205,1,'2021-04-09 04:59:08','2021-04-09 04:59:08','[bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"624\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\"][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"yes\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"2/3\"][bt_header superheadline=\"MPYC\" headline=\"About Us\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Nulla quis vestibulum risus. Sed eros augue, laoreet ac risus finibus, semper porta eros. Donec eleifend blandit luctus. Curabitur at massa dignissim, semper mauris a, sollicitudin ipsum. \" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_text]\r\n\r\nMaecenas enim arcu, pharetra pharetra rutrum ac, condimentum vel nulla. Duis risus diam, consectetur sed purus in, ullamcorper vulputate eros. Aliquam felis neque, posuere vel purus eu, dapibus mattis dolor. Nam maximus elit augue, eu ornare tortor feugiat eget.\r\n<blockquote>Nulla dictum euismod purus, quis commodo mauris posuere auctor. Phasellus nec lectus gravida, tempus metus sit amet, mattis leo. Donec mauris orci, consectetur in congue et, dapibus sed nisi. Duis sem lacus, elementum vel luctus quis, scelerisque et nibh.</blockquote>\r\nMauris eget bibendum libero, hendrerit faucibus tellus. Morbi felis dolor, tempus ac posuere id, facilisis non diam. Pellentesque vitae libero lacus. Sed rhoncus eros vel elit lacinia lacinia. Fusce laoreet sit amet urna ut sagittis. Fusce vitae ornare massa. Nam mollis elit quis eleifend dictum.\r\n\r\n[/bt_text][/bt_column][bt_column width=\"1/3\" align=\"right\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btDoublePadding\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_custom_menu menu=\"About Us\" el_class=\"\" el_style=\"\"][/bt_custom_menu][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\"][/bt_column][/bt_row][bt_row][/bt_row][bt_row][/bt_row][bt_row][/bt_row][bt_row][/bt_row][bt_row][/bt_row][bt_row][/bt_row][bt_row][/bt_row][bt_row][/bt_row][bt_row][/bt_row][/bt_section]','About us','\n ','inherit','closed','closed','','33-revision-v1','','','2021-04-09 04:59:08','2021-04-09 04:59:08','',33,'http://mpycdev.theomggroup.com/?p=1205',0,'revision','',0);
INSERT INTO `smrc_posts` VALUES (1207,1,'2021-04-09 05:05:27','2021-04-09 05:05:27','[bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"1206\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\"][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"yes\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"2/3\"][bt_header superheadline=\"MPYC\" headline=\"About Us\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Nulla quis vestibulum risus. Sed eros augue, laoreet ac risus finibus, semper porta eros. Donec eleifend blandit luctus. Curabitur at massa dignissim, semper mauris a, sollicitudin ipsum. \" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_text]\r\n\r\nMaecenas enim arcu, pharetra pharetra rutrum ac, condimentum vel nulla. Duis risus diam, consectetur sed purus in, ullamcorper vulputate eros. Aliquam felis neque, posuere vel purus eu, dapibus mattis dolor. Nam maximus elit augue, eu ornare tortor feugiat eget.\r\n<blockquote>Nulla dictum euismod purus, quis commodo mauris posuere auctor. Phasellus nec lectus gravida, tempus metus sit amet, mattis leo. Donec mauris orci, consectetur in congue et, dapibus sed nisi. Duis sem lacus, elementum vel luctus quis, scelerisque et nibh.</blockquote>\r\nMauris eget bibendum libero, hendrerit faucibus tellus. Morbi felis dolor, tempus ac posuere id, facilisis non diam. Pellentesque vitae libero lacus. Sed rhoncus eros vel elit lacinia lacinia. Fusce laoreet sit amet urna ut sagittis. Fusce vitae ornare massa. Nam mollis elit quis eleifend dictum.\r\n\r\n[/bt_text][/bt_column][bt_column width=\"1/3\" align=\"right\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btDoublePadding\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_custom_menu menu=\"About Us\" el_class=\"\" el_style=\"\"][/bt_custom_menu][/bt_column][/bt_row][bt_row][/bt_row][/bt_section]','About us','\n ','inherit','closed','closed','','33-revision-v1','','','2021-04-09 05:05:27','2021-04-09 05:05:27','',33,'http://mpycdev.theomggroup.com/?p=1207',0,'revision','',0);
INSERT INTO `smrc_posts` VALUES (1209,1,'2021-04-09 05:09:21','2021-04-09 05:09:21','[bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"1208\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\"][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"yes\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"2/3\"][bt_header superheadline=\"MPYC\" headline=\"About Us\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Nulla quis vestibulum risus. Sed eros augue, laoreet ac risus finibus, semper porta eros. Donec eleifend blandit luctus. Curabitur at massa dignissim, semper mauris a, sollicitudin ipsum. \" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_text]\r\n\r\nMaecenas enim arcu, pharetra pharetra rutrum ac, condimentum vel nulla. Duis risus diam, consectetur sed purus in, ullamcorper vulputate eros. Aliquam felis neque, posuere vel purus eu, dapibus mattis dolor. Nam maximus elit augue, eu ornare tortor feugiat eget.\r\n<blockquote>Nulla dictum euismod purus, quis commodo mauris posuere auctor. Phasellus nec lectus gravida, tempus metus sit amet, mattis leo. Donec mauris orci, consectetur in congue et, dapibus sed nisi. Duis sem lacus, elementum vel luctus quis, scelerisque et nibh.</blockquote>\r\nMauris eget bibendum libero, hendrerit faucibus tellus. Morbi felis dolor, tempus ac posuere id, facilisis non diam. Pellentesque vitae libero lacus. Sed rhoncus eros vel elit lacinia lacinia. Fusce laoreet sit amet urna ut sagittis. Fusce vitae ornare massa. Nam mollis elit quis eleifend dictum.\r\n\r\n[/bt_text][/bt_column][bt_column width=\"1/3\" align=\"right\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btDoublePadding\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_custom_menu menu=\"About Us\" el_class=\"\" el_style=\"\"][/bt_custom_menu][/bt_column][/bt_row][bt_row][/bt_row][/bt_section]','About us','\n ','inherit','closed','closed','','33-revision-v1','','','2021-04-09 05:09:21','2021-04-09 05:09:21','',33,'http://mpycdev.theomggroup.com/?p=1209',0,'revision','',0);
INSERT INTO `smrc_posts` VALUES (1210,1,'2021-04-09 05:13:26','2021-04-09 05:13:26','','smallboats','','inherit','','closed','','smallboats','','','2021-04-09 05:13:26','2021-04-09 05:13:26','',33,'http://mpycdev.theomggroup.com/wp-content/uploads/2021/04/smallboats.jpg',0,'attachment','image/jpeg',0);
INSERT INTO `smrc_posts` VALUES (1211,1,'2021-04-09 05:13:41','2021-04-09 05:13:41','[bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"1210\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\"][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"yes\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"2/3\"][bt_header superheadline=\"MPYC\" headline=\"About Us\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Nulla quis vestibulum risus. Sed eros augue, laoreet ac risus finibus, semper porta eros. Donec eleifend blandit luctus. Curabitur at massa dignissim, semper mauris a, sollicitudin ipsum. \" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_text]\r\n\r\nMaecenas enim arcu, pharetra pharetra rutrum ac, condimentum vel nulla. Duis risus diam, consectetur sed purus in, ullamcorper vulputate eros. Aliquam felis neque, posuere vel purus eu, dapibus mattis dolor. Nam maximus elit augue, eu ornare tortor feugiat eget.\r\n<blockquote>Nulla dictum euismod purus, quis commodo mauris posuere auctor. Phasellus nec lectus gravida, tempus metus sit amet, mattis leo. Donec mauris orci, consectetur in congue et, dapibus sed nisi. Duis sem lacus, elementum vel luctus quis, scelerisque et nibh.</blockquote>\r\nMauris eget bibendum libero, hendrerit faucibus tellus. Morbi felis dolor, tempus ac posuere id, facilisis non diam. Pellentesque vitae libero lacus. Sed rhoncus eros vel elit lacinia lacinia. Fusce laoreet sit amet urna ut sagittis. Fusce vitae ornare massa. Nam mollis elit quis eleifend dictum.\r\n\r\n[/bt_text][/bt_column][bt_column width=\"1/3\" align=\"right\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btDoublePadding\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_custom_menu menu=\"About Us\" el_class=\"\" el_style=\"\"][/bt_custom_menu][/bt_column][/bt_row][bt_row][/bt_row][/bt_section]','About us','\n ','inherit','closed','closed','','33-revision-v1','','','2021-04-09 05:13:41','2021-04-09 05:13:41','',33,'http://mpycdev.theomggroup.com/?p=1211',0,'revision','',0);
INSERT INTO `smrc_posts` VALUES (1213,1,'2021-04-09 08:06:15','2021-04-09 05:21:26',' ','','','publish','closed','closed','','1213','','','2021-04-09 08:06:15','2021-04-09 08:06:15','',0,'http://mpycdev.theomggroup.com/1213/',1,'nav_menu_item','',0);
INSERT INTO `smrc_posts` VALUES (1214,1,'2021-04-09 05:22:37','2021-04-09 05:22:37','[bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"1210\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\"][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"yes\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"2/3\"][bt_header superheadline=\"MPYC\" headline=\"About Us\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Nulla quis vestibulum risus. Sed eros augue, laoreet ac risus finibus, semper porta eros. Donec eleifend blandit luctus. Curabitur at massa dignissim, semper mauris a, sollicitudin ipsum. \" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_text]\r\n\r\nMaecenas enim arcu, pharetra pharetra rutrum ac, condimentum vel nulla. Duis risus diam, consectetur sed purus in, ullamcorper vulputate eros. Aliquam felis neque, posuere vel purus eu, dapibus mattis dolor. Nam maximus elit augue, eu ornare tortor feugiat eget.\r\n<blockquote>Nulla dictum euismod purus, quis commodo mauris posuere auctor. Phasellus nec lectus gravida, tempus metus sit amet, mattis leo. Donec mauris orci, consectetur in congue et, dapibus sed nisi. Duis sem lacus, elementum vel luctus quis, scelerisque et nibh.</blockquote>\r\nMauris eget bibendum libero, hendrerit faucibus tellus. Morbi felis dolor, tempus ac posuere id, facilisis non diam. Pellentesque vitae libero lacus. Sed rhoncus eros vel elit lacinia lacinia. Fusce laoreet sit amet urna ut sagittis. Fusce vitae ornare massa. Nam mollis elit quis eleifend dictum.\r\n\r\n[/bt_text][/bt_column][bt_column width=\"1/3\" align=\"right\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btDoublePadding\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_custom_menu menu=\"About\" el_class=\"\" el_style=\"\"][/bt_custom_menu][/bt_column][/bt_row][bt_row][/bt_row][/bt_section]','About us','\n ','inherit','closed','closed','','33-revision-v1','','','2021-04-09 05:22:37','2021-04-09 05:22:37','',33,'http://mpycdev.theomggroup.com/?p=1214',0,'revision','',0);
INSERT INTO `smrc_posts` VALUES (1216,1,'2021-04-09 05:35:39','2021-04-09 05:35:39','','Item One','','publish','closed','closed','','item-one','','','2021-04-09 05:35:39','2021-04-09 05:35:39','',0,'http://mpycdev.theomggroup.com/item-one/',1,'nav_menu_item','',0);
INSERT INTO `smrc_posts` VALUES (1217,1,'2021-04-09 05:35:39','2021-04-09 05:35:39','','Item Two','','publish','closed','closed','','item-two','','','2021-04-09 05:35:39','2021-04-09 05:35:39','',0,'http://mpycdev.theomggroup.com/item-two/',2,'nav_menu_item','',0);
INSERT INTO `smrc_posts` VALUES (1218,1,'2021-04-09 05:35:39','2021-04-09 05:35:39','','Item Three','','publish','closed','closed','','item-three','','','2021-04-09 05:35:39','2021-04-09 05:35:39','',0,'http://mpycdev.theomggroup.com/item-three/',3,'nav_menu_item','',0);
INSERT INTO `smrc_posts` VALUES (1219,1,'2021-04-09 05:35:39','2021-04-09 05:35:39','','Item Four','','publish','closed','closed','','item-four','','','2021-04-09 05:35:39','2021-04-09 05:35:39','',0,'http://mpycdev.theomggroup.com/item-four/',4,'nav_menu_item','',0);
INSERT INTO `smrc_posts` VALUES (1220,1,'2021-04-09 05:45:37','2021-04-09 05:45:37','[bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"1210\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\"][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"2/3\"][bt_header superheadline=\"MPYC\" headline=\"Racing\" headline_size=\"extralarge\" dash=\"bottom\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\" subheadline=\"Nulla quis vestibulum risus. Sed eros augue, laoreet ac risus finibus, semper porta eros. Donec eleifend blandit luctus. Curabitur at massa dignissim, semper mauris a, sollicitudin ipsum. \" el_class=\"\" el_style=\"\"][/bt_header][bt_text]\r\n\r\nMaecenas enim arcu, pharetra pharetra rutrum ac, condimentum vel nulla. Duis risus diam, consectetur sed purus in, ullamcorper vulputate eros. Aliquam felis neque, posuere vel purus eu, dapibus mattis dolor. Nam maximus elit augue, eu ornare tortor feugiat eget.\r\n<blockquote>Nulla dictum euismod purus, quis commodo mauris posuere auctor. Phasellus nec lectus gravida, tempus metus sit amet, mattis leo. Donec mauris orci, consectetur in congue et, dapibus sed nisi. Duis sem lacus, elementum vel luctus quis, scelerisque et nibh.</blockquote>\r\nMauris eget bibendum libero, hendrerit faucibus tellus. Morbi felis dolor, tempus ac posuere id, facilisis non diam. Pellentesque vitae libero lacus. Sed rhoncus eros vel elit lacinia lacinia. Fusce laoreet sit amet urna ut sagittis. Fusce vitae ornare massa. Nam mollis elit quis eleifend dictum.\r\n\r\n[/bt_text][/bt_column][bt_column width=\"1/3\" align=\"right\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_custom_menu menu=\"About Us\" el_class=\"\" el_style=\"\"][/bt_custom_menu][/bt_column][/bt_row][bt_row][/bt_row][/bt_section]','Racing','','publish','closed','closed','','racing','','','2021-04-09 05:54:34','2021-04-09 05:54:34','',0,'http://mpycdev.theomggroup.com/?page_id=1220',0,'page','',0);
INSERT INTO `smrc_posts` VALUES (1221,1,'2021-04-09 05:37:36','2021-04-09 05:37:36','','Racing','','inherit','closed','closed','','1220-revision-v1','','','2021-04-09 05:37:36','2021-04-09 05:37:36','',1220,'http://mpycdev.theomggroup.com/?p=1221',0,'revision','',0);
INSERT INTO `smrc_posts` VALUES (1223,1,'2021-04-09 05:45:37','2021-04-09 05:45:37','[bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"1210\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"2/3\"][bt_header superheadline=\"MPYC\" headline=\"Racing\" headline_size=\"small\" dash=\"no\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\" subheadline=\"Nulla quis vestibulum risus. Sed eros augue, laoreet ac risus finibus, semper porta eros. Donec eleifend blandit luctus. Curabitur at massa dignissim, semper mauris a, sollicitudin ipsum. \" el_class=\"\" el_style=\"\"][/bt_header][bt_text]\r\n\r\nMaecenas enim arcu, pharetra pharetra rutrum ac, condimentum vel nulla. Duis risus diam, consectetur sed purus in, ullamcorper vulputate eros. Aliquam felis neque, posuere vel purus eu, dapibus mattis dolor. Nam maximus elit augue, eu ornare tortor feugiat eget.\r\n<blockquote>Nulla dictum euismod purus, quis commodo mauris posuere auctor. Phasellus nec lectus gravida, tempus metus sit amet, mattis leo. Donec mauris orci, consectetur in congue et, dapibus sed nisi. Duis sem lacus, elementum vel luctus quis, scelerisque et nibh.</blockquote>\r\nMauris eget bibendum libero, hendrerit faucibus tellus. Morbi felis dolor, tempus ac posuere id, facilisis non diam. Pellentesque vitae libero lacus. Sed rhoncus eros vel elit lacinia lacinia. Fusce laoreet sit amet urna ut sagittis. Fusce vitae ornare massa. Nam mollis elit quis eleifend dictum.\r\n\r\n[/bt_text][/bt_column][bt_column width=\"1/3\"][bt_custom_menu menu=\"About Us\" el_class=\"\" el_style=\"\"][/bt_custom_menu][/bt_column][/bt_row][bt_row][/bt_row][/bt_section]','Racing','','inherit','closed','closed','','1220-revision-v1','','','2021-04-09 05:45:37','2021-04-09 05:45:37','',1220,'http://mpycdev.theomggroup.com/?p=1223',0,'revision','',0);
INSERT INTO `smrc_posts` VALUES (1225,1,'2021-04-09 08:06:15','2021-04-09 05:46:42',' ','','','publish','closed','closed','','1225','','','2021-04-09 08:06:15','2021-04-09 08:06:15','',0,'http://mpycdev.theomggroup.com/1225/',5,'nav_menu_item','',0);
INSERT INTO `smrc_posts` VALUES (1226,1,'2021-04-09 05:48:29','2021-04-09 05:48:29','[bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"1210\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\"][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"2/3\"][bt_header superheadline=\"MPYC\" headline=\"Racing\" headline_size=\"small\" dash=\"no\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\" subheadline=\"Nulla quis vestibulum risus. Sed eros augue, laoreet ac risus finibus, semper porta eros. Donec eleifend blandit luctus. Curabitur at massa dignissim, semper mauris a, sollicitudin ipsum. \" el_class=\"\" el_style=\"\"][/bt_header][bt_text]\r\n\r\nMaecenas enim arcu, pharetra pharetra rutrum ac, condimentum vel nulla. Duis risus diam, consectetur sed purus in, ullamcorper vulputate eros. Aliquam felis neque, posuere vel purus eu, dapibus mattis dolor. Nam maximus elit augue, eu ornare tortor feugiat eget.\r\n<blockquote>Nulla dictum euismod purus, quis commodo mauris posuere auctor. Phasellus nec lectus gravida, tempus metus sit amet, mattis leo. Donec mauris orci, consectetur in congue et, dapibus sed nisi. Duis sem lacus, elementum vel luctus quis, scelerisque et nibh.</blockquote>\r\nMauris eget bibendum libero, hendrerit faucibus tellus. Morbi felis dolor, tempus ac posuere id, facilisis non diam. Pellentesque vitae libero lacus. Sed rhoncus eros vel elit lacinia lacinia. Fusce laoreet sit amet urna ut sagittis. Fusce vitae ornare massa. Nam mollis elit quis eleifend dictum.\r\n\r\n[/bt_text][/bt_column][bt_column width=\"1/3\"][bt_custom_menu menu=\"About Us\" el_class=\"\" el_style=\"\"][/bt_custom_menu][/bt_column][/bt_row][bt_row][/bt_row][/bt_section]','Racing','','inherit','closed','closed','','1220-revision-v1','','','2021-04-09 05:48:29','2021-04-09 05:48:29','',1220,'http://mpycdev.theomggroup.com/?p=1226',0,'revision','',0);
INSERT INTO `smrc_posts` VALUES (1227,1,'2021-04-09 05:50:44','2021-04-09 05:50:44','[bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"1210\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\"][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"not-spaced\" bottom_spaced=\"not-spaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"2/3\"][bt_header superheadline=\"MPYC\" headline=\"Racing\" headline_size=\"small\" dash=\"no\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\" subheadline=\"Nulla quis vestibulum risus. Sed eros augue, laoreet ac risus finibus, semper porta eros. Donec eleifend blandit luctus. Curabitur at massa dignissim, semper mauris a, sollicitudin ipsum. \" el_class=\"\" el_style=\"\"][/bt_header][bt_text]\r\n\r\nMaecenas enim arcu, pharetra pharetra rutrum ac, condimentum vel nulla. Duis risus diam, consectetur sed purus in, ullamcorper vulputate eros. Aliquam felis neque, posuere vel purus eu, dapibus mattis dolor. Nam maximus elit augue, eu ornare tortor feugiat eget.\r\n<blockquote>Nulla dictum euismod purus, quis commodo mauris posuere auctor. Phasellus nec lectus gravida, tempus metus sit amet, mattis leo. Donec mauris orci, consectetur in congue et, dapibus sed nisi. Duis sem lacus, elementum vel luctus quis, scelerisque et nibh.</blockquote>\r\nMauris eget bibendum libero, hendrerit faucibus tellus. Morbi felis dolor, tempus ac posuere id, facilisis non diam. Pellentesque vitae libero lacus. Sed rhoncus eros vel elit lacinia lacinia. Fusce laoreet sit amet urna ut sagittis. Fusce vitae ornare massa. Nam mollis elit quis eleifend dictum.\r\n\r\n[/bt_text][/bt_column][bt_column width=\"1/3\"][bt_custom_menu menu=\"About Us\" el_class=\"\" el_style=\"\"][/bt_custom_menu][/bt_column][/bt_row][bt_row][/bt_row][/bt_section]','Racing','','inherit','closed','closed','','1220-revision-v1','','','2021-04-09 05:50:44','2021-04-09 05:50:44','',1220,'http://mpycdev.theomggroup.com/?p=1227',0,'revision','',0);
INSERT INTO `smrc_posts` VALUES (1228,1,'2021-04-09 05:51:38','2021-04-09 05:51:38','[bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"1210\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\"][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"2/3\"][bt_header superheadline=\"MPYC\" headline=\"Racing\" headline_size=\"small\" dash=\"no\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\" subheadline=\"Nulla quis vestibulum risus. Sed eros augue, laoreet ac risus finibus, semper porta eros. Donec eleifend blandit luctus. Curabitur at massa dignissim, semper mauris a, sollicitudin ipsum. \" el_class=\"\" el_style=\"\"][/bt_header][bt_text]\r\n\r\nMaecenas enim arcu, pharetra pharetra rutrum ac, condimentum vel nulla. Duis risus diam, consectetur sed purus in, ullamcorper vulputate eros. Aliquam felis neque, posuere vel purus eu, dapibus mattis dolor. Nam maximus elit augue, eu ornare tortor feugiat eget.\r\n<blockquote>Nulla dictum euismod purus, quis commodo mauris posuere auctor. Phasellus nec lectus gravida, tempus metus sit amet, mattis leo. Donec mauris orci, consectetur in congue et, dapibus sed nisi. Duis sem lacus, elementum vel luctus quis, scelerisque et nibh.</blockquote>\r\nMauris eget bibendum libero, hendrerit faucibus tellus. Morbi felis dolor, tempus ac posuere id, facilisis non diam. Pellentesque vitae libero lacus. Sed rhoncus eros vel elit lacinia lacinia. Fusce laoreet sit amet urna ut sagittis. Fusce vitae ornare massa. Nam mollis elit quis eleifend dictum.\r\n\r\n[/bt_text][/bt_column][bt_column width=\"1/3\"][bt_custom_menu menu=\"About Us\" el_class=\"\" el_style=\"\"][/bt_custom_menu][/bt_column][/bt_row][bt_row][/bt_row][/bt_section]','Racing','','inherit','closed','closed','','1220-revision-v1','','','2021-04-09 05:51:38','2021-04-09 05:51:38','',1220,'http://mpycdev.theomggroup.com/?p=1228',0,'revision','',0);
INSERT INTO `smrc_posts` VALUES (1229,1,'2021-04-09 05:52:05','2021-04-09 05:52:05','[bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"1210\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\"][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"2/3\"][bt_header superheadline=\"MPYC\" headline=\"Racing\" headline_size=\"extralarge\" dash=\"no\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashDefaultColor\" subheadline=\"Nulla quis vestibulum risus. Sed eros augue, laoreet ac risus finibus, semper porta eros. Donec eleifend blandit luctus. Curabitur at massa dignissim, semper mauris a, sollicitudin ipsum. \" el_class=\"\" el_style=\"\"][/bt_header][bt_text]\r\n\r\nMaecenas enim arcu, pharetra pharetra rutrum ac, condimentum vel nulla. Duis risus diam, consectetur sed purus in, ullamcorper vulputate eros. Aliquam felis neque, posuere vel purus eu, dapibus mattis dolor. Nam maximus elit augue, eu ornare tortor feugiat eget.\r\n<blockquote>Nulla dictum euismod purus, quis commodo mauris posuere auctor. Phasellus nec lectus gravida, tempus metus sit amet, mattis leo. Donec mauris orci, consectetur in congue et, dapibus sed nisi. Duis sem lacus, elementum vel luctus quis, scelerisque et nibh.</blockquote>\r\nMauris eget bibendum libero, hendrerit faucibus tellus. Morbi felis dolor, tempus ac posuere id, facilisis non diam. Pellentesque vitae libero lacus. Sed rhoncus eros vel elit lacinia lacinia. Fusce laoreet sit amet urna ut sagittis. Fusce vitae ornare massa. Nam mollis elit quis eleifend dictum.\r\n\r\n[/bt_text][/bt_column][bt_column width=\"1/3\"][bt_custom_menu menu=\"About Us\" el_class=\"\" el_style=\"\"][/bt_custom_menu][/bt_column][/bt_row][bt_row][/bt_row][/bt_section]','Racing','','inherit','closed','closed','','1220-revision-v1','','','2021-04-09 05:52:05','2021-04-09 05:52:05','',1220,'http://mpycdev.theomggroup.com/?p=1229',0,'revision','',0);
INSERT INTO `smrc_posts` VALUES (1230,1,'2021-04-09 05:52:47','2021-04-09 05:52:47','[bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"1210\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\"][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"2/3\"][bt_header superheadline=\"MPYC\" headline=\"Racing\" headline_size=\"extralarge\" dash=\"no\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\" subheadline=\"Nulla quis vestibulum risus. Sed eros augue, laoreet ac risus finibus, semper porta eros. Donec eleifend blandit luctus. Curabitur at massa dignissim, semper mauris a, sollicitudin ipsum. \" el_class=\"\" el_style=\"\"][/bt_header][bt_text]\r\n\r\nMaecenas enim arcu, pharetra pharetra rutrum ac, condimentum vel nulla. Duis risus diam, consectetur sed purus in, ullamcorper vulputate eros. Aliquam felis neque, posuere vel purus eu, dapibus mattis dolor. Nam maximus elit augue, eu ornare tortor feugiat eget.\r\n<blockquote>Nulla dictum euismod purus, quis commodo mauris posuere auctor. Phasellus nec lectus gravida, tempus metus sit amet, mattis leo. Donec mauris orci, consectetur in congue et, dapibus sed nisi. Duis sem lacus, elementum vel luctus quis, scelerisque et nibh.</blockquote>\r\nMauris eget bibendum libero, hendrerit faucibus tellus. Morbi felis dolor, tempus ac posuere id, facilisis non diam. Pellentesque vitae libero lacus. Sed rhoncus eros vel elit lacinia lacinia. Fusce laoreet sit amet urna ut sagittis. Fusce vitae ornare massa. Nam mollis elit quis eleifend dictum.\r\n\r\n[/bt_text][/bt_column][bt_column width=\"1/3\"][bt_custom_menu menu=\"About Us\" el_class=\"\" el_style=\"\"][/bt_custom_menu][/bt_column][/bt_row][bt_row][/bt_row][/bt_section]','Racing','','inherit','closed','closed','','1220-revision-v1','','','2021-04-09 05:52:47','2021-04-09 05:52:47','',1220,'http://mpycdev.theomggroup.com/?p=1230',0,'revision','',0);
INSERT INTO `smrc_posts` VALUES (1231,1,'2021-04-09 05:53:56','2021-04-09 05:53:56','[bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"1210\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\"][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"2/3\"][bt_header superheadline=\"MPYC\" headline=\"Racing\" headline_size=\"extralarge\" dash=\"bottom\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\" subheadline=\"Nulla quis vestibulum risus. Sed eros augue, laoreet ac risus finibus, semper porta eros. Donec eleifend blandit luctus. Curabitur at massa dignissim, semper mauris a, sollicitudin ipsum. \" el_class=\"\" el_style=\"\"][/bt_header][bt_text]\r\n\r\nMaecenas enim arcu, pharetra pharetra rutrum ac, condimentum vel nulla. Duis risus diam, consectetur sed purus in, ullamcorper vulputate eros. Aliquam felis neque, posuere vel purus eu, dapibus mattis dolor. Nam maximus elit augue, eu ornare tortor feugiat eget.\r\n<blockquote>Nulla dictum euismod purus, quis commodo mauris posuere auctor. Phasellus nec lectus gravida, tempus metus sit amet, mattis leo. Donec mauris orci, consectetur in congue et, dapibus sed nisi. Duis sem lacus, elementum vel luctus quis, scelerisque et nibh.</blockquote>\r\nMauris eget bibendum libero, hendrerit faucibus tellus. Morbi felis dolor, tempus ac posuere id, facilisis non diam. Pellentesque vitae libero lacus. Sed rhoncus eros vel elit lacinia lacinia. Fusce laoreet sit amet urna ut sagittis. Fusce vitae ornare massa. Nam mollis elit quis eleifend dictum.\r\n\r\n[/bt_text][/bt_column][bt_column width=\"1/3\"][bt_custom_menu menu=\"About Us\" el_class=\"\" el_style=\"\"][/bt_custom_menu][/bt_column][/bt_row][bt_row][/bt_row][/bt_section]','Racing','','inherit','closed','closed','','1220-revision-v1','','','2021-04-09 05:53:56','2021-04-09 05:53:56','',1220,'http://mpycdev.theomggroup.com/?p=1231',0,'revision','',0);
INSERT INTO `smrc_posts` VALUES (1232,1,'2021-04-09 05:54:34','2021-04-09 05:54:34','[bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"1210\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\"][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"2/3\"][bt_header superheadline=\"MPYC\" headline=\"Racing\" headline_size=\"extralarge\" dash=\"bottom\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\" subheadline=\"Nulla quis vestibulum risus. Sed eros augue, laoreet ac risus finibus, semper porta eros. Donec eleifend blandit luctus. Curabitur at massa dignissim, semper mauris a, sollicitudin ipsum. \" el_class=\"\" el_style=\"\"][/bt_header][bt_text]\r\n\r\nMaecenas enim arcu, pharetra pharetra rutrum ac, condimentum vel nulla. Duis risus diam, consectetur sed purus in, ullamcorper vulputate eros. Aliquam felis neque, posuere vel purus eu, dapibus mattis dolor. Nam maximus elit augue, eu ornare tortor feugiat eget.\r\n<blockquote>Nulla dictum euismod purus, quis commodo mauris posuere auctor. Phasellus nec lectus gravida, tempus metus sit amet, mattis leo. Donec mauris orci, consectetur in congue et, dapibus sed nisi. Duis sem lacus, elementum vel luctus quis, scelerisque et nibh.</blockquote>\r\nMauris eget bibendum libero, hendrerit faucibus tellus. Morbi felis dolor, tempus ac posuere id, facilisis non diam. Pellentesque vitae libero lacus. Sed rhoncus eros vel elit lacinia lacinia. Fusce laoreet sit amet urna ut sagittis. Fusce vitae ornare massa. Nam mollis elit quis eleifend dictum.\r\n\r\n[/bt_text][/bt_column][bt_column width=\"1/3\" align=\"right\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_custom_menu menu=\"About Us\" el_class=\"\" el_style=\"\"][/bt_custom_menu][/bt_column][/bt_row][bt_row][/bt_row][/bt_section]','Racing','','inherit','closed','closed','','1220-revision-v1','','','2021-04-09 05:54:34','2021-04-09 05:54:34','',1220,'http://mpycdev.theomggroup.com/?p=1232',0,'revision','',0);
INSERT INTO `smrc_posts` VALUES (1233,1,'2021-04-09 08:02:37','2021-04-09 08:02:37','[bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSemiSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"yes\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"2/3\" align=\"left\" vertical_align=\"btMiddleVertical\" border=\"no_border\" cell_padding=\"default\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"Just say hello\" headline=\"Contact us anytime\" headline_size=\"extralarge\" dash=\"bottom\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\" subheadline=\"we know you\'re always busy, but we are always there for you should you have any questions for us. Whether it\'s vacation related or you just want to send us a comment.\" el_class=\"\" el_style=\"\"][/bt_header][/bt_column][bt_column width=\"1/3\" align=\"left\" vertical_align=\"btMiddleVertical\" border=\"no_border\" cell_padding=\"default\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"yes\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/3\" align=\"left\" vertical_align=\"btMiddleVertical\" border=\"no_border\" cell_padding=\"btDoublePadding\" animation=\"no_animation\" text_indent=\"btTextIndent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"#e5e5e5\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_header superheadline=\"Contact\" headline=\"Hotel California\" headline_size=\"medium\" dash=\"top\" subheadline=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer mollis viverra diam ac ornare. Donec rhoncus nisi in felis congue, at pulvinar nibh dapibus.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSmallSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][bt_column width=\"2/3\" align=\"left\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btDoublePadding\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"#f1f1f1\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSemiSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_text]\r\n\r\n[contact-form-7 id=\"32\" title=\"Contact form\"]\r\n\r\n[/bt_text][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSemiSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\"][bt_hr top_spaced=\"topSmallSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"2/3\"][bt_gmaps latitude=\"36.602383\" longitude=\"-121.879245 \" zoom=\"11\" icon=\"342\" height=\"400px\" primary_color=\"#dd3333\" secondary_color=\"#c1c1c1\" water_color=\"#1e73be\" custom_style=\"WwogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJhZG1pbmlzdHJhdGl2ZSIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImxhYmVscy50ZXh0LmZpbGwiLAogICAgICAgICJzdHlsZXJzIjogWwogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAiY29sb3IiOiAiIzQ0NDQ0NCIKICAgICAgICAgICAgfQogICAgICAgIF0KICAgIH0sCiAgICB7CiAgICAgICAgImZlYXR1cmVUeXBlIjogImxhbmRzY2FwZSIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJjb2xvciI6ICIjZjJmMmYyIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAicG9pIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiYWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInZpc2liaWxpdHkiOiAib2ZmIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAicm9hZCIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJzYXR1cmF0aW9uIjogLTEwMAogICAgICAgICAgICB9LAogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAibGlnaHRuZXNzIjogNDUKICAgICAgICAgICAgfQogICAgICAgIF0KICAgIH0sCiAgICB7CiAgICAgICAgImZlYXR1cmVUeXBlIjogInJvYWQuaGlnaHdheSIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogInNpbXBsaWZpZWQiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJyb2FkLmhpZ2h3YXkiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJnZW9tZXRyeSIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogInNpbXBsaWZpZWQiCiAgICAgICAgICAgIH0sCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJjb2xvciI6ICIjZDc3Mjg3IgogICAgICAgICAgICB9LAogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAibGlnaHRuZXNzIjogIjAiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJyb2FkLmhpZ2h3YXkiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJsYWJlbHMudGV4dCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogIm9uIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAicm9hZC5oaWdod2F5IiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAibGFiZWxzLmljb24iLAogICAgICAgICJzdHlsZXJzIjogWwogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAidmlzaWJpbGl0eSI6ICJvbiIKICAgICAgICAgICAgfQogICAgICAgIF0KICAgIH0sCiAgICB7CiAgICAgICAgImZlYXR1cmVUeXBlIjogInJvYWQuYXJ0ZXJpYWwiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJhbGwiLAogICAgICAgICJzdHlsZXJzIjogWwogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAidmlzaWJpbGl0eSI6ICJvbiIKICAgICAgICAgICAgfQogICAgICAgIF0KICAgIH0sCiAgICB7CiAgICAgICAgImZlYXR1cmVUeXBlIjogInJvYWQuYXJ0ZXJpYWwiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJnZW9tZXRyeS5maWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgImNvbG9yIjogIiNkNzcyODciCiAgICAgICAgICAgIH0sCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJsaWdodG5lc3MiOiAiNzUiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJyb2FkLmFydGVyaWFsIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAibGFiZWxzLmljb24iLAogICAgICAgICJzdHlsZXJzIjogWwogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAidmlzaWJpbGl0eSI6ICJvZmYiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJyb2FkLmxvY2FsIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiZ2VvbWV0cnkuZmlsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJsaWdodG5lc3MiOiAiNzUiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJ0cmFuc2l0IiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiYWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInZpc2liaWxpdHkiOiAib2ZmIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAidHJhbnNpdC5saW5lIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiYWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInZpc2liaWxpdHkiOiAib24iCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJ0cmFuc2l0LnN0YXRpb24uYnVzIiwKICAgICAgICAiZWxlbWVudFR5cGUiOiAiYWxsIiwKICAgICAgICAic3R5bGVycyI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInZpc2liaWxpdHkiOiAib24iCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJ0cmFuc2l0LnN0YXRpb24ucmFpbCIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogIm9uIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfSwKICAgIHsKICAgICAgICAiZmVhdHVyZVR5cGUiOiAidHJhbnNpdC5zdGF0aW9uLnJhaWwiLAogICAgICAgICJlbGVtZW50VHlwZSI6ICJsYWJlbHMuaWNvbiIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ3ZWlnaHQiOiAiMC4wMSIKICAgICAgICAgICAgfSwKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgImh1ZSI6ICIjZmYwMDM1IgogICAgICAgICAgICB9LAogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAibGlnaHRuZXNzIjogIjAiCiAgICAgICAgICAgIH0KICAgICAgICBdCiAgICB9LAogICAgewogICAgICAgICJmZWF0dXJlVHlwZSI6ICJ3YXRlciIsCiAgICAgICAgImVsZW1lbnRUeXBlIjogImFsbCIsCiAgICAgICAgInN0eWxlcnMiOiBbCiAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICJ2aXNpYmlsaXR5IjogIm9uIgogICAgICAgICAgICB9LAogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAiY29sb3IiOiAiIzgwZTRkOCIKICAgICAgICAgICAgfSwKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgImxpZ2h0bmVzcyI6ICIyNSIKICAgICAgICAgICAgfSwKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInNhdHVyYXRpb24iOiAiLTIzIgogICAgICAgICAgICB9CiAgICAgICAgXQogICAgfQpd\" el_class=\"\" el_style=\"\" api_key=\"AIzaSyBda9LxQ-Wztqsk6aFI7SkcdiypnKTPfiI\"][/bt_gmaps][/bt_column][bt_column width=\"1/3\" align=\"left\" vertical_align=\"btMiddleVertical\" border=\"no_border\" cell_padding=\"btDoublePadding\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"#e5e5e5\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_service icon=\"s7_e638\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoMediumSize\" url=\"\" headline=\"Address\" dash=\"\" text=\"27th Avenue\r\nNew York, W2 3XE\" el_class=\"\" el_style=\"\" superheadline=\"\"][/bt_service][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSemiSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_service icon=\"s7_e670\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoMediumSize\" url=\"\" headline=\"Phone\" dash=\"\" text=\"+555-40-220-6672\" el_class=\"\" el_style=\"\" superheadline=\"\"][/bt_service][bt_hr top_spaced=\"not-spaced\" bottom_spaced=\"bottomSemiSpaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][bt_service icon=\"s7_e63a\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAccentColor\" icon_size=\"btIcoMediumSize\" url=\"\" headline=\"Email\" dash=\"\" text=\"office@california.hotel\" el_class=\"\" el_style=\"\" superheadline=\"\"][/bt_service][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"321\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"0.3\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_header superheadline=\"\" headline=\"Follow us\" headline_size=\"extralarge\" dash=\"bottom\" subheadline=\"Find out what’s hot and new, and get discounts for being a loyal customer and a Hotel California fan.\" el_class=\"\" el_style=\"\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\"][/bt_header][bt_hr top_spaced=\"topSemiSpaced\" bottom_spaced=\"not-spaced\" transparent_border=\"noBorder\" el_class=\"\" el_style=\"\"][/bt_hr][/bt_column][/bt_row][bt_row][bt_column width=\"1/1\" align=\"center\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"default\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_icons][bt_icon icon=\"fa_f09a\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f099\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][bt_icon icon=\"fa_f0d5\" icon_title=\"\" icon_type=\"btIcoFilledType\" icon_color=\"btIcoAlternateColor\" icon_size=\"btIcoBigSize\" url=\"#\" target=\"no_target\" el_class=\"\" el_style=\"\"][/bt_icon][/bt_icons][/bt_column][/bt_row][/bt_section]','Contact','\n ','inherit','closed','closed','','17-revision-v1','','','2021-04-09 08:02:37','2021-04-09 08:02:37','',17,'http://mpycdev.theomggroup.com/?p=1233',0,'revision','',0);
INSERT INTO `smrc_posts` VALUES (1235,1,'2021-04-09 08:13:03','0000-00-00 00:00:00','','Member Home','','draft','closed','closed','','','','','2021-04-09 08:13:03','2021-04-09 08:13:03','',0,'http://mpycdev.theomggroup.com/?page_id=1235',0,'page','',0);
INSERT INTO `smrc_posts` VALUES (1236,1,'2021-04-09 08:31:05','2021-04-09 08:31:05','[bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"1210\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\"][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"3/4\"][bt_header superheadline=\"MPYC\" headline=\"Activities\" headline_size=\"extralarge\" dash=\"bottom\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\" subheadline=\"Nulla quis vestibulum risus. Sed eros augue, laoreet ac risus finibus, semper porta eros. Donec eleifend blandit luctus. Curabitur at massa dignissim, semper mauris a, sollicitudin ipsum. \" el_class=\"\" el_style=\"\"][/bt_header][bt_text]\r\n\r\nMaecenas enim arcu, pharetra pharetra rutrum ac, condimentum vel nulla. Duis risus diam, consectetur sed purus in, ullamcorper vulputate eros. Aliquam felis neque, posuere vel purus eu, dapibus mattis dolor. Nam maximus elit augue, eu ornare tortor feugiat eget.\r\n<blockquote>Nulla dictum euismod purus, quis commodo mauris posuere auctor. Phasellus nec lectus gravida, tempus metus sit amet, mattis leo. Donec mauris orci, consectetur in congue et, dapibus sed nisi. Duis sem lacus, elementum vel luctus quis, scelerisque et nibh.</blockquote>\r\nMauris eget bibendum libero, hendrerit faucibus tellus. Morbi felis dolor, tempus ac posuere id, facilisis non diam. Pellentesque vitae libero lacus. Sed rhoncus eros vel elit lacinia lacinia. Fusce laoreet sit amet urna ut sagittis. Fusce vitae ornare massa. Nam mollis elit quis eleifend dictum.\r\n\r\n[/bt_text][/bt_column][bt_column width=\"1/4\" align=\"right\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btDoublePadding\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_custom_menu menu=\"About us\" el_class=\"\" el_style=\"\"][/bt_custom_menu][/bt_column][/bt_row][bt_row][/bt_row][/bt_section]','Activities','','publish','closed','closed','','activities-2','','','2021-04-09 08:31:32','2021-04-09 08:31:32','',0,'http://mpycdev.theomggroup.com/?page_id=1236',0,'page','',0);
INSERT INTO `smrc_posts` VALUES (1237,1,'2021-04-09 08:33:07','2021-04-09 08:31:05',' ','','','publish','closed','closed','','1237','','','2021-04-09 08:33:07','2021-04-09 08:33:07','',0,'http://mpycdev.theomggroup.com/1237/',19,'nav_menu_item','',0);
INSERT INTO `smrc_posts` VALUES (1238,1,'2021-04-09 08:31:05','2021-04-09 08:31:05','[bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"1210\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"1/1\"][/bt_column][/bt_row][/bt_section][bt_section layout=\"boxed\" top_spaced=\"topSpaced\" bottom_spaced=\"bottomSpaced\" skin=\"inherit\" full_screen=\"no\" vertical_align=\"inherit\" divider=\"no\" back_image=\"\" back_color=\"\" back_video=\"\" video_settings=\"\" back_video_mp4=\"\" back_video_ogg=\"\" back_video_webm=\"\" parallax=\"\" parallax_offset=\"\" animation=\"\" animation_back=\"\" animation_impress=\"\" el_id=\"\" el_class=\"\" el_style=\"\"][bt_row][bt_column width=\"3/4\"][bt_header superheadline=\"MPYC\" headline=\"Activities\" headline_size=\"extralarge\" dash=\"bottom\" headline_color=\"btHeadlineDefaultColor\" bottom_dash_color=\"btBottomDashAccentColor\" subheadline=\"Nulla quis vestibulum risus. Sed eros augue, laoreet ac risus finibus, semper porta eros. Donec eleifend blandit luctus. Curabitur at massa dignissim, semper mauris a, sollicitudin ipsum. \" el_class=\"\" el_style=\"\"][/bt_header][bt_text]\r\n\r\nMaecenas enim arcu, pharetra pharetra rutrum ac, condimentum vel nulla. Duis risus diam, consectetur sed purus in, ullamcorper vulputate eros. Aliquam felis neque, posuere vel purus eu, dapibus mattis dolor. Nam maximus elit augue, eu ornare tortor feugiat eget.\r\n<blockquote>Nulla dictum euismod purus, quis commodo mauris posuere auctor. Phasellus nec lectus gravida, tempus metus sit amet, mattis leo. Donec mauris orci, consectetur in congue et, dapibus sed nisi. Duis sem lacus, elementum vel luctus quis, scelerisque et nibh.</blockquote>\r\nMauris eget bibendum libero, hendrerit faucibus tellus. Morbi felis dolor, tempus ac posuere id, facilisis non diam. Pellentesque vitae libero lacus. Sed rhoncus eros vel elit lacinia lacinia. Fusce laoreet sit amet urna ut sagittis. Fusce vitae ornare massa. Nam mollis elit quis eleifend dictum.\r\n\r\n[/bt_text][/bt_column][bt_column width=\"1/4\" align=\"right\" vertical_align=\"inherit\" border=\"no_border\" cell_padding=\"btDoublePadding\" animation=\"no_animation\" text_indent=\"no_text_indent\" highlight=\"no_highlight\" background_color=\"\" transparent=\"\" inner_background_color=\"\" background_image=\"\" el_class=\"\" el_style=\"\"][bt_custom_menu menu=\"About us\" el_class=\"\" el_style=\"\"][/bt_custom_menu][/bt_column][/bt_row][bt_row][/bt_row][/bt_section]','Activities','','inherit','closed','closed','','1236-revision-v1','','','2021-04-09 08:31:05','2021-04-09 08:31:05','',1236,'http://mpycdev.theomggroup.com/?p=1238',0,'revision','',0);
INSERT INTO `smrc_posts` VALUES (1240,1,'2021-04-09 09:12:18','2021-04-09 09:12:18','','luckyduck','','inherit','','closed','','luckyduck','','','2021-04-09 09:12:18','2021-04-09 09:12:18','',232,'http://mpycdev.theomggroup.com/wp-content/uploads/2021/03/luckyduck.jpg',0,'attachment','image/jpeg',0);
INSERT INTO `smrc_posts` VALUES (1241,1,'2021-04-09 09:13:14','2021-04-09 09:13:14','After a year\'s absence due to the Coronavirus pandemic, the Spinnaker Cup and California Offshore Race Week are set to return to MPYC. The prestigious multi-leg offshore regatta is will start with the Spinnaker Cup May 29-30. The Cup is the first leg of the competition hosted jointly by Encinal YC, Monterey Peninsula YC, Santa Barbara YC and San Diego YC.\r\n\r\nThe Spinnaker Cup course runs from San Francisco Bay to Monterey. Sailors then tackle leg 2 from MPYC to Santa Barbara Yacht Club in the Coastal Cup. The final test is the final leg from Santa Barbara to San Diego in the SoCal 300. Scores from all three legs are combined to determine the overall CA500 winner of the week-long event.\r\n\r\n[caption id=\"attachment_1240\" align=\"alignright\" width=\"320\"]<img class=\"wp-image-1240 size-medium\" src=\"http://mpycdev.theomggroup.com/wp-content/uploads/2021/03/luckyduck-320x168.jpg\" alt=\"\" width=\"320\" height=\"168\" /> Dave MacEwin\'s Lucky Duck[/caption]\r\n\r\nMPYC\'s own Dave MacEwen and his Lucky Duck team claimed top honors in the event in 2018 on the familiar blue Santa Cruz 52. Lucky Duck took top honors in the Spinnaker Cup, second in the Coastal Cup and 3rd in the SoCall 300. Lucky Duck won both it\'s division and in points overall.\r\n\r\nMPYC Vice Commodore Scott Brubaker is the MPYC organizer for the event and is excited the big boats are returning after a year off. \"We were worried the Spinnaker Cup might be delayed again because of Covid restrictions from the state,\" he said. \"But case numbers are dropping, new precautions are in place, and we\'re looking forward to a great event.\"\r\n\r\nLearn more about Spinnaker Cup and CORW <a href=\"https://offshoreraceweek.com/\">here</a>.','Spinnaker Cup 2021','After a year\'s absence due to the Coronavirus pandemic, the Spinnaker Cup and California Offshore Race Week are set to return to MPYC.','inherit','closed','closed','','232-revision-v1','','','2021-04-09 09:13:14','2021-04-09 09:13:14','',232,'http://mpycdev.theomggroup.com/?p=1241',0,'revision','',0);
INSERT INTO `smrc_posts` VALUES (1242,1,'2021-04-09 09:15:35','2021-04-09 09:15:35','After a year\'s absence due to the Coronavirus pandemic, the Spinnaker Cup and California Offshore Race Week are set to return to MPYC. The prestigious multi-leg offshore regatta is will start with the Spinnaker Cup May 29-30. The Cup is the first leg of the competition hosted jointly by Encinal YC, Monterey Peninsula YC, Santa Barbara YC and San Diego YC.\r\n\r\nThe Spinnaker Cup course runs from San Francisco Bay to Monterey. Sailors then tackle leg 2 from MPYC to Santa Barbara Yacht Club in the Coastal Cup. The final test is the final leg from Santa Barbara to San Diego in the SoCal 300. Scores from all three legs are combined to determine the overall CA500 winner of the week-long event.\r\n\r\n[caption id=\"attachment_1240\" align=\"alignright\" width=\"320\"]<img class=\"wp-image-1240 size-medium\" src=\"http://mpycdev.theomggroup.com/wp-content/uploads/2021/03/luckyduck-320x168.jpg\" alt=\"\" width=\"320\" height=\"168\" /> Dave MacEwen\'s Lucky Duck[/caption]\r\n\r\nMPYC\'s own Dave MacEwen and his Lucky Duck team claimed top honors in the event in 2018 on the familiar blue Santa Cruz 52. Lucky Duck took top honors in the Spinnaker Cup, second in the Coastal Cup and 3rd in the SoCall 300. Lucky Duck won both it\'s division and in points overall.\r\n\r\nMPYC Vice Commodore Scott Brubaker is the MPYC organizer for the event and is excited the big boats are returning after a year off. \"We were worried the Spinnaker Cup might be delayed again because of Covid restrictions from the state,\" he said. \"But case numbers are dropping, new precautions are in place, and we\'re looking forward to a great event.\"\r\n\r\nLearn more about Spinnaker Cup and CORW <a href=\"https://offshoreraceweek.com/\">here</a>.','Spinnaker Cup 2021','After a year\'s absence due to the Coronavirus pandemic, the Spinnaker Cup and California Offshore Race Week are set to return to MPYC.','inherit','closed','closed','','232-revision-v1','','','2021-04-09 09:15:35','2021-04-09 09:15:35','',232,'http://mpycdev.theomggroup.com/?p=1242',0,'revision','',0);
INSERT INTO `smrc_posts` VALUES (1243,1,'2021-04-09 09:20:33','2021-04-09 09:20:33','After a year\'s absence due to the Coronavirus pandemic, the Spinnaker Cup and California Offshore Race Week are set to return to MPYC. The prestigious multi-leg offshore regatta is will start with the Spinnaker Cup May 29-30. The Cup is the first leg of the competition hosted jointly by Encinal YC, Monterey Peninsula YC, Santa Barbara YC and San Diego YC.\r\n\r\nThe Spinnaker Cup course runs from San Francisco Bay to Monterey. Sailors then tackle leg 2 from MPYC to Santa Barbara Yacht Club in the Coastal Cup. The final test is the final leg from Santa Barbara to San Diego in the SoCal 300. Scores from all three legs are combined to determine the overall CA500 winner of the week-long event.\r\n\r\n[caption id=\"attachment_1240\" align=\"alignright\" width=\"320\"]<img class=\"wp-image-1240 size-medium\" src=\"http://mpycdev.theomggroup.com/wp-content/uploads/2021/03/luckyduck-320x168.jpg\" alt=\"\" width=\"320\" height=\"168\" /> Dave MacEwen\'s Lucky Duck[/caption]\r\n\r\nMPYC\'s own Dave MacEwen and his Lucky Duck team claimed top honors in the event in 2018 on the familiar blue Santa Cruz 52. Lucky Duck took top honors in the Spinnaker Cup, second in the Coastal Cup and 3rd in the SoCall 300. Lucky Duck won both it\'s division and in points overall, marking the skipper\'s best performance in four California Offshore Race Week appearances.\r\n\r\nMPYC Vice Commodore Scott Brubaker is the MPYC organizer for the event and is excited the big boats are returning after a year off. \"We were worried the Spinnaker Cup might be delayed again because of Covid restrictions from the state,\" he said. \"But case numbers are dropping, new precautions are in place, and we\'re looking forward to a great event.\"\r\n\r\nLearn more about Spinnaker Cup and CORW <a href=\"https://offshoreraceweek.com/\">here</a>.','Spinnaker Cup 2021','After a year\'s absence due to the Coronavirus pandemic, the Spinnaker Cup and California Offshore Race Week are set to return to MPYC.','inherit','closed','closed','','232-revision-v1','','','2021-04-09 09:20:33','2021-04-09 09:20:33','',232,'http://mpycdev.theomggroup.com/?p=1243',0,'revision','',0);
INSERT INTO `smrc_posts` VALUES (1244,1,'2021-04-09 09:20:42','2021-04-09 09:20:42','After a year\'s absence due to the Coronavirus pandemic, the Spinnaker Cup and California Offshore Race Week are set to return to MPYC. The prestigious multi-leg offshore regatta is will start with the Spinnaker Cup May 29-30. The Cup is the first leg of the competition hosted jointly by Encinal YC, Monterey Peninsula YC, Santa Barbara YC and San Diego YC.\r\n\r\nThe Spinnaker Cup course runs from San Francisco Bay to Monterey. Sailors then tackle leg 2 from MPYC to Santa Barbara Yacht Club in the Coastal Cup. The final test is the final leg from Santa Barbara to San Diego in the SoCal 300. Scores from all three legs are combined to determine the overall CA500 winner of the week-long event.\r\n\r\n[caption id=\"attachment_1240\" align=\"alignright\" width=\"320\"]<img class=\"wp-image-1240 size-medium\" src=\"http://mpycdev.theomggroup.com/wp-content/uploads/2021/03/luckyduck-320x168.jpg\" alt=\"\" width=\"320\" height=\"168\" /> Dave MacEwen\'s Lucky Duck[/caption]\r\n\r\nMPYC\'s own Dave MacEwen and his Lucky Duck team claimed top honors in the event in 2018 on the familiar blue Santa Cruz 52. Lucky Duck took top honors in the Spinnaker Cup, second in the Coastal Cup and 3rd in the SoCall 300. Lucky Duck won both its division and in points overall, marking the skipper\'s best performance in four California Offshore Race Week appearances.\r\n\r\nMPYC Vice Commodore Scott Brubaker is the MPYC organizer for the event and is excited the big boats are returning after a year off. \"We were worried the Spinnaker Cup might be delayed again because of Covid restrictions from the state,\" he said. \"But case numbers are dropping, new precautions are in place, and we\'re looking forward to a great event.\"\r\n\r\nLearn more about Spinnaker Cup and CORW <a href=\"https://offshoreraceweek.com/\">here</a>.','Spinnaker Cup 2021','After a year\'s absence due to the Coronavirus pandemic, the Spinnaker Cup and California Offshore Race Week are set to return to MPYC.','inherit','closed','closed','','232-revision-v1','','','2021-04-09 09:20:42','2021-04-09 09:20:42','',232,'http://mpycdev.theomggroup.com/?p=1244',0,'revision','',0);
--
-- Table structure for table `smrc_term_relationships`
--
DROP TABLE IF EXISTS `smrc_term_relationships`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `smrc_term_relationships` (
`object_id` bigint(20) unsigned NOT NULL DEFAULT '0',
`term_taxonomy_id` bigint(20) unsigned NOT NULL DEFAULT '0',
`term_order` int(11) NOT NULL DEFAULT '0',
PRIMARY KEY (`object_id`,`term_taxonomy_id`),
KEY `term_taxonomy_id` (`term_taxonomy_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `smrc_term_relationships`
--
INSERT INTO `smrc_term_relationships` VALUES (1,1,0);
INSERT INTO `smrc_term_relationships` VALUES (95,2,0);
INSERT INTO `smrc_term_relationships` VALUES (95,13,0);
INSERT INTO `smrc_term_relationships` VALUES (95,37,0);
INSERT INTO `smrc_term_relationships` VALUES (96,2,0);
INSERT INTO `smrc_term_relationships` VALUES (96,13,0);
INSERT INTO `smrc_term_relationships` VALUES (96,37,0);
INSERT INTO `smrc_term_relationships` VALUES (97,4,0);
INSERT INTO `smrc_term_relationships` VALUES (97,9,0);
INSERT INTO `smrc_term_relationships` VALUES (97,13,0);
INSERT INTO `smrc_term_relationships` VALUES (97,37,0);
INSERT INTO `smrc_term_relationships` VALUES (98,2,0);
INSERT INTO `smrc_term_relationships` VALUES (98,14,0);
INSERT INTO `smrc_term_relationships` VALUES (98,37,0);
INSERT INTO `smrc_term_relationships` VALUES (99,2,0);
INSERT INTO `smrc_term_relationships` VALUES (99,40,0);
INSERT INTO `smrc_term_relationships` VALUES (100,2,0);
INSERT INTO `smrc_term_relationships` VALUES (100,14,0);
INSERT INTO `smrc_term_relationships` VALUES (100,37,0);
INSERT INTO `smrc_term_relationships` VALUES (101,4,0);
INSERT INTO `smrc_term_relationships` VALUES (101,9,0);
INSERT INTO `smrc_term_relationships` VALUES (101,13,0);
INSERT INTO `smrc_term_relationships` VALUES (101,40,0);
INSERT INTO `smrc_term_relationships` VALUES (102,2,0);
INSERT INTO `smrc_term_relationships` VALUES (102,13,0);
INSERT INTO `smrc_term_relationships` VALUES (102,40,0);
INSERT INTO `smrc_term_relationships` VALUES (103,2,0);
INSERT INTO `smrc_term_relationships` VALUES (103,14,0);
INSERT INTO `smrc_term_relationships` VALUES (103,40,0);
INSERT INTO `smrc_term_relationships` VALUES (104,2,0);
INSERT INTO `smrc_term_relationships` VALUES (104,12,0);
INSERT INTO `smrc_term_relationships` VALUES (104,40,0);
INSERT INTO `smrc_term_relationships` VALUES (105,2,0);
INSERT INTO `smrc_term_relationships` VALUES (105,13,0);
INSERT INTO `smrc_term_relationships` VALUES (105,40,0);
INSERT INTO `smrc_term_relationships` VALUES (106,2,0);
INSERT INTO `smrc_term_relationships` VALUES (106,13,0);
INSERT INTO `smrc_term_relationships` VALUES (106,40,0);
INSERT INTO `smrc_term_relationships` VALUES (107,2,0);
INSERT INTO `smrc_term_relationships` VALUES (107,38,0);
INSERT INTO `smrc_term_relationships` VALUES (108,2,0);
INSERT INTO `smrc_term_relationships` VALUES (108,13,0);
INSERT INTO `smrc_term_relationships` VALUES (108,38,0);
INSERT INTO `smrc_term_relationships` VALUES (109,2,0);
INSERT INTO `smrc_term_relationships` VALUES (109,11,0);
INSERT INTO `smrc_term_relationships` VALUES (109,38,0);
INSERT INTO `smrc_term_relationships` VALUES (110,2,0);
INSERT INTO `smrc_term_relationships` VALUES (110,13,0);
INSERT INTO `smrc_term_relationships` VALUES (110,39,0);
INSERT INTO `smrc_term_relationships` VALUES (115,2,0);
INSERT INTO `smrc_term_relationships` VALUES (115,39,0);
INSERT INTO `smrc_term_relationships` VALUES (116,2,0);
INSERT INTO `smrc_term_relationships` VALUES (116,38,0);
INSERT INTO `smrc_term_relationships` VALUES (117,2,0);
INSERT INTO `smrc_term_relationships` VALUES (117,13,0);
INSERT INTO `smrc_term_relationships` VALUES (117,38,0);
INSERT INTO `smrc_term_relationships` VALUES (118,2,0);
INSERT INTO `smrc_term_relationships` VALUES (118,12,0);
INSERT INTO `smrc_term_relationships` VALUES (118,38,0);
INSERT INTO `smrc_term_relationships` VALUES (119,2,0);
INSERT INTO `smrc_term_relationships` VALUES (119,38,0);
INSERT INTO `smrc_term_relationships` VALUES (120,2,0);
INSERT INTO `smrc_term_relationships` VALUES (120,14,0);
INSERT INTO `smrc_term_relationships` VALUES (120,38,0);
INSERT INTO `smrc_term_relationships` VALUES (121,2,0);
INSERT INTO `smrc_term_relationships` VALUES (121,13,0);
INSERT INTO `smrc_term_relationships` VALUES (121,38,0);
INSERT INTO `smrc_term_relationships` VALUES (123,18,0);
INSERT INTO `smrc_term_relationships` VALUES (123,22,0);
INSERT INTO `smrc_term_relationships` VALUES (123,24,0);
INSERT INTO `smrc_term_relationships` VALUES (123,47,0);
INSERT INTO `smrc_term_relationships` VALUES (151,33,0);
INSERT INTO `smrc_term_relationships` VALUES (151,35,0);
INSERT INTO `smrc_term_relationships` VALUES (152,33,0);
INSERT INTO `smrc_term_relationships` VALUES (152,34,0);
INSERT INTO `smrc_term_relationships` VALUES (152,35,0);
INSERT INTO `smrc_term_relationships` VALUES (152,36,0);
INSERT INTO `smrc_term_relationships` VALUES (153,33,0);
INSERT INTO `smrc_term_relationships` VALUES (153,34,0);
INSERT INTO `smrc_term_relationships` VALUES (153,35,0);
INSERT INTO `smrc_term_relationships` VALUES (154,33,0);
INSERT INTO `smrc_term_relationships` VALUES (154,34,0);
INSERT INTO `smrc_term_relationships` VALUES (155,33,0);
INSERT INTO `smrc_term_relationships` VALUES (155,34,0);
INSERT INTO `smrc_term_relationships` VALUES (155,35,0);
INSERT INTO `smrc_term_relationships` VALUES (156,32,0);
INSERT INTO `smrc_term_relationships` VALUES (156,33,0);
INSERT INTO `smrc_term_relationships` VALUES (156,35,0);
INSERT INTO `smrc_term_relationships` VALUES (230,17,0);
INSERT INTO `smrc_term_relationships` VALUES (230,18,0);
INSERT INTO `smrc_term_relationships` VALUES (232,1,0);
INSERT INTO `smrc_term_relationships` VALUES (232,22,0);
INSERT INTO `smrc_term_relationships` VALUES (232,23,0);
INSERT INTO `smrc_term_relationships` VALUES (232,26,0);
INSERT INTO `smrc_term_relationships` VALUES (234,16,0);
INSERT INTO `smrc_term_relationships` VALUES (234,19,0);
INSERT INTO `smrc_term_relationships` VALUES (234,23,0);
INSERT INTO `smrc_term_relationships` VALUES (234,24,0);
INSERT INTO `smrc_term_relationships` VALUES (234,30,0);
INSERT INTO `smrc_term_relationships` VALUES (234,49,0);
INSERT INTO `smrc_term_relationships` VALUES (243,18,0);
INSERT INTO `smrc_term_relationships` VALUES (243,21,0);
INSERT INTO `smrc_term_relationships` VALUES (243,25,0);
INSERT INTO `smrc_term_relationships` VALUES (243,27,0);
INSERT INTO `smrc_term_relationships` VALUES (243,28,0);
INSERT INTO `smrc_term_relationships` VALUES (243,47,0);
INSERT INTO `smrc_term_relationships` VALUES (251,17,0);
INSERT INTO `smrc_term_relationships` VALUES (251,23,0);
INSERT INTO `smrc_term_relationships` VALUES (251,24,0);
INSERT INTO `smrc_term_relationships` VALUES (251,46,0);
INSERT INTO `smrc_term_relationships` VALUES (266,1,0);
INSERT INTO `smrc_term_relationships` VALUES (287,16,0);
INSERT INTO `smrc_term_relationships` VALUES (287,19,0);
INSERT INTO `smrc_term_relationships` VALUES (287,20,0);
INSERT INTO `smrc_term_relationships` VALUES (287,22,0);
INSERT INTO `smrc_term_relationships` VALUES (287,30,0);
INSERT INTO `smrc_term_relationships` VALUES (287,51,0);
INSERT INTO `smrc_term_relationships` VALUES (289,1,0);
INSERT INTO `smrc_term_relationships` VALUES (289,24,0);
INSERT INTO `smrc_term_relationships` VALUES (289,26,0);
INSERT INTO `smrc_term_relationships` VALUES (289,29,0);
INSERT INTO `smrc_term_relationships` VALUES (289,50,0);
INSERT INTO `smrc_term_relationships` VALUES (291,16,0);
INSERT INTO `smrc_term_relationships` VALUES (291,19,0);
INSERT INTO `smrc_term_relationships` VALUES (291,26,0);
INSERT INTO `smrc_term_relationships` VALUES (291,29,0);
INSERT INTO `smrc_term_relationships` VALUES (291,48,0);
INSERT INTO `smrc_term_relationships` VALUES (293,34,0);
INSERT INTO `smrc_term_relationships` VALUES (293,35,0);
INSERT INTO `smrc_term_relationships` VALUES (294,31,0);
INSERT INTO `smrc_term_relationships` VALUES (294,35,0);
INSERT INTO `smrc_term_relationships` VALUES (295,33,0);
INSERT INTO `smrc_term_relationships` VALUES (295,34,0);
INSERT INTO `smrc_term_relationships` VALUES (296,33,0);
INSERT INTO `smrc_term_relationships` VALUES (296,34,0);
INSERT INTO `smrc_term_relationships` VALUES (535,2,0);
INSERT INTO `smrc_term_relationships` VALUES (535,13,0);
INSERT INTO `smrc_term_relationships` VALUES (535,40,0);
INSERT INTO `smrc_term_relationships` VALUES (1170,43,0);
INSERT INTO `smrc_term_relationships` VALUES (1171,43,0);
INSERT INTO `smrc_term_relationships` VALUES (1172,43,0);
INSERT INTO `smrc_term_relationships` VALUES (1174,43,0);
INSERT INTO `smrc_term_relationships` VALUES (1175,43,0);
INSERT INTO `smrc_term_relationships` VALUES (1176,43,0);
INSERT INTO `smrc_term_relationships` VALUES (1178,43,0);
INSERT INTO `smrc_term_relationships` VALUES (1179,43,0);
INSERT INTO `smrc_term_relationships` VALUES (1180,43,0);
INSERT INTO `smrc_term_relationships` VALUES (1181,43,0);
INSERT INTO `smrc_term_relationships` VALUES (1182,43,0);
INSERT INTO `smrc_term_relationships` VALUES (1183,43,0);
INSERT INTO `smrc_term_relationships` VALUES (1186,43,0);
INSERT INTO `smrc_term_relationships` VALUES (1187,43,0);
INSERT INTO `smrc_term_relationships` VALUES (1188,43,0);
INSERT INTO `smrc_term_relationships` VALUES (1189,43,0);
INSERT INTO `smrc_term_relationships` VALUES (1191,43,0);
INSERT INTO `smrc_term_relationships` VALUES (1213,43,0);
INSERT INTO `smrc_term_relationships` VALUES (1216,41,0);
INSERT INTO `smrc_term_relationships` VALUES (1217,41,0);
INSERT INTO `smrc_term_relationships` VALUES (1218,41,0);
INSERT INTO `smrc_term_relationships` VALUES (1219,41,0);
INSERT INTO `smrc_term_relationships` VALUES (1225,43,0);
INSERT INTO `smrc_term_relationships` VALUES (1237,43,0);
--
-- Table structure for table `smrc_term_taxonomy`
--
DROP TABLE IF EXISTS `smrc_term_taxonomy`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `smrc_term_taxonomy` (
`term_taxonomy_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`term_id` bigint(20) unsigned NOT NULL DEFAULT '0',
`taxonomy` varchar(32) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`description` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
`parent` bigint(20) unsigned NOT NULL DEFAULT '0',
`count` bigint(20) NOT NULL DEFAULT '0',
PRIMARY KEY (`term_taxonomy_id`),
UNIQUE KEY `term_id_taxonomy` (`term_id`,`taxonomy`),
KEY `taxonomy` (`taxonomy`)
) ENGINE=InnoDB AUTO_INCREMENT=52 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `smrc_term_taxonomy`
--
INSERT INTO `smrc_term_taxonomy` VALUES (1,1,'category','',0,3);
INSERT INTO `smrc_term_taxonomy` VALUES (2,2,'product_type','',0,22);
INSERT INTO `smrc_term_taxonomy` VALUES (3,3,'product_type','',0,0);
INSERT INTO `smrc_term_taxonomy` VALUES (4,4,'product_type','',0,2);
INSERT INTO `smrc_term_taxonomy` VALUES (5,5,'product_type','',0,0);
INSERT INTO `smrc_term_taxonomy` VALUES (6,6,'product_visibility','',0,0);
INSERT INTO `smrc_term_taxonomy` VALUES (7,7,'product_visibility','',0,0);
INSERT INTO `smrc_term_taxonomy` VALUES (8,8,'product_visibility','',0,0);
INSERT INTO `smrc_term_taxonomy` VALUES (9,9,'product_visibility','',0,2);
INSERT INTO `smrc_term_taxonomy` VALUES (10,10,'product_visibility','',0,0);
INSERT INTO `smrc_term_taxonomy` VALUES (11,11,'product_visibility','',0,1);
INSERT INTO `smrc_term_taxonomy` VALUES (12,12,'product_visibility','',0,2);
INSERT INTO `smrc_term_taxonomy` VALUES (13,13,'product_visibility','',0,12);
INSERT INTO `smrc_term_taxonomy` VALUES (14,14,'product_visibility','',0,4);
INSERT INTO `smrc_term_taxonomy` VALUES (15,15,'product_cat','',0,0);
INSERT INTO `smrc_term_taxonomy` VALUES (16,16,'category','',0,3);
INSERT INTO `smrc_term_taxonomy` VALUES (17,17,'category','',0,2);
INSERT INTO `smrc_term_taxonomy` VALUES (18,18,'category','',0,3);
INSERT INTO `smrc_term_taxonomy` VALUES (19,19,'category','',0,3);
INSERT INTO `smrc_term_taxonomy` VALUES (20,20,'post_tag','',0,1);
INSERT INTO `smrc_term_taxonomy` VALUES (21,21,'post_tag','',0,1);
INSERT INTO `smrc_term_taxonomy` VALUES (22,22,'post_tag','',0,3);
INSERT INTO `smrc_term_taxonomy` VALUES (23,23,'post_tag','',0,3);
INSERT INTO `smrc_term_taxonomy` VALUES (24,24,'post_tag','',0,4);
INSERT INTO `smrc_term_taxonomy` VALUES (25,25,'post_tag','',0,1);
INSERT INTO `smrc_term_taxonomy` VALUES (26,26,'post_tag','',0,3);
INSERT INTO `smrc_term_taxonomy` VALUES (27,27,'post_tag','',0,1);
INSERT INTO `smrc_term_taxonomy` VALUES (28,28,'post_tag','',0,1);
INSERT INTO `smrc_term_taxonomy` VALUES (29,29,'post_tag','',0,2);
INSERT INTO `smrc_term_taxonomy` VALUES (30,30,'post_tag','',0,2);
INSERT INTO `smrc_term_taxonomy` VALUES (31,31,'portfolio_category','',0,1);
INSERT INTO `smrc_term_taxonomy` VALUES (32,32,'portfolio_category','',0,1);
INSERT INTO `smrc_term_taxonomy` VALUES (33,33,'portfolio_category','',0,8);
INSERT INTO `smrc_term_taxonomy` VALUES (34,34,'portfolio_category','',0,7);
INSERT INTO `smrc_term_taxonomy` VALUES (35,35,'portfolio_category','',0,7);
INSERT INTO `smrc_term_taxonomy` VALUES (36,36,'portfolio_category','',0,1);
INSERT INTO `smrc_term_taxonomy` VALUES (37,37,'product_cat','',0,5);
INSERT INTO `smrc_term_taxonomy` VALUES (38,38,'product_cat','',0,9);
INSERT INTO `smrc_term_taxonomy` VALUES (39,39,'product_cat','',0,2);
INSERT INTO `smrc_term_taxonomy` VALUES (40,40,'product_cat','',0,8);
INSERT INTO `smrc_term_taxonomy` VALUES (41,41,'nav_menu','',0,4);
INSERT INTO `smrc_term_taxonomy` VALUES (42,42,'nav_menu','',0,0);
INSERT INTO `smrc_term_taxonomy` VALUES (43,43,'nav_menu','',0,20);
INSERT INTO `smrc_term_taxonomy` VALUES (44,44,'nav_menu','',0,0);
INSERT INTO `smrc_term_taxonomy` VALUES (45,45,'nav_menu','',0,0);
INSERT INTO `smrc_term_taxonomy` VALUES (46,46,'post_format','',0,1);
INSERT INTO `smrc_term_taxonomy` VALUES (47,47,'post_format','',0,2);
INSERT INTO `smrc_term_taxonomy` VALUES (48,48,'post_format','',0,1);
INSERT INTO `smrc_term_taxonomy` VALUES (49,49,'post_format','',0,1);
INSERT INTO `smrc_term_taxonomy` VALUES (50,50,'post_format','',0,1);
INSERT INTO `smrc_term_taxonomy` VALUES (51,51,'post_format','',0,1);
--
-- Table structure for table `smrc_termmeta`
--
DROP TABLE IF EXISTS `smrc_termmeta`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `smrc_termmeta` (
`meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`term_id` bigint(20) unsigned NOT NULL DEFAULT '0',
`meta_key` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
`meta_value` longtext COLLATE utf8mb4_unicode_520_ci,
PRIMARY KEY (`meta_id`),
KEY `term_id` (`term_id`),
KEY `meta_key` (`meta_key`(191))
) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `smrc_termmeta`
--
INSERT INTO `smrc_termmeta` VALUES (1,37,'order','0');
INSERT INTO `smrc_termmeta` VALUES (2,38,'order','0');
INSERT INTO `smrc_termmeta` VALUES (3,39,'order','0');
INSERT INTO `smrc_termmeta` VALUES (4,40,'order','0');
INSERT INTO `smrc_termmeta` VALUES (5,37,'product_count_product_cat','5');
INSERT INTO `smrc_termmeta` VALUES (6,40,'product_count_product_cat','8');
INSERT INTO `smrc_termmeta` VALUES (7,38,'product_count_product_cat','9');
INSERT INTO `smrc_termmeta` VALUES (8,39,'product_count_product_cat','2');
--
-- Table structure for table `smrc_terms`
--
DROP TABLE IF EXISTS `smrc_terms`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `smrc_terms` (
`term_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`slug` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`term_group` bigint(10) NOT NULL DEFAULT '0',
PRIMARY KEY (`term_id`),
KEY `slug` (`slug`(191)),
KEY `name` (`name`(191))
) ENGINE=InnoDB AUTO_INCREMENT=52 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `smrc_terms`
--
INSERT INTO `smrc_terms` VALUES (1,'Uncategorized','uncategorized',0);
INSERT INTO `smrc_terms` VALUES (2,'simple','simple',0);
INSERT INTO `smrc_terms` VALUES (3,'grouped','grouped',0);
INSERT INTO `smrc_terms` VALUES (4,'variable','variable',0);
INSERT INTO `smrc_terms` VALUES (5,'external','external',0);
INSERT INTO `smrc_terms` VALUES (6,'exclude-from-search','exclude-from-search',0);
INSERT INTO `smrc_terms` VALUES (7,'exclude-from-catalog','exclude-from-catalog',0);
INSERT INTO `smrc_terms` VALUES (8,'featured','featured',0);
INSERT INTO `smrc_terms` VALUES (9,'outofstock','outofstock',0);
INSERT INTO `smrc_terms` VALUES (10,'rated-1','rated-1',0);
INSERT INTO `smrc_terms` VALUES (11,'rated-2','rated-2',0);
INSERT INTO `smrc_terms` VALUES (12,'rated-3','rated-3',0);
INSERT INTO `smrc_terms` VALUES (13,'rated-4','rated-4',0);
INSERT INTO `smrc_terms` VALUES (14,'rated-5','rated-5',0);
INSERT INTO `smrc_terms` VALUES (15,'Uncategorized','uncategorized',0);
INSERT INTO `smrc_terms` VALUES (16,'Audio','audio',0);
INSERT INTO `smrc_terms` VALUES (17,'Gallery','gallery',0);
INSERT INTO `smrc_terms` VALUES (18,'Image','image',0);
INSERT INTO `smrc_terms` VALUES (19,'Video','video',0);
INSERT INTO `smrc_terms` VALUES (20,'Audio','audio',0);
INSERT INTO `smrc_terms` VALUES (21,'Consectetuer','consectetuer',0);
INSERT INTO `smrc_terms` VALUES (22,'Gallery','gallery',0);
INSERT INTO `smrc_terms` VALUES (23,'Grid','grid',0);
INSERT INTO `smrc_terms` VALUES (24,'Image','image',0);
INSERT INTO `smrc_terms` VALUES (25,'Ipsum','ipsum',0);
INSERT INTO `smrc_terms` VALUES (26,'Link','link',0);
INSERT INTO `smrc_terms` VALUES (27,'Loram','loram',0);
INSERT INTO `smrc_terms` VALUES (28,'Nonummy','nonummy',0);
INSERT INTO `smrc_terms` VALUES (29,'Quote','quote',0);
INSERT INTO `smrc_terms` VALUES (30,'Video','video',0);
INSERT INTO `smrc_terms` VALUES (31,'Audio','audio',0);
INSERT INTO `smrc_terms` VALUES (32,'Carousel','carousel',0);
INSERT INTO `smrc_terms` VALUES (33,'Gallery','gallery',0);
INSERT INTO `smrc_terms` VALUES (34,'Grid','grid',0);
INSERT INTO `smrc_terms` VALUES (35,'Image','image',0);
INSERT INTO `smrc_terms` VALUES (36,'Video','video',0);
INSERT INTO `smrc_terms` VALUES (37,'Keychains','keychains',0);
INSERT INTO `smrc_terms` VALUES (38,'Mugs','mugs',0);
INSERT INTO `smrc_terms` VALUES (39,'Posters','posters',0);
INSERT INTO `smrc_terms` VALUES (40,'T-shirts','t-shirts',0);
INSERT INTO `smrc_terms` VALUES (41,'About us menu','about-us-menu',0);
INSERT INTO `smrc_terms` VALUES (42,'Footer bottom menu','footer-bottom-menu',0);
INSERT INTO `smrc_terms` VALUES (43,'Primary menu','primary-menu',0);
INSERT INTO `smrc_terms` VALUES (44,'Rooms','rooms',0);
INSERT INTO `smrc_terms` VALUES (45,'Rooms footer menu','rooms-footer-menu',0);
INSERT INTO `smrc_terms` VALUES (46,'Gallery','post-format-gallery',0);
INSERT INTO `smrc_terms` VALUES (47,'Image','post-format-image',0);
INSERT INTO `smrc_terms` VALUES (48,'Link','post-format-link',0);
INSERT INTO `smrc_terms` VALUES (49,'Video','post-format-video',0);
INSERT INTO `smrc_terms` VALUES (50,'Quote','post-format-quote',0);
INSERT INTO `smrc_terms` VALUES (51,'Audio','post-format-audio',0);
--
-- Table structure for table `smrc_usermeta`
--
DROP TABLE IF EXISTS `smrc_usermeta`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `smrc_usermeta` (
`umeta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`user_id` bigint(20) unsigned NOT NULL DEFAULT '0',
`meta_key` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
`meta_value` longtext COLLATE utf8mb4_unicode_520_ci,
PRIMARY KEY (`umeta_id`),
KEY `user_id` (`user_id`),
KEY `meta_key` (`meta_key`(191))
) ENGINE=InnoDB AUTO_INCREMENT=35 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `smrc_usermeta`
--
INSERT INTO `smrc_usermeta` VALUES (1,1,'nickname','admin');
INSERT INTO `smrc_usermeta` VALUES (2,1,'first_name','');
INSERT INTO `smrc_usermeta` VALUES (3,1,'last_name','');
INSERT INTO `smrc_usermeta` VALUES (4,1,'description','');
INSERT INTO `smrc_usermeta` VALUES (5,1,'rich_editing','true');
INSERT INTO `smrc_usermeta` VALUES (6,1,'syntax_highlighting','true');
INSERT INTO `smrc_usermeta` VALUES (7,1,'comment_shortcuts','false');
INSERT INTO `smrc_usermeta` VALUES (8,1,'admin_color','fresh');
INSERT INTO `smrc_usermeta` VALUES (9,1,'use_ssl','0');
INSERT INTO `smrc_usermeta` VALUES (10,1,'show_admin_bar_front','true');
INSERT INTO `smrc_usermeta` VALUES (11,1,'locale','');
INSERT INTO `smrc_usermeta` VALUES (12,1,'smrc_capabilities','a:1:{s:13:\"administrator\";b:1;}');
INSERT INTO `smrc_usermeta` VALUES (13,1,'smrc_user_level','10');
INSERT INTO `smrc_usermeta` VALUES (14,1,'dismissed_wp_pointers','');
INSERT INTO `smrc_usermeta` VALUES (15,1,'show_welcome_panel','1');
INSERT INTO `smrc_usermeta` VALUES (16,1,'session_tokens','a:1:{s:64:\"368416307327f1ce2d53ac909a811ed91185c9e729699b8451133695d2db1aba\";a:4:{s:10:\"expiration\";i:1618368307;s:2:\"ip\";s:12:\"107.3.172.22\";s:2:\"ua\";s:119:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1.2 Safari/605.1.15\";s:5:\"login\";i:1618195507;}}');
INSERT INTO `smrc_usermeta` VALUES (17,1,'smrc_user-settings','deleted=undefined&libraryContent=browse&editor=tinymce');
INSERT INTO `smrc_usermeta` VALUES (18,1,'smrc_user-settings-time','1617685681');
INSERT INTO `smrc_usermeta` VALUES (19,1,'smrc_dashboard_quick_press_last_post_id','1245');
INSERT INTO `smrc_usermeta` VALUES (20,1,'community-events-location','a:1:{s:2:\"ip\";s:11:\"73.170.12.0\";}');
INSERT INTO `smrc_usermeta` VALUES (21,1,'_woocommerce_tracks_anon_id','woo:nlT/ejvsYHSbzOjTRVEUWoti');
INSERT INTO `smrc_usermeta` VALUES (22,1,'last_update','1617362820');
INSERT INTO `smrc_usermeta` VALUES (23,1,'woocommerce_admin_activity_panel_inbox_last_read','1617362819185');
INSERT INTO `smrc_usermeta` VALUES (24,1,'nav_menu_recently_edited','41');
INSERT INTO `smrc_usermeta` VALUES (25,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\";}');
INSERT INTO `smrc_usermeta` VALUES (26,1,'metaboxhidden_nav-menus','a:7:{i:0;s:21:\"add-post-type-product\";i:1;s:23:\"add-post-type-portfolio\";i:2;s:12:\"add-post_tag\";i:3;s:15:\"add-post_format\";i:4;s:15:\"add-product_cat\";i:5;s:15:\"add-product_tag\";i:6;s:22:\"add-portfolio_category\";}');
INSERT INTO `smrc_usermeta` VALUES (27,1,'wc_last_active','1618185600');
INSERT INTO `smrc_usermeta` VALUES (28,1,'_order_count','0');
INSERT INTO `smrc_usermeta` VALUES (30,1,'smrc_media_library_mode','grid');
INSERT INTO `smrc_usermeta` VALUES (33,1,'closedpostboxes_post','a:0:{}');
INSERT INTO `smrc_usermeta` VALUES (34,1,'metaboxhidden_post','a:10:{i:0;s:11:\"categorydiv\";i:1;s:16:\"tagsdiv-post_tag\";i:2;s:15:\"bt_bb_sectionid\";i:3;s:12:\"revisionsdiv\";i:4;s:13:\"trackbacksdiv\";i:5;s:10:\"postcustom\";i:6;s:16:\"commentstatusdiv\";i:7;s:11:\"commentsdiv\";i:8;s:7:\"slugdiv\";i:9;s:9:\"authordiv\";}');
--
-- Table structure for table `smrc_users`
--
DROP TABLE IF EXISTS `smrc_users`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `smrc_users` (
`ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`user_login` varchar(60) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`user_pass` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`user_nicename` varchar(50) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`user_email` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`user_url` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`user_registered` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`user_activation_key` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`user_status` int(11) NOT NULL DEFAULT '0',
`display_name` varchar(250) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
PRIMARY KEY (`ID`),
KEY `user_login_key` (`user_login`),
KEY `user_nicename` (`user_nicename`),
KEY `user_email` (`user_email`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `smrc_users`
--
INSERT INTO `smrc_users` VALUES (1,'mpycadmin','$P$BMmS7fcGyR//KZQD/bpr06EMLFY/Oc1','admin','dan.green@omgmediagroup.com','http://mpycdev.theomggroup.com','2021-04-02 03:58:25','',0,'admin');
--
-- Table structure for table `smrc_wc_admin_note_actions`
--
DROP TABLE IF EXISTS `smrc_wc_admin_note_actions`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `smrc_wc_admin_note_actions` (
`action_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`note_id` bigint(20) unsigned NOT NULL,
`name` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL,
`label` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL,
`query` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
`status` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL,
`is_primary` tinyint(1) NOT NULL DEFAULT '0',
`actioned_text` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL,
PRIMARY KEY (`action_id`),
KEY `note_id` (`note_id`)
) ENGINE=InnoDB AUTO_INCREMENT=3242 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `smrc_wc_admin_note_actions`
--
INSERT INTO `smrc_wc_admin_note_actions` VALUES (1,1,'connect','Connect','?page=wc-addons§ion=helper','unactioned',0,'');
INSERT INTO `smrc_wc_admin_note_actions` VALUES (2,2,'yes-please','Yes please!','https://woocommerce.us8.list-manage.com/subscribe/post?u=2c1434dc56f9506bf3c3ecd21&id=13860df971&SIGNUPPAGE=plugin','actioned',0,'');
INSERT INTO `smrc_wc_admin_note_actions` VALUES (3,3,'open-marketing-hub','Open marketing hub','http://mpycdev.theomggroup.com/wp-admin/admin.php?page=wc-admin&path=/marketing','actioned',0,'');
INSERT INTO `smrc_wc_admin_note_actions` VALUES (36,19,'learn-more','Learn more','https://docs.woocommerce.com/document/variable-product/?utm_source=inbox','actioned',0,'');
INSERT INTO `smrc_wc_admin_note_actions` VALUES (421,20,'learn-more','Learn more','https://docs.woocommerce.com/document/woocommerce-analytics/#variations-report','actioned',0,'');
INSERT INTO `smrc_wc_admin_note_actions` VALUES (422,21,'visit-the-theme-marketplace','Visit the theme marketplace','https://woocommerce.com/product-category/themes/?utm_source=inbox','actioned',0,'');
INSERT INTO `smrc_wc_admin_note_actions` VALUES (423,22,'affirm-insight-first-product-and-payment','Yes','','actioned',0,'Thanks for your feedback');
INSERT INTO `smrc_wc_admin_note_actions` VALUES (424,23,'day-after-first-product','Learn more','https://docs.woocommerce.com/document/woocommerce-customizer/?utm_source=inbox','actioned',0,'');
INSERT INTO `smrc_wc_admin_note_actions` VALUES (441,24,'learn-more','Learn more','https://woocommerce.com/mobile/','actioned',0,'');
INSERT INTO `smrc_wc_admin_note_actions` VALUES (474,25,'view-payment-gateways','Learn more','https://woocommerce.com/product-category/woocommerce-extensions/payment-gateways/','actioned',1,'');
INSERT INTO `smrc_wc_admin_note_actions` VALUES (507,26,'tracking-opt-in','Activate usage tracking','','actioned',1,'');
INSERT INTO `smrc_wc_admin_note_actions` VALUES (508,27,'learn-more','Learn more','https://woocommerce.com/payments/','unactioned',0,'');
INSERT INTO `smrc_wc_admin_note_actions` VALUES (509,27,'get-started','Get started','http://mpycdev.theomggroup.com/wp-admin/admin.php?page=wc-admin&action=setup-woocommerce-payments','actioned',1,'');
INSERT INTO `smrc_wc_admin_note_actions` VALUES (526,28,'share-feedback','Share feedback','https://automattic.survey.fm/store-setup-survey','actioned',0,'');
INSERT INTO `smrc_wc_admin_note_actions` VALUES (527,29,'affirm-insight-first-sale','Yes','','actioned',0,'Thanks for your feedback');
INSERT INTO `smrc_wc_admin_note_actions` VALUES (528,29,'deny-insight-first-sale','No','','actioned',0,'Thanks for your feedback');
INSERT INTO `smrc_wc_admin_note_actions` VALUES (1636,43,'learn-more','Learn more','https://woocommerce.com/mobile/?utm_source=inbox','actioned',0,'');
INSERT INTO `smrc_wc_admin_note_actions` VALUES (2950,49,'mercadopago_q3_2021_EN','Free download','https://woocommerce.com/products/mercado-pago-checkout/?utm_source=inbox&utm_medium=product&utm_campaign=mercadopago_q3_2021_EN','actioned',1,'');
INSERT INTO `smrc_wc_admin_note_actions` VALUES (3203,50,'learn-more','Learn more','https://woocommerce.com/mobile/?utm_source=inbox','actioned',0,'');
INSERT INTO `smrc_wc_admin_note_actions` VALUES (3204,44,'wayflyer_q3_2021','Get funded','https://woocommerce.com/products/wayflyer/','actioned',1,'');
INSERT INTO `smrc_wc_admin_note_actions` VALUES (3205,42,'eu_vat_changes_2021','Learn more about the EU tax regulations','https://woocommerce.com/posts/new-eu-vat-regulations','actioned',1,'');
INSERT INTO `smrc_wc_admin_note_actions` VALUES (3206,4,'open_wc_paypal_payments_product_page','Learn more','https://woocommerce.com/products/woocommerce-paypal-payments/','actioned',1,'');
INSERT INTO `smrc_wc_admin_note_actions` VALUES (3207,5,'upgrade_now_facebook_pixel_api','Upgrade now','plugin-install.php?tab=plugin-information&plugin=§ion=changelog','actioned',1,'');
INSERT INTO `smrc_wc_admin_note_actions` VALUES (3208,6,'learn_more_facebook_ec','Learn more','https://woocommerce.com/products/facebook/','unactioned',1,'');
INSERT INTO `smrc_wc_admin_note_actions` VALUES (3209,7,'set-up-concierge','Schedule free session','https://wordpress.com/me/concierge','actioned',1,'');
INSERT INTO `smrc_wc_admin_note_actions` VALUES (3210,8,'learn-more','Learn more','https://docs.woocommerce.com/document/woocommerce-shipping-and-tax/?utm_source=inbox','unactioned',1,'');
INSERT INTO `smrc_wc_admin_note_actions` VALUES (3211,9,'learn-more-ecomm-unique-shopping-experience','Learn more','https://docs.woocommerce.com/document/product-add-ons/?utm_source=inbox','actioned',1,'');
INSERT INTO `smrc_wc_admin_note_actions` VALUES (3212,10,'watch-the-webinar','Watch the webinar','https://youtu.be/V_2XtCOyZ7o','actioned',1,'');
INSERT INTO `smrc_wc_admin_note_actions` VALUES (3213,11,'learn-more','Learn more','https://woocommerce.com/posts/ecommerce-shipping-solutions-guide/?utm_source=inbox','actioned',1,'');
INSERT INTO `smrc_wc_admin_note_actions` VALUES (3214,12,'boost-sales-marketing-guide','See marketing guide','https://developer.apple.com/apple-pay/marketing/?utm_source=inbox&utm_campaign=square-boost-sales','actioned',1,'');
INSERT INTO `smrc_wc_admin_note_actions` VALUES (3215,13,'grow-your-business-marketing-guide','See marketing guide','https://developer.apple.com/apple-pay/marketing/?utm_source=inbox&utm_campaign=square-grow-your-business','actioned',1,'');
INSERT INTO `smrc_wc_admin_note_actions` VALUES (3216,14,'add-apple-pay','Add Apple Pay','/admin.php?page=wc-settings&tab=checkout§ion=woocommerce_payments','actioned',1,'');
INSERT INTO `smrc_wc_admin_note_actions` VALUES (3217,14,'learn-more','Learn more','https://docs.woocommerce.com/document/payments/apple-pay/?utm_source=inbox&utm_medium=product&utm_campaign=wcpay_applepay','actioned',1,'');
INSERT INTO `smrc_wc_admin_note_actions` VALUES (3218,15,'boost-sales-marketing-guide','See marketing guide','https://developer.apple.com/apple-pay/marketing/?utm_source=inbox&utm_campaign=wcpay-boost-sales','actioned',1,'');
INSERT INTO `smrc_wc_admin_note_actions` VALUES (3219,16,'grow-your-business-marketing-guide','See marketing guide','https://developer.apple.com/apple-pay/marketing/?utm_source=inbox&utm_campaign=wcpay-grow-your-business','actioned',1,'');
INSERT INTO `smrc_wc_admin_note_actions` VALUES (3220,17,'optimizing-the-checkout-flow','Learn more','https://woocommerce.com/posts/optimizing-woocommerce-checkout?utm_source=inbox','actioned',1,'');
INSERT INTO `smrc_wc_admin_note_actions` VALUES (3221,18,'learn-more','Learn more','https://woocommerce.com/posts/first-things-customize-woocommerce/?utm_source=inbox','unactioned',1,'');
INSERT INTO `smrc_wc_admin_note_actions` VALUES (3222,30,'qualitative-feedback-from-new-users','Share feedback','https://automattic.survey.fm/wc-pay-new','actioned',1,'');
INSERT INTO `smrc_wc_admin_note_actions` VALUES (3223,31,'share-feedback','Share feedback','http://automattic.survey.fm/paypal-feedback','unactioned',1,'');
INSERT INTO `smrc_wc_admin_note_actions` VALUES (3224,32,'learn-more','Learn about Instant Deposits eligibility','https://docs.woocommerce.com/document/payments/instant-deposits/?utm_source=inbox&utm_medium=product&utm_campaign=wcpay_instant_deposits','actioned',1,'');
INSERT INTO `smrc_wc_admin_note_actions` VALUES (3225,34,'get-started','Get started','https://woocommerce.com/products/google-listings-and-ads','actioned',1,'');
INSERT INTO `smrc_wc_admin_note_actions` VALUES (3226,33,'update-wc-subscriptions-3-0-15','View latest version','http://mpycdev.theomggroup.com/wp-admin/admin.php?page=wc-admin&page=wc-addons§ion=helper','actioned',1,'');
INSERT INTO `smrc_wc_admin_note_actions` VALUES (3227,35,'update-wc-core-5-4-0','How to update WooCommerce','https://docs.woocommerce.com/document/how-to-update-woocommerce/','actioned',1,'');
INSERT INTO `smrc_wc_admin_note_actions` VALUES (3228,38,'get-woo-commerce-payments','Get WooCommerce Payments','admin.php?page=wc-admin&action=setup-woocommerce-payments','actioned',1,'');
INSERT INTO `smrc_wc_admin_note_actions` VALUES (3229,39,'get-woocommerce-payments','Get WooCommerce Payments','admin.php?page=wc-admin&action=setup-woocommerce-payments','actioned',1,'');
INSERT INTO `smrc_wc_admin_note_actions` VALUES (3230,40,'ppxo-pps-install-paypal-payments-1','View upgrade guide','https://docs.woocommerce.com/document/woocommerce-paypal-payments/paypal-payments-upgrade-guide/','actioned',1,'');
INSERT INTO `smrc_wc_admin_note_actions` VALUES (3231,41,'ppxo-pps-install-paypal-payments-2','View upgrade guide','https://docs.woocommerce.com/document/woocommerce-paypal-payments/paypal-payments-upgrade-guide/','actioned',1,'');
INSERT INTO `smrc_wc_admin_note_actions` VALUES (3232,45,'learn-more','Learn more','https://woocommerce.com/posts/critical-vulnerability-detected-july-2021/?utm_source=inbox_note&utm_medium=product&utm_campaign=vulnerability_comms','unactioned',1,'');
INSERT INTO `smrc_wc_admin_note_actions` VALUES (3233,45,'dismiss','Dismiss','','actioned',0,'');
INSERT INTO `smrc_wc_admin_note_actions` VALUES (3234,46,'learn-more','Learn more','https://woocommerce.com/posts/critical-vulnerability-detected-july-2021/?utm_source=inbox_note&utm_medium=product&utm_campaign=vulnerability_comms','unactioned',1,'');
INSERT INTO `smrc_wc_admin_note_actions` VALUES (3235,46,'dismiss','Dismiss','','actioned',0,'');
INSERT INTO `smrc_wc_admin_note_actions` VALUES (3236,47,'learn-more','Learn more','https://woocommerce.com/posts/critical-vulnerability-detected-july-2021/?utm_source=inbox_note&utm_medium=product&utm_campaign=vulnerability_comms','unactioned',1,'');
INSERT INTO `smrc_wc_admin_note_actions` VALUES (3237,47,'dismiss','Dismiss','','actioned',0,'');
INSERT INTO `smrc_wc_admin_note_actions` VALUES (3238,48,'learn-more','Learn more','https://woocommerce.com/posts/critical-vulnerability-detected-july-2021/?utm_source=inbox_note&utm_medium=product&utm_campaign=vulnerability_comms','unactioned',1,'');
INSERT INTO `smrc_wc_admin_note_actions` VALUES (3239,48,'dismiss','Dismiss','','actioned',0,'');
INSERT INTO `smrc_wc_admin_note_actions` VALUES (3240,51,'learn-more','Learn more','https://woocommerce.com/mobile/?utm_source=inbox','actioned',0,'');
INSERT INTO `smrc_wc_admin_note_actions` VALUES (3241,52,'learn-more','Learn more','https://woocommerce.com/mobile/?utm_source=inbox','actioned',0,'');
--
-- Table structure for table `smrc_wc_admin_notes`
--
DROP TABLE IF EXISTS `smrc_wc_admin_notes`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `smrc_wc_admin_notes` (
`note_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL,
`type` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL,
`locale` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL,
`title` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
`content` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
`content_data` longtext COLLATE utf8mb4_unicode_520_ci,
`status` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL,
`source` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL,
`date_created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`date_reminder` datetime DEFAULT NULL,
`is_snoozable` tinyint(1) NOT NULL DEFAULT '0',
`layout` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`image` varchar(200) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
`is_deleted` tinyint(1) NOT NULL DEFAULT '0',
`icon` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'info',
PRIMARY KEY (`note_id`)
) ENGINE=InnoDB AUTO_INCREMENT=53 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `smrc_wc_admin_notes`
--
INSERT INTO `smrc_wc_admin_notes` VALUES (1,'wc-admin-wc-helper-connection','info','en_US','Connect to WooCommerce.com','Connect to get important product notifications and updates.','{}','unactioned','woocommerce-admin','2021-04-02 11:26:53',NULL,0,'plain','',0,'info');
INSERT INTO `smrc_wc_admin_notes` VALUES (2,'wc-admin-onboarding-email-marketing','info','en_US','Sign up for tips, product updates, and inspiration','We\'re here for you - get tips, product updates and inspiration straight to your email box','{}','unactioned','woocommerce-admin','2021-04-02 11:26:56',NULL,0,'plain','',0,'info');
INSERT INTO `smrc_wc_admin_notes` VALUES (3,'wc-admin-marketing-intro','info','en_US','Connect with your audience','Grow your customer base and increase your sales with marketing tools built for WooCommerce.','{}','unactioned','woocommerce-admin','2021-04-02 11:26:56',NULL,0,'plain','',0,'info');
INSERT INTO `smrc_wc_admin_notes` VALUES (4,'paypal_ppcp_gtm_2021','marketing','en_US','Offer more options with the new PayPal','Get the latest PayPal extension for a full suite of payment methods with extensive currency and country coverage.','{}','pending','woocommerce.com','2021-04-02 11:26:56',NULL,0,'plain','',0,'info');
INSERT INTO `smrc_wc_admin_notes` VALUES (5,'facebook_pixel_api_2021','marketing','en_US','Improve the performance of your Facebook ads','Enable Facebook Pixel and Conversions API through the latest version of Facebook for WooCommerce for improved measurement and ad targeting capabilities.','{}','pending','woocommerce.com','2021-04-02 11:26:56',NULL,0,'plain','',0,'info');
INSERT INTO `smrc_wc_admin_notes` VALUES (6,'facebook_ec_2021','marketing','en_US','Sync your product catalog with Facebook to help boost sales','A single click adds all products to your Facebook Business Page shop. Product changes are automatically synced, with the flexibility to control which products are listed.','{}','pending','woocommerce.com','2021-04-02 11:26:56',NULL,0,'plain','',0,'info');
INSERT INTO `smrc_wc_admin_notes` VALUES (7,'ecomm-need-help-setting-up-your-store','info','en_US','Need help setting up your Store?','Schedule a free 30-min <a href=\"https://wordpress.com/support/concierge-support/\">quick start session</a> and get help from our specialists. We’re happy to walk through setup steps, show you around the WordPress.com dashboard, troubleshoot any issues you may have, and help you the find the features you need to accomplish your goals for your site.','{}','pending','woocommerce.com','2021-04-02 11:26:56',NULL,0,'plain','',0,'info');
INSERT INTO `smrc_wc_admin_notes` VALUES (8,'woocommerce-services','info','en_US','WooCommerce Shipping & Tax','WooCommerce Shipping & Tax helps get your store “ready to sell” as quickly as possible. You create your products. We take care of tax calculation, payment processing, and shipping label printing! Learn more about the extension that you just installed.','{}','pending','woocommerce.com','2021-04-02 11:26:56',NULL,0,'plain','',0,'info');
INSERT INTO `smrc_wc_admin_notes` VALUES (9,'ecomm-unique-shopping-experience','info','en_US','For a shopping experience as unique as your customers','Product Add-Ons allow your customers to personalize products while they’re shopping on your online store. No more follow-up email requests—customers get what they want, before they’re done checking out. Learn more about this extension that comes included in your plan.','{}','pending','woocommerce.com','2021-04-02 11:26:56',NULL,0,'plain','',0,'info');
INSERT INTO `smrc_wc_admin_notes` VALUES (10,'wc-admin-getting-started-in-ecommerce','info','en_US','Getting Started in eCommerce - webinar','We want to make eCommerce and this process of getting started as easy as possible for you. Watch this webinar to get tips on how to have our store up and running in a breeze.','{}','pending','woocommerce.com','2021-04-02 11:26:56',NULL,0,'plain','',0,'info');
INSERT INTO `smrc_wc_admin_notes` VALUES (11,'your-first-product','info','en_US','Your first product','That\'s huge! You\'re well on your way to building a successful online store — now it’s time to think about how you\'ll fulfill your orders.<br /><br />Read our shipping guide to learn best practices and options for putting together your shipping strategy. And for WooCommerce stores in the United States, you can print discounted shipping labels via USPS with <a href=\"https://href.li/?https://woocommerce.com/shipping\" target=\"_blank\">WooCommerce Shipping</a>.','{}','unactioned','woocommerce.com','2021-04-02 11:40:22',NULL,0,'plain','',0,'info');
INSERT INTO `smrc_wc_admin_notes` VALUES (12,'wc-square-apple-pay-boost-sales','marketing','en_US','Boost sales with Apple Pay','Now that you accept Apple Pay® with Square you can increase conversion rates by letting your customers know that Apple Pay® is available. Here’s a marketing guide to help you get started.','{}','pending','woocommerce.com','2021-04-02 11:26:56',NULL,0,'plain','',0,'info');
INSERT INTO `smrc_wc_admin_notes` VALUES (13,'wc-square-apple-pay-grow-your-business','marketing','en_US','Grow your business with Square and Apple Pay ','Now more than ever, shoppers want a fast, simple, and secure online checkout experience. Increase conversion rates by letting your customers know that you now accept Apple Pay®.','{}','pending','woocommerce.com','2021-04-02 11:26:56',NULL,0,'plain','',0,'info');
INSERT INTO `smrc_wc_admin_notes` VALUES (14,'wcpay-apple-pay-is-now-available','marketing','en_US','Apple Pay is now available with WooCommerce Payments!','Increase your conversion rate by offering a fast and secure checkout with <a href=\"https://woocommerce.com/apple-pay/?utm_source=inbox&utm_medium=product&utm_campaign=wcpay_applepay\" target=\"_blank\">Apple Pay</a>®. It’s free to get started with <a href=\"https://woocommerce.com/payments/?utm_source=inbox&utm_medium=product&utm_campaign=wcpay_applepay\" target=\"_blank\">WooCommerce Payments</a>.','{}','pending','woocommerce.com','2021-04-02 11:26:56',NULL,0,'plain','',0,'info');
INSERT INTO `smrc_wc_admin_notes` VALUES (15,'wcpay-apple-pay-boost-sales','marketing','en_US','Boost sales with Apple Pay','Now that you accept Apple Pay® with WooCommerce Payments you can increase conversion rates by letting your customers know that Apple Pay® is available. Here’s a marketing guide to help you get started.','{}','pending','woocommerce.com','2021-04-02 11:26:56',NULL,0,'plain','',0,'info');
INSERT INTO `smrc_wc_admin_notes` VALUES (16,'wcpay-apple-pay-grow-your-business','marketing','en_US','Grow your business with WooCommerce Payments and Apple Pay','Now more than ever, shoppers want a fast, simple, and secure online checkout experience. Increase conversion rates by letting your customers know that you now accept Apple Pay®.','{}','pending','woocommerce.com','2021-04-02 11:26:56',NULL,0,'plain','',0,'info');
INSERT INTO `smrc_wc_admin_notes` VALUES (17,'wc-admin-optimizing-the-checkout-flow','info','en_US','Optimizing the checkout flow','It\'s crucial to get your store\'s checkout as smooth as possible to avoid losing sales. Let\'s take a look at how you can optimize the checkout experience for your shoppers.','{}','pending','woocommerce.com','2021-04-02 11:26:56',NULL,0,'plain','',0,'info');
INSERT INTO `smrc_wc_admin_notes` VALUES (18,'wc-admin-first-five-things-to-customize','info','en_US','The first 5 things to customize in your store','Deciding what to start with first is tricky. To help you properly prioritize, we\'ve put together this short list of the first few things you should customize in WooCommerce.','{}','unactioned','woocommerce.com','2021-04-06 03:46:33',NULL,0,'plain','',0,'info');
INSERT INTO `smrc_wc_admin_notes` VALUES (19,'wc-admin-learn-more-about-variable-products','info','en_US','Learn more about variable products','Variable products are a powerful product type that lets you offer a set of variations on a product, with control over prices, stock, image and more for each variation. They can be used for a product like a shirt, where you can offer a large, medium and small and in different colors.','{}','unactioned','woocommerce-admin','2021-04-02 11:40:22',NULL,0,'plain','',0,'info');
INSERT INTO `smrc_wc_admin_notes` VALUES (20,'wc-admin-filter-by-product-variations-in-reports','info','en_US','New - filter by product variations in orders and products reports','One of the most awaited features has just arrived! You can now have insights into each product variation in the orders and products reports.','{}','unactioned','woocommerce-admin','2021-04-04 03:46:09',NULL,0,'banner','http://mpycdev.theomggroup.com/wp-content/plugins/woocommerce/packages/woocommerce-admin/images/admin_notes/filter-by-product-variations-note.svg',0,'info');
INSERT INTO `smrc_wc_admin_notes` VALUES (21,'wc-admin-choosing-a-theme','marketing','en_US','Choosing a theme?','Check out the themes that are compatible with WooCommerce and choose one aligned with your brand and business needs.','{}','unactioned','woocommerce-admin','2021-04-04 03:46:09',NULL,0,'plain','',0,'info');
INSERT INTO `smrc_wc_admin_notes` VALUES (22,'wc-admin-insight-first-product-and-payment','survey','en_US','Insight','More than 80% of new merchants add the first product and have at least one payment method set up during the first week. We\'re here to help your business succeed! Do you find this type of insight useful?','{}','unactioned','woocommerce-admin','2021-04-04 03:46:09',NULL,0,'plain','',0,'info');
INSERT INTO `smrc_wc_admin_notes` VALUES (23,'wc-admin-customizing-product-catalog','info','en_US','How to customize your product catalog','You want your product catalog and images to look great and align with your brand. This guide will give you all the tips you need to get your products looking great in your store.','{}','unactioned','woocommerce-admin','2021-04-04 03:46:09',NULL,0,'plain','',0,'info');
INSERT INTO `smrc_wc_admin_notes` VALUES (24,'wc-admin-mobile-app','info','en_US','Install Woo mobile app','Install the WooCommerce mobile app to manage orders, receive sales notifications, and view key metrics — wherever you are.','{}','unactioned','woocommerce-admin','2021-04-06 03:46:33',NULL,0,'plain','',0,'info');
INSERT INTO `smrc_wc_admin_notes` VALUES (25,'wc-admin-onboarding-payments-reminder','info','en_US','Start accepting payments on your store!','Take payments with the provider that’s right for you - choose from 100+ payment gateways for WooCommerce.','{}','unactioned','woocommerce-admin','2021-04-07 11:27:01',NULL,0,'plain','',0,'info');
INSERT INTO `smrc_wc_admin_notes` VALUES (26,'wc-admin-usage-tracking-opt-in','info','en_US','Help WooCommerce improve with usage tracking','Gathering usage data allows us to improve WooCommerce. Your store will be considered as we evaluate new features, judge the quality of an update, or determine if an improvement makes sense. You can always visit the <a href=\"http://mpycdev.theomggroup.com/wp-admin/admin.php?page=wc-settings&tab=advanced&section=woocommerce_com\" target=\"_blank\">Settings</a> and choose to stop sharing data. <a href=\"https://woocommerce.com/usage-tracking\" target=\"_blank\">Read more</a> about what data we collect.','{}','unactioned','woocommerce-admin','2021-04-09 21:37:31',NULL,0,'plain','',0,'info');
INSERT INTO `smrc_wc_admin_notes` VALUES (27,'wc-admin-woocommerce-payments','marketing','en_US','Try the new way to get paid','Securely accept credit and debit cards on your site. Manage transactions without leaving your WordPress dashboard. Only with <strong>WooCommerce Payments</strong>.<br><br>By clicking \"Get started\", you agree to our <a href=\"https://wordpress.com/tos/\" target=\"_blank\">Terms of Service</a>','{}','unactioned','woocommerce-admin','2021-04-09 21:37:31',NULL,0,'plain','',0,'info');
INSERT INTO `smrc_wc_admin_notes` VALUES (28,'wc-admin-store-notice-giving-feedback-2','info','en_US','You\'re invited to share your experience','Now that you’ve chosen us as a partner, our goal is to make sure we\'re providing the right tools to meet your needs. We\'re looking forward to having your feedback on the store setup experience so we can improve it in the future.','{}','unactioned','woocommerce-admin','2021-04-11 03:46:12',NULL,0,'plain','',0,'info');
INSERT INTO `smrc_wc_admin_notes` VALUES (29,'wc-admin-insight-first-sale','survey','en_US','Did you know?','A WooCommerce powered store needs on average 31 days to get the first sale. You\'re on the right track! Do you find this type of insight useful?','{}','unactioned','woocommerce-admin','2021-04-11 03:46:12',NULL,0,'plain','',0,'info');
INSERT INTO `smrc_wc_admin_notes` VALUES (30,'wc-payments-qualitative-feedback','info','en_US','WooCommerce Payments setup - let us know what you think','Congrats on enabling WooCommerce Payments for your store. Please share your feedback in this 2 minute survey to help us improve the setup process.','{}','pending','woocommerce.com','2021-04-17 02:55:59',NULL,0,'plain','',0,'info');
INSERT INTO `smrc_wc_admin_notes` VALUES (31,'share-your-feedback-on-paypal','info','en_US','Share your feedback on PayPal','Share your feedback in this 2 minute survey about how we can make the process of accepting payments more useful for your store.','{}','pending','woocommerce.com','2021-05-15 02:38:56',NULL,0,'plain','',0,'info');
INSERT INTO `smrc_wc_admin_notes` VALUES (32,'wcpay_instant_deposits_gtm_2021','marketing','en_US','Get paid within minutes – Instant Deposits for WooCommerce Payments','Stay flexible with immediate access to your funds when you need them – including nights, weekends, and holidays. With <a href=\"https://woocommerce.com/products/woocommerce-payments/?utm_source=inbox&utm_medium=product&utm_campaign=wcpay_instant_deposits\">WooCommerce Payments\'</a> new Instant Deposits feature, you’re able to transfer your earnings to a debit card within minutes.','{}','pending','woocommerce.com','2021-05-15 02:38:56',NULL,0,'plain','',0,'info');
INSERT INTO `smrc_wc_admin_notes` VALUES (33,'wc-subscriptions-security-update-3-0-15','info','en_US','WooCommerce Subscriptions security update!','We recently released an important security update to WooCommerce Subscriptions. To ensure your site\'s data is protected, please upgrade <strong>WooCommerce Subscriptions to version 3.0.15</strong> or later.<br /><br />Click the button below to view and update to the latest Subscriptions version, or log in to <a href=\"https://woocommerce.com/my-dashboard\">WooCommerce.com Dashboard</a> and navigate to your <strong>Downloads</strong> page.<br /><br />We recommend always using the latest version of WooCommerce Subscriptions, and other software running on your site, to ensure maximum security.<br /><br />If you have any questions we are here to help — just <a href=\"https://woocommerce.com/my-account/create-a-ticket/\">open a ticket</a>.','{}','pending','woocommerce.com','2021-06-01 08:40:37',NULL,0,'plain','',0,'info');
INSERT INTO `smrc_wc_admin_notes` VALUES (34,'google_listings_and_ads_install','marketing','en_US','Drive traffic and sales with Google','Reach online shoppers to drive traffic and sales for your store by showcasing products across Google, for free or with ads.','{}','pending','woocommerce.com','2021-06-09 01:51:38',NULL,0,'plain','',0,'info');
INSERT INTO `smrc_wc_admin_notes` VALUES (35,'woocommerce-core-update-5-4-0','info','en_US','Update to WooCommerce 5.4.1 now','WooCommerce 5.4.1 addresses a checkout issue discovered in WooCommerce 5.4. We recommend upgrading to WooCommerce 5.4.1 as soon as possible.','{}','pending','woocommerce.com','2021-06-11 03:15:20',NULL,0,'plain','',0,'info');
INSERT INTO `smrc_wc_admin_notes` VALUES (36,'wcpay-promo-2020-11','marketing','en_US','wcpay-promo-2020-11','wcpay-promo-2020-11','{}','pending','woocommerce.com','2021-06-13 08:55:15',NULL,0,'plain','',0,'info');
INSERT INTO `smrc_wc_admin_notes` VALUES (37,'wcpay-promo-2020-12','marketing','en_US','wcpay-promo-2020-12','wcpay-promo-2020-12','{}','pending','woocommerce.com','2021-06-13 08:55:15',NULL,0,'plain','',0,'info');
INSERT INTO `smrc_wc_admin_notes` VALUES (38,'wcpay-promo-2021-6-incentive-1','marketing','en_US','Simplify the payments process for you and your customers with WooCommerce Payments','With <a href=\"https://woocommerce.com/payments/?utm_medium=notification&utm_source=product&utm_campaign=wcpay601\">WooCommerce Payments</a>, you can securely accept all major cards, Apple Pay®, and recurring revenue in over 100 currencies.\n Built into your store’s WooCommerce dashboard, track cash flow and manage all of your transactions in one place – with no setup costs or monthly fees.\n <br /><br />\n By clicking \"Get WooCommerce Payments,\" you agree to the <a href=\"https://wordpress.com/tos/?utm_medium=notification&utm_source=product&utm_campaign=wcpay601\">Terms of Service</a>\n and acknowledge you have read the <a href=\"https://automattic.com/privacy/\">Privacy Policy</a>.\n ','{}','pending','woocommerce.com','2021-06-13 08:55:15',NULL,0,'plain','',0,'info');
INSERT INTO `smrc_wc_admin_notes` VALUES (39,'wcpay-promo-2021-6-incentive-2','marketing','en_US','Simplify the payments process for you and your customers with WooCommerce Payments','With <a href=\"https://woocommerce.com/payments/?utm_medium=notification&utm_source=product&utm_campaign=wcpay601\">WooCommerce Payments</a>, you can securely accept all major cards, Apple Pay®, and recurring revenue in over 100 currencies.\n Built into your store’s WooCommerce dashboard, track cash flow and manage all of your transactions in one place – with no setup costs or monthly fees.\n <br /><br />\n By clicking \"Get WooCommerce Payments,\" you agree to the <a href=\"https://wordpress.com/tos/?utm_medium=notification&utm_source=product&utm_campaign=wcpay601\">Terms of Service</a>\n and acknowledge you have read the <a href=\"https://automattic.com/privacy/\">Privacy Policy</a>.\n ','{}','pending','woocommerce.com','2021-06-13 08:55:15',NULL,0,'plain','',0,'info');
INSERT INTO `smrc_wc_admin_notes` VALUES (40,'ppxo-pps-upgrade-paypal-payments-1','info','en_US','Get the latest PayPal extension for WooCommerce','Heads up! There\'s a new PayPal on the block!<br /><br />Now is a great time to upgrade to our latest <a href=\"https://woocommerce.com/products/woocommerce-paypal-payments/\" target=\"_blank\">PayPal extension</a> to continue to receive support and updates with PayPal.<br /><br />Get access to a full suite of PayPal payment methods, extensive currency and country coverage, and pay later options with the all-new PayPal extension for WooCommerce.','{}','pending','woocommerce.com','2021-06-23 09:03:24',NULL,0,'plain','',0,'info');
INSERT INTO `smrc_wc_admin_notes` VALUES (41,'ppxo-pps-upgrade-paypal-payments-2','info','en_US','Upgrade your PayPal experience!','We\'ve developed a whole new <a href=\"https://woocommerce.com/products/woocommerce-paypal-payments/\" target=\"_blank\">PayPal extension for WooCommerce</a> that combines the best features of our many PayPal extensions into just one extension.<br /><br />Get access to a full suite of PayPal payment methods, extensive currency and country coverage, offer subscription and recurring payments, and the new PayPal pay later options.<br /><br />Start using our latest PayPal today to continue to receive support and updates.','{}','pending','woocommerce.com','2021-06-23 09:03:24',NULL,0,'plain','',0,'info');
INSERT INTO `smrc_wc_admin_notes` VALUES (42,'eu_vat_changes_2021','marketing','en_US','Get your business ready for the new EU tax regulations','On July 1, 2021, new taxation rules will come into play when the <a href=\"https://ec.europa.eu/taxation_customs/business/vat/modernising-vat-cross-border-ecommerce_en\">European Union (EU) Value-Added Tax (VAT) eCommerce package</a> takes effect.<br /><br />The new regulations will impact virtually every B2C business involved in cross-border eCommerce trade with the EU.<br /><br />We therefore recommend <a href=\"https://woocommerce.com/posts/new-eu-vat-regulations\">familiarizing yourself with the new updates</a>, and consult with a tax professional to ensure your business is following regulations and best practice.','{}','unactioned','woocommerce.com','2021-06-25 02:57:45',NULL,0,'plain','',0,'info');
INSERT INTO `smrc_wc_admin_notes` VALUES (43,'wc-admin-real-time-order-alerts','info','en_US','Get real-time order alerts anywhere','Get notifications about store activity, including new orders and product reviews directly on your mobile devices with the Woo app.','{}','unactioned','woocommerce-admin','2021-07-03 03:15:21',NULL,0,'plain','',0,'info');
INSERT INTO `smrc_wc_admin_notes` VALUES (44,'wayflyer_q3_2021','marketing','en_US','Grow your revenue with Wayflyer financing and analytics','Flexible financing tailored to your needs by <a href=\"https://woocommerce.com/products/wayflyer/\">Wayflyer</a> – one fee, no interest rates, penalties, equity, or personal guarantees. Based on your store\'s performance, Wayflyer can provide the financing you need to grow and the analytical insights to help you spend it.','{}','pending','woocommerce.com','2021-07-17 02:06:52',NULL,0,'plain','',0,'info');
INSERT INTO `smrc_wc_admin_notes` VALUES (45,'woocommerce-core-sqli-july-2021-need-to-update','update','en_US','Action required: Critical vulnerabilities in WooCommerce','In response to a critical vulnerability identified on July 13, 2021, we are working with the WordPress Plugins Team to deploy software updates to stores running WooCommerce (versions 3.3 to 5.5) and the WooCommerce Blocks feature plugin (versions 2.5 to 5.5).<br /><br />Our investigation into this vulnerability is ongoing, but <strong>we wanted to let you know now about the importance of updating immediately</strong>.<br /><br />For more information on which actions you should take, as well as answers to FAQs, please urgently review our blog post detailing this issue.','{}','unactioned','woocommerce.com','2021-07-17 02:06:52',NULL,0,'plain','',0,'info');
INSERT INTO `smrc_wc_admin_notes` VALUES (46,'woocommerce-blocks-sqli-july-2021-need-to-update','update','en_US','Action required: Critical vulnerabilities in WooCommerce Blocks','In response to a critical vulnerability identified on July 13, 2021, we are working with the WordPress Plugins Team to deploy software updates to stores running WooCommerce (versions 3.3 to 5.5) and the WooCommerce Blocks feature plugin (versions 2.5 to 5.5).<br /><br />Our investigation into this vulnerability is ongoing, but <strong>we wanted to let you know now about the importance of updating immediately</strong>.<br /><br />For more information on which actions you should take, as well as answers to FAQs, please urgently review our blog post detailing this issue.','{}','pending','woocommerce.com','2021-07-17 02:06:52',NULL,0,'plain','',0,'info');
INSERT INTO `smrc_wc_admin_notes` VALUES (47,'woocommerce-core-sqli-july-2021-store-patched','update','en_US','Solved: Critical vulnerabilities patched in WooCommerce','In response to a critical vulnerability identified on July 13, 2021, we worked with the WordPress Plugins Team to deploy software updates to stores running WooCommerce (versions 3.3 to 5.5) and the WooCommerce Blocks feature plugin (versions 2.5 to 5.5).<br /><br /><strong>Your store has been updated to the latest secure version(s)</strong>. For more information and answers to FAQs, please review our blog post detailing this issue.','{}','pending','woocommerce.com','2021-07-17 02:06:52',NULL,0,'plain','',0,'info');
INSERT INTO `smrc_wc_admin_notes` VALUES (48,'woocommerce-blocks-sqli-july-2021-store-patched','update','en_US','Solved: Critical vulnerabilities patched in WooCommerce Blocks','In response to a critical vulnerability identified on July 13, 2021, we worked with the WordPress Plugins Team to deploy software updates to stores running WooCommerce (versions 3.3 to 5.5) and the WooCommerce Blocks feature plugin (versions 2.5 to 5.5).<br /><br /><strong>Your store has been updated to the latest secure version(s)</strong>. For more information and answers to FAQs, please review our blog post detailing this issue.','{}','pending','woocommerce.com','2021-07-17 02:06:52',NULL,0,'plain','',0,'info');
INSERT INTO `smrc_wc_admin_notes` VALUES (49,'mercadopago_q3_2021_EN','marketing','en_US','Get paid with Mercado Pago Checkout','Latin America\'s leading payment processor is now available for WooCommerce stores. Securely accept debit and credit cards, cash, bank transfers, and installment payments – backed by exclusive fraud prevention tools.','{}','pending','woocommerce.com','2021-09-01 02:39:00',NULL,0,'plain','',0,'info');
INSERT INTO `smrc_wc_admin_notes` VALUES (50,'wc-admin-manage-orders-on-the-go','info','en_US','Manage your orders on the go','Look for orders, customer info, and process refunds in one click with the Woo app.','{}','unactioned','woocommerce-admin','2021-09-30 01:39:08',NULL,0,'plain','',0,'info');
INSERT INTO `smrc_wc_admin_notes` VALUES (51,'wc-admin-performance-on-mobile','info','en_US','Track your store performance on mobile','Monitor your sales and high performing products with the Woo app.','{}','unactioned','woocommerce-admin','2021-12-30 08:17:01',NULL,0,'plain','',0,'info');
INSERT INTO `smrc_wc_admin_notes` VALUES (52,'wc-admin-edit-products-on-the-move','info','en_US','Edit products on the move','Edit and create new products from your mobile devices with the Woo app','{}','unactioned','woocommerce-admin','2022-04-02 12:41:59',NULL,0,'plain','',0,'info');
--
-- Table structure for table `smrc_wc_category_lookup`
--
DROP TABLE IF EXISTS `smrc_wc_category_lookup`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `smrc_wc_category_lookup` (
`category_tree_id` bigint(20) unsigned NOT NULL,
`category_id` bigint(20) unsigned NOT NULL,
PRIMARY KEY (`category_tree_id`,`category_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `smrc_wc_category_lookup`
--
INSERT INTO `smrc_wc_category_lookup` VALUES (15,15);
--
-- Table structure for table `smrc_wc_customer_lookup`
--
DROP TABLE IF EXISTS `smrc_wc_customer_lookup`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `smrc_wc_customer_lookup` (
`customer_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`user_id` bigint(20) unsigned DEFAULT NULL,
`username` varchar(60) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`first_name` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL,
`last_name` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL,
`email` varchar(100) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
`date_last_active` timestamp NULL DEFAULT NULL,
`date_registered` timestamp NULL DEFAULT NULL,
`country` char(2) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`postcode` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`city` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`state` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
PRIMARY KEY (`customer_id`),
UNIQUE KEY `user_id` (`user_id`),
KEY `email` (`email`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `smrc_wc_customer_lookup`
--
--
-- Table structure for table `smrc_wc_download_log`
--
DROP TABLE IF EXISTS `smrc_wc_download_log`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `smrc_wc_download_log` (
`download_log_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`timestamp` datetime NOT NULL,
`permission_id` bigint(20) unsigned NOT NULL,
`user_id` bigint(20) unsigned DEFAULT NULL,
`user_ip_address` varchar(100) COLLATE utf8mb4_unicode_520_ci DEFAULT '',
PRIMARY KEY (`download_log_id`),
KEY `permission_id` (`permission_id`),
KEY `timestamp` (`timestamp`),
CONSTRAINT `fk_smrc_wc_download_log_permission_id` FOREIGN KEY (`permission_id`) REFERENCES `smrc_woocommerce_downloadable_product_permissions` (`permission_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `smrc_wc_download_log`
--
--
-- Table structure for table `smrc_wc_order_coupon_lookup`
--
DROP TABLE IF EXISTS `smrc_wc_order_coupon_lookup`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `smrc_wc_order_coupon_lookup` (
`order_id` bigint(20) unsigned NOT NULL,
`coupon_id` bigint(20) NOT NULL,
`date_created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`discount_amount` double NOT NULL DEFAULT '0',
PRIMARY KEY (`order_id`,`coupon_id`),
KEY `coupon_id` (`coupon_id`),
KEY `date_created` (`date_created`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `smrc_wc_order_coupon_lookup`
--
--
-- Table structure for table `smrc_wc_order_product_lookup`
--
DROP TABLE IF EXISTS `smrc_wc_order_product_lookup`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `smrc_wc_order_product_lookup` (
`order_item_id` bigint(20) unsigned NOT NULL,
`order_id` bigint(20) unsigned NOT NULL,
`product_id` bigint(20) unsigned NOT NULL,
`variation_id` bigint(20) unsigned NOT NULL,
`customer_id` bigint(20) unsigned DEFAULT NULL,
`date_created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`product_qty` int(11) NOT NULL,
`product_net_revenue` double NOT NULL DEFAULT '0',
`product_gross_revenue` double NOT NULL DEFAULT '0',
`coupon_amount` double NOT NULL DEFAULT '0',
`tax_amount` double NOT NULL DEFAULT '0',
`shipping_amount` double NOT NULL DEFAULT '0',
`shipping_tax_amount` double NOT NULL DEFAULT '0',
PRIMARY KEY (`order_item_id`),
KEY `order_id` (`order_id`),
KEY `product_id` (`product_id`),
KEY `customer_id` (`customer_id`),
KEY `date_created` (`date_created`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `smrc_wc_order_product_lookup`
--
--
-- Table structure for table `smrc_wc_order_stats`
--
DROP TABLE IF EXISTS `smrc_wc_order_stats`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `smrc_wc_order_stats` (
`order_id` bigint(20) unsigned NOT NULL,
`parent_id` bigint(20) unsigned NOT NULL DEFAULT '0',
`date_created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`date_created_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`num_items_sold` int(11) NOT NULL DEFAULT '0',
`total_sales` double NOT NULL DEFAULT '0',
`tax_total` double NOT NULL DEFAULT '0',
`shipping_total` double NOT NULL DEFAULT '0',
`net_total` double NOT NULL DEFAULT '0',
`returning_customer` tinyint(1) DEFAULT NULL,
`status` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL,
`customer_id` bigint(20) unsigned NOT NULL,
PRIMARY KEY (`order_id`),
KEY `date_created` (`date_created`),
KEY `customer_id` (`customer_id`),
KEY `status` (`status`(191))
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `smrc_wc_order_stats`
--
--
-- Table structure for table `smrc_wc_order_tax_lookup`
--
DROP TABLE IF EXISTS `smrc_wc_order_tax_lookup`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `smrc_wc_order_tax_lookup` (
`order_id` bigint(20) unsigned NOT NULL,
`tax_rate_id` bigint(20) unsigned NOT NULL,
`date_created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`shipping_tax` double NOT NULL DEFAULT '0',
`order_tax` double NOT NULL DEFAULT '0',
`total_tax` double NOT NULL DEFAULT '0',
PRIMARY KEY (`order_id`,`tax_rate_id`),
KEY `tax_rate_id` (`tax_rate_id`),
KEY `date_created` (`date_created`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `smrc_wc_order_tax_lookup`
--
--
-- Table structure for table `smrc_wc_product_meta_lookup`
--
DROP TABLE IF EXISTS `smrc_wc_product_meta_lookup`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `smrc_wc_product_meta_lookup` (
`product_id` bigint(20) NOT NULL,
`sku` varchar(100) COLLATE utf8mb4_unicode_520_ci DEFAULT '',
`virtual` tinyint(1) DEFAULT '0',
`downloadable` tinyint(1) DEFAULT '0',
`min_price` decimal(19,4) DEFAULT NULL,
`max_price` decimal(19,4) DEFAULT NULL,
`onsale` tinyint(1) DEFAULT '0',
`stock_quantity` double DEFAULT NULL,
`stock_status` varchar(100) COLLATE utf8mb4_unicode_520_ci DEFAULT 'instock',
`rating_count` bigint(20) DEFAULT '0',
`average_rating` decimal(3,2) DEFAULT '0.00',
`total_sales` bigint(20) DEFAULT '0',
`tax_status` varchar(100) COLLATE utf8mb4_unicode_520_ci DEFAULT 'taxable',
`tax_class` varchar(100) COLLATE utf8mb4_unicode_520_ci DEFAULT '',
PRIMARY KEY (`product_id`),
KEY `virtual` (`virtual`),
KEY `downloadable` (`downloadable`),
KEY `stock_status` (`stock_status`),
KEY `stock_quantity` (`stock_quantity`),
KEY `onsale` (`onsale`),
KEY `min_max_price` (`min_price`,`max_price`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `smrc_wc_product_meta_lookup`
--
INSERT INTO `smrc_wc_product_meta_lookup` VALUES (97,'',0,0,20.0000,20.0000,0,NULL,'outofstock',3,4.33,0,'','');
INSERT INTO `smrc_wc_product_meta_lookup` VALUES (101,'',0,0,30.0000,30.0000,0,NULL,'outofstock',3,4.00,0,'','');
--
-- Table structure for table `smrc_wc_reserved_stock`
--
DROP TABLE IF EXISTS `smrc_wc_reserved_stock`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `smrc_wc_reserved_stock` (
`order_id` bigint(20) NOT NULL,
`product_id` bigint(20) NOT NULL,
`stock_quantity` double NOT NULL DEFAULT '0',
`timestamp` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`expires` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
PRIMARY KEY (`order_id`,`product_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `smrc_wc_reserved_stock`
--
--
-- Table structure for table `smrc_wc_tax_rate_classes`
--
DROP TABLE IF EXISTS `smrc_wc_tax_rate_classes`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `smrc_wc_tax_rate_classes` (
`tax_rate_class_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`slug` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
PRIMARY KEY (`tax_rate_class_id`),
UNIQUE KEY `slug` (`slug`(191))
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `smrc_wc_tax_rate_classes`
--
INSERT INTO `smrc_wc_tax_rate_classes` VALUES (1,'Reduced rate','reduced-rate');
INSERT INTO `smrc_wc_tax_rate_classes` VALUES (2,'Zero rate','zero-rate');
--
-- Table structure for table `smrc_wc_webhooks`
--
DROP TABLE IF EXISTS `smrc_wc_webhooks`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `smrc_wc_webhooks` (
`webhook_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`status` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL,
`name` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
`user_id` bigint(20) unsigned NOT NULL,
`delivery_url` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
`secret` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
`topic` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL,
`date_created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`date_created_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`date_modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`date_modified_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`api_version` smallint(4) NOT NULL,
`failure_count` smallint(10) NOT NULL DEFAULT '0',
`pending_delivery` tinyint(1) NOT NULL DEFAULT '0',
PRIMARY KEY (`webhook_id`),
KEY `user_id` (`user_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `smrc_wc_webhooks`
--
--
-- Table structure for table `smrc_woocommerce_api_keys`
--
DROP TABLE IF EXISTS `smrc_woocommerce_api_keys`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `smrc_woocommerce_api_keys` (
`key_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`user_id` bigint(20) unsigned NOT NULL,
`description` varchar(200) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
`permissions` varchar(10) COLLATE utf8mb4_unicode_520_ci NOT NULL,
`consumer_key` char(64) COLLATE utf8mb4_unicode_520_ci NOT NULL,
`consumer_secret` char(43) COLLATE utf8mb4_unicode_520_ci NOT NULL,
`nonces` longtext COLLATE utf8mb4_unicode_520_ci,
`truncated_key` char(7) COLLATE utf8mb4_unicode_520_ci NOT NULL,
`last_access` datetime DEFAULT NULL,
PRIMARY KEY (`key_id`),
KEY `consumer_key` (`consumer_key`),
KEY `consumer_secret` (`consumer_secret`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `smrc_woocommerce_api_keys`
--
--
-- Table structure for table `smrc_woocommerce_attribute_taxonomies`
--
DROP TABLE IF EXISTS `smrc_woocommerce_attribute_taxonomies`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `smrc_woocommerce_attribute_taxonomies` (
`attribute_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`attribute_name` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL,
`attribute_label` varchar(200) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
`attribute_type` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL,
`attribute_orderby` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL,
`attribute_public` int(1) NOT NULL DEFAULT '1',
PRIMARY KEY (`attribute_id`),
KEY `attribute_name` (`attribute_name`(20))
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `smrc_woocommerce_attribute_taxonomies`
--
--
-- Table structure for table `smrc_woocommerce_downloadable_product_permissions`
--
DROP TABLE IF EXISTS `smrc_woocommerce_downloadable_product_permissions`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `smrc_woocommerce_downloadable_product_permissions` (
`permission_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`download_id` varchar(36) COLLATE utf8mb4_unicode_520_ci NOT NULL,
`product_id` bigint(20) unsigned NOT NULL,
`order_id` bigint(20) unsigned NOT NULL DEFAULT '0',
`order_key` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL,
`user_email` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL,
`user_id` bigint(20) unsigned DEFAULT NULL,
`downloads_remaining` varchar(9) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
`access_granted` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`access_expires` datetime DEFAULT NULL,
`download_count` bigint(20) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (`permission_id`),
KEY `download_order_key_product` (`product_id`,`order_id`,`order_key`(16),`download_id`),
KEY `download_order_product` (`download_id`,`order_id`,`product_id`),
KEY `order_id` (`order_id`),
KEY `user_order_remaining_expires` (`user_id`,`order_id`,`downloads_remaining`,`access_expires`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `smrc_woocommerce_downloadable_product_permissions`
--
--
-- Table structure for table `smrc_woocommerce_log`
--
DROP TABLE IF EXISTS `smrc_woocommerce_log`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `smrc_woocommerce_log` (
`log_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`timestamp` datetime NOT NULL,
`level` smallint(4) NOT NULL,
`source` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL,
`message` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
`context` longtext COLLATE utf8mb4_unicode_520_ci,
PRIMARY KEY (`log_id`),
KEY `level` (`level`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `smrc_woocommerce_log`
--
--
-- Table structure for table `smrc_woocommerce_order_itemmeta`
--
DROP TABLE IF EXISTS `smrc_woocommerce_order_itemmeta`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `smrc_woocommerce_order_itemmeta` (
`meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`order_item_id` bigint(20) unsigned NOT NULL,
`meta_key` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
`meta_value` longtext COLLATE utf8mb4_unicode_520_ci,
PRIMARY KEY (`meta_id`),
KEY `order_item_id` (`order_item_id`),
KEY `meta_key` (`meta_key`(32))
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `smrc_woocommerce_order_itemmeta`
--
--
-- Table structure for table `smrc_woocommerce_order_items`
--
DROP TABLE IF EXISTS `smrc_woocommerce_order_items`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `smrc_woocommerce_order_items` (
`order_item_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`order_item_name` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
`order_item_type` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`order_id` bigint(20) unsigned NOT NULL,
PRIMARY KEY (`order_item_id`),
KEY `order_id` (`order_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `smrc_woocommerce_order_items`
--
--
-- Table structure for table `smrc_woocommerce_payment_tokenmeta`
--
DROP TABLE IF EXISTS `smrc_woocommerce_payment_tokenmeta`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `smrc_woocommerce_payment_tokenmeta` (
`meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`payment_token_id` bigint(20) unsigned NOT NULL,
`meta_key` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
`meta_value` longtext COLLATE utf8mb4_unicode_520_ci,
PRIMARY KEY (`meta_id`),
KEY `payment_token_id` (`payment_token_id`),
KEY `meta_key` (`meta_key`(32))
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `smrc_woocommerce_payment_tokenmeta`
--
--
-- Table structure for table `smrc_woocommerce_payment_tokens`
--
DROP TABLE IF EXISTS `smrc_woocommerce_payment_tokens`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `smrc_woocommerce_payment_tokens` (
`token_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`gateway_id` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL,
`token` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
`user_id` bigint(20) unsigned NOT NULL DEFAULT '0',
`type` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL,
`is_default` tinyint(1) NOT NULL DEFAULT '0',
PRIMARY KEY (`token_id`),
KEY `user_id` (`user_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `smrc_woocommerce_payment_tokens`
--
--
-- Table structure for table `smrc_woocommerce_sessions`
--
DROP TABLE IF EXISTS `smrc_woocommerce_sessions`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `smrc_woocommerce_sessions` (
`session_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`session_key` char(32) COLLATE utf8mb4_unicode_520_ci NOT NULL,
`session_value` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
`session_expiry` bigint(20) unsigned NOT NULL,
PRIMARY KEY (`session_id`),
UNIQUE KEY `session_key` (`session_key`)
) ENGINE=InnoDB AUTO_INCREMENT=97 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `smrc_woocommerce_sessions`
--
--
-- Table structure for table `smrc_woocommerce_shipping_zone_locations`
--
DROP TABLE IF EXISTS `smrc_woocommerce_shipping_zone_locations`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `smrc_woocommerce_shipping_zone_locations` (
`location_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`zone_id` bigint(20) unsigned NOT NULL,
`location_code` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL,
`location_type` varchar(40) COLLATE utf8mb4_unicode_520_ci NOT NULL,
PRIMARY KEY (`location_id`),
KEY `location_id` (`location_id`),
KEY `location_type_code` (`location_type`(10),`location_code`(20))
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `smrc_woocommerce_shipping_zone_locations`
--
--
-- Table structure for table `smrc_woocommerce_shipping_zone_methods`
--
DROP TABLE IF EXISTS `smrc_woocommerce_shipping_zone_methods`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `smrc_woocommerce_shipping_zone_methods` (
`zone_id` bigint(20) unsigned NOT NULL,
`instance_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`method_id` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL,
`method_order` bigint(20) unsigned NOT NULL,
`is_enabled` tinyint(1) NOT NULL DEFAULT '1',
PRIMARY KEY (`instance_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `smrc_woocommerce_shipping_zone_methods`
--
--
-- Table structure for table `smrc_woocommerce_shipping_zones`
--
DROP TABLE IF EXISTS `smrc_woocommerce_shipping_zones`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `smrc_woocommerce_shipping_zones` (
`zone_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`zone_name` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL,
`zone_order` bigint(20) unsigned NOT NULL,
PRIMARY KEY (`zone_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `smrc_woocommerce_shipping_zones`
--
--
-- Table structure for table `smrc_woocommerce_tax_rate_locations`
--
DROP TABLE IF EXISTS `smrc_woocommerce_tax_rate_locations`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `smrc_woocommerce_tax_rate_locations` (
`location_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`location_code` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL,
`tax_rate_id` bigint(20) unsigned NOT NULL,
`location_type` varchar(40) COLLATE utf8mb4_unicode_520_ci NOT NULL,
PRIMARY KEY (`location_id`),
KEY `tax_rate_id` (`tax_rate_id`),
KEY `location_type_code` (`location_type`(10),`location_code`(20))
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `smrc_woocommerce_tax_rate_locations`
--
--
-- Table structure for table `smrc_woocommerce_tax_rates`
--
DROP TABLE IF EXISTS `smrc_woocommerce_tax_rates`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `smrc_woocommerce_tax_rates` (
`tax_rate_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`tax_rate_country` varchar(2) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`tax_rate_state` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`tax_rate` varchar(8) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`tax_rate_name` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`tax_rate_priority` bigint(20) unsigned NOT NULL,
`tax_rate_compound` int(1) NOT NULL DEFAULT '0',
`tax_rate_shipping` int(1) NOT NULL DEFAULT '1',
`tax_rate_order` bigint(20) unsigned NOT NULL,
`tax_rate_class` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
PRIMARY KEY (`tax_rate_id`),
KEY `tax_rate_country` (`tax_rate_country`),
KEY `tax_rate_state` (`tax_rate_state`(2)),
KEY `tax_rate_class` (`tax_rate_class`(10)),
KEY `tax_rate_priority` (`tax_rate_priority`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `smrc_woocommerce_tax_rates`
--
/*!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 2023-02-20 5:09:30